diff options
Diffstat (limited to 'plugins/!NotAdopted/sametime/utils.h')
-rw-r--r-- | plugins/!NotAdopted/sametime/utils.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/plugins/!NotAdopted/sametime/utils.h b/plugins/!NotAdopted/sametime/utils.h new file mode 100644 index 0000000000..600562cf60 --- /dev/null +++ b/plugins/!NotAdopted/sametime/utils.h @@ -0,0 +1,37 @@ +#ifndef _UTILS_INC
+#define _UTILS_INC
+
+#include "common.h"
+#include "options.h"
+
+wchar_t *a2w(const char *as);
+char *w2a(const wchar_t *ws);
+
+char *w2u(const wchar_t *ws);
+wchar_t *u2w(const char *ws);
+
+TCHAR *u2t(const char *utfs);
+char *t2u(const TCHAR *ts);
+
+char *t2a(const TCHAR *ts);
+TCHAR *a2t(const char *as);
+
+char *u2a(const char *utfs);
+char *a2u(const char *as);
+
+void InitUtils();
+void DeinitUtils();
+
+void ShowPopupA( const char* line1, const char* line2, int flags = 0);
+void ShowPopupW( const wchar_t* line1, const wchar_t* line2, int flags = 0);
+
+#ifdef _UNICODE
+#define ShowPopup ShowPopupW
+#else
+#define ShowPopup ShowPopupA
+#endif
+
+void ShowWarning(TCHAR *msg);
+void ShowError(TCHAR *msg);
+
+#endif
|