diff options
author | George Hazan <george.hazan@gmail.com> | 2012-06-18 20:53:59 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-06-18 20:53:59 +0000 |
commit | 3f23417a1099f73dc28ec1b7d6ec2a1a7fc2b7a2 (patch) | |
tree | 3e0bcd88c55dad310da0dc980e252bf9fbfa6dc5 /include/m_protosvc.h | |
parent | 537b94169bf2483798a651ee3b96f7904eebe7b4 (diff) |
- PLUGININFO structure removed at all;
- Options_AddPage & UserInfo_AddPage replaced MS_OPT_ADDPAGE & MS_USERINFO_ADDPAGE services respectively
- total internal redesign of options' translation
- code reformatting
git-svn-id: http://svn.miranda-ng.org/main/trunk@477 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include/m_protosvc.h')
-rw-r--r-- | include/m_protosvc.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/m_protosvc.h b/include/m_protosvc.h index 3eb934b532..264adac76d 100644 --- a/include/m_protosvc.h +++ b/include/m_protosvc.h @@ -316,7 +316,7 @@ will pick this up and everything will be good. //the ack is complete.
#define PSR_UNICODE 1 // return Unicode status
-#if defined( _UNICODE )
+#if defined(_UNICODE)
#define PSR_TCHAR PSR_UNICODE
#else
#define PSR_TCHAR 0
@@ -495,7 +495,7 @@ typedef struct { // Remember to mir_free the return value
#define SGMA_UNICODE 1 // return Unicode status
-#if defined( _UNICODE )
+#if defined(_UNICODE)
#define SGMA_TCHAR SGMA_UNICODE
#else
#define SGMA_TCHAR 0
@@ -509,7 +509,7 @@ typedef struct { // return=0 for success
#define SMNN_UNICODE 1 // return Unicode status
-#if defined( _UNICODE )
+#if defined(_UNICODE)
#define SMNN_TCHAR SMNN_UNICODE
#else
#define SMNN_TCHAR 0
@@ -526,7 +526,7 @@ typedef struct { // WAYD = What are you doing
#define WAYD_UNICODE 1 // return Unicode texts
-#if defined( _UNICODE )
+#if defined(_UNICODE)
#define WAYD_TCHAR WAYD_UNICODE
#else
#define WAYD_TCHAR 0
@@ -723,7 +723,7 @@ typedef struct { #define PREF_RTL 4 // 0.5+ addition: support for right-to-left messages
#define PREF_UTF 8 // message is in utf-8 (0.7.0+)
-#if defined( _UNICODE )
+#if defined(_UNICODE)
#define PREF_TCHAR PREF_UNICODE
#else
#define PREF_TCHAR 0
|