mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
f6981f0210
Yes, this could easily done from the C code. But this seems just so much easier and I don't have to worry about the oddities of Windows and all that. I'm lazy. So sue me. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
10 lines
245 B
C
10 lines
245 B
C
#ifndef QTHELPERFROMC_H
|
|
#define QTHELPERFROMC_H
|
|
|
|
bool getProxyString(char **buffer);
|
|
bool canReachCloudServer();
|
|
void updateWindowTitle();
|
|
bool isCloudUrl(const char *filename);
|
|
void subsurface_mkdir(const char *dir);
|
|
|
|
#endif // QTHELPERFROMC_H
|