aboutsummaryrefslogtreecommitdiff
path: root/daemon/OlyUtility.h
diff options
context:
space:
mode:
Diffstat (limited to 'daemon/OlyUtility.h')
-rw-r--r--daemon/OlyUtility.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/daemon/OlyUtility.h b/daemon/OlyUtility.h
index 0fa021d..793a733 100644
--- a/daemon/OlyUtility.h
+++ b/daemon/OlyUtility.h
@@ -19,17 +19,20 @@ class OlyUtility {
public:
OlyUtility() {};
~OlyUtility() {};
+ bool stringToBool(const char* string, bool defValue);
void stringToLower(char* string);
int getApplicationFullPath(char* path, int sizeOfPath);
char* readFromDisk(const char* file, unsigned int *size = NULL, bool appendNull = true);
int writeToDisk(const char* path, const char* file);
int appendToDisk(const char* path, const char* file);
- int copyFile(const char * srcFile, const char * dstFile);
+ int copyFile(const char* srcFile, const char* dstFile);
const char* getFilePart(const char* path);
char* getPathPart(char* path);
private:
};
+#include "mxml/mxml.h"
+const char * mxmlWhitespaceCB(mxml_node_t *node, int where);
extern OlyUtility* util;
#endif // OLY_UTILITY_H