diff options
Diffstat (limited to 'otr/utils.h')
-rw-r--r-- | otr/utils.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/otr/utils.h b/otr/utils.h new file mode 100644 index 0000000..4b78e28 --- /dev/null +++ b/otr/utils.h @@ -0,0 +1,15 @@ +#ifndef _UTILS_INC
+#define _UTILS_INC
+
+extern HICON hProtoIcon, hLockIcon, hUnlockIcon;
+
+void InitUtils();
+void DeinitUtils();
+
+void ShowPopup( const char* line1, const char* line2, int timeout);
+void ShowWarning(char *msg);
+void ShowError(char *msg);
+
+bool CreatePath(const char *path);
+
+#endif
|