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_clist.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_clist.h')
-rw-r--r-- | include/m_clist.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/m_clist.h b/include/m_clist.h index 40288608e5..7289f778f2 100644 --- a/include/m_clist.h +++ b/include/m_clist.h @@ -63,7 +63,7 @@ extern int hLangpack; #define GSMDF_PREFIXONLINE 1 //prefix "Online: " to all status modes that
//imply online, eg "Online: Away"
#define GSMDF_UNICODE 2 //will return TCHAR* instead of char*
-#if defined( _UNICODE )
+#if defined(_UNICODE)
#define GSMDF_TCHAR GSMDF_UNICODE //will return TCHAR* instead of char*
#else
#define GSMDF_TCHAR 0 //will return char*, as usual
@@ -119,7 +119,7 @@ typedef struct { #define CLISTMENUITEM_OLDSIZE_V1 (offsetof(CLISTMENUITEM,hLangpack))
-#define HGENMENU_ROOT (( HGENMENU )-1)
+#define HGENMENU_ROOT ((HGENMENU)-1)
#define CMIF_GRAYED 1
#define CMIF_CHECKED 2
@@ -131,7 +131,7 @@ typedef struct { #define CMIF_ROOTHANDLE 384 //means that hParentMenu member is set
#define CMIF_UNICODE 512 //will return TCHAR* instead of char*
-#if defined( _UNICODE )
+#if defined(_UNICODE)
#define CMIF_TCHAR CMIF_UNICODE //will return TCHAR* instead of char*
#else
#define CMIF_TCHAR 0 //will return char*, as usual
@@ -242,7 +242,7 @@ sense to store all this information in memory, etc. #define GCDNF_UNICODE 2 //will return TCHAR* instead of char*
#define GCDNF_NOCACHE 4 //will not use the cache
-#if defined( _UNICODE )
+#if defined(_UNICODE)
#define GCDNF_TCHAR GCDNF_UNICODE //will return TCHAR* instead of char*
#else
#define GCDNF_TCHAR 0 //will return char*, as usual
@@ -297,7 +297,7 @@ typedef struct { #define CLEF_PROTOCOLGLOBAL 8 //set event globally for protocol, hContact has to be NULL,
//lpszProtocol the protocol ID name to be set
-#if defined( _UNICODE )
+#if defined(_UNICODE)
#define CLEF_TCHAR CLEF_UNICODE //will use TCHAR* instead of char*
#else
#define CLEF_TCHAR 0 //will return char*, as usual
|