diff options
author | George Hazan <george.hazan@gmail.com> | 2016-07-29 12:36:34 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2016-07-29 12:36:34 +0000 |
commit | 428bf0cbd77813a43094cb5c984436deff251936 (patch) | |
tree | d7dfa8971153d53a849e45c942be97fe5b90b7ec /include/m_protosvc.h | |
parent | 82ef17ca5286f58ae7af604fb9518e8dc496b7c3 (diff) |
no more TCHARs
git-svn-id: http://svn.miranda-ng.org/main/trunk@17143 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include/m_protosvc.h')
-rw-r--r-- | include/m_protosvc.h | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/include/m_protosvc.h b/include/m_protosvc.h index 831aa08d91..86708741e9 100644 --- a/include/m_protosvc.h +++ b/include/m_protosvc.h @@ -338,12 +338,6 @@ static __inline unsigned long Proto_Status2Flag(int status) #define PSR_UNICODE 0x0001 // all strings go in UTF16-LE
#define PSR_UTF8 0x0002 // all strings go in UTF8
-#if defined(_UNICODE)
- #define PSR_TCHAR PSR_UNICODE
-#else
- #define PSR_TCHAR 0
-#endif
-
typedef struct {
int cbSize;
MAllStrings nick;
@@ -518,11 +512,6 @@ typedef struct { // Remember to mir_free the return value
#define SGMA_UNICODE 1 // return Unicode status
-#if defined(_UNICODE)
- #define SGMA_TCHAR SGMA_UNICODE
-#else
- #define SGMA_TCHAR 0
-#endif
#define PS_GETMYAWAYMSG "/GetMyAwayMsg"
@@ -533,11 +522,6 @@ typedef struct { // return = 0 for success
#define SMNN_UNICODE 1 // return Unicode status
-#if defined(_UNICODE)
- #define SMNN_TCHAR SMNN_UNICODE
-#else
- #define SMNN_TCHAR 0
-#endif
#define PS_SETMYNICKNAME "/SetNickname"
@@ -552,11 +536,6 @@ typedef struct { // WAYD = What are you doing
#define WAYD_UNICODE 1 // return Unicode texts
-#if defined(_UNICODE)
- #define WAYD_TCHAR WAYD_UNICODE
-#else
- #define WAYD_TCHAR 0
-#endif
///////////////////////////////////////////////////////////////////////////////
// Get the WAYD message for the user
@@ -821,11 +800,6 @@ __forceinline INT_PTR Proto_AuthRecv(const char *szProtoName, PROTORECVEVENT *pc // lParam = (LPARAM)(PROTORECVFILET*)&prf
#define PRFF_UNICODE 1
-#if defined(_UNICODE)
- #define PRFF_TCHAR PRFF_UNICODE
-#else
- #define PRFF_TCHAR 0
-#endif
typedef struct {
DWORD dwFlags; // PRFF_*
|