summaryrefslogtreecommitdiff
path: root/plugins/!NotAdopted/sametime/utils.h
diff options
context:
space:
mode:
authorRobert Pösel <robyer@seznam.cz>2013-11-18 20:37:19 +0000
committerRobert Pösel <robyer@seznam.cz>2013-11-18 20:37:19 +0000
commit0e80ad0d4c150fa947849cdad07a7d0d34d7340e (patch)
tree7034b8267ed219c615c4b135778e80a1ede16923 /plugins/!NotAdopted/sametime/utils.h
parent8598a4a7a0bc922c4c1c768b55f596cc6d8a0d44 (diff)
Add sametime protocol sources (not adopted)
git-svn-id: http://svn.miranda-ng.org/main/trunk@6935 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/!NotAdopted/sametime/utils.h')
-rw-r--r--plugins/!NotAdopted/sametime/utils.h37
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