diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-06-16 14:51:46 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-06-16 14:51:46 +0000 |
commit | 8617d7e00546f892c9084f7c382648b23d8bbb63 (patch) | |
tree | 2be51254236644b678418c1147f223a30e030bda /plugins/YAPP/common.h | |
parent | 05c989e58aeffcfb59cebaca6797cb69dd25cb1e (diff) |
another portion of "#ifdef Unicode" removal
git-svn-id: http://svn.miranda-ng.org/main/trunk@447 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/YAPP/common.h')
-rw-r--r-- | plugins/YAPP/common.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/plugins/YAPP/common.h b/plugins/YAPP/common.h index 8b11eca6f0..51d5b1cd41 100644 --- a/plugins/YAPP/common.h +++ b/plugins/YAPP/common.h @@ -25,9 +25,6 @@ #define _WIN32_IE 0x0600 // Change this to the appropriate value to target other versions of IE.
#endif
-#if defined( UNICODE ) && !defined( _UNICODE )
-#define _UNICODE
-#endif
#include <m_stdhdr.h>
@@ -108,11 +105,8 @@ typedef struct { } PopupData;
#define PDF_UNICODE 0x0001
-#ifdef _UNICODE
+
#define PDF_TCHAR PDF_UNICODE
-#else
-#define PDF_TCHAR 0
-#endif
// windowProc messages
#define PM_INIT (WM_USER + 0x0202) // message sent to your windowProc after the window has been initialized
|