From 964a7089f8a243fed81b9fc293512c7e2be6ce18 Mon Sep 17 00:00:00 2001 From: "(no author)" <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> Date: Tue, 3 Jun 2008 13:27:13 +0000 Subject: import sametime plugin source git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@412 4f64403b-2f21-0410-a795-97e2b3489a10 --- sametime/utils.h | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 sametime/utils.h (limited to 'sametime/utils.h') diff --git a/sametime/utils.h b/sametime/utils.h new file mode 100644 index 0000000..600562c --- /dev/null +++ b/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 -- cgit v1.2.3