diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-06-15 16:35:29 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-06-15 16:35:29 +0000 |
commit | b92b010ae92db3f61a20ff2f579a5b717cfc8168 (patch) | |
tree | 7be42a444fe210ba1476e7bfb41ee2f7c6008022 /protocols/MSN/msn_global.h | |
parent | 09ba010a1f1966818249e15bb652269a944d1476 (diff) |
MSN - done right
git-svn-id: http://svn.miranda-ng.org/main/trunk@429 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/MSN/msn_global.h')
-rw-r--r-- | protocols/MSN/msn_global.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/protocols/MSN/msn_global.h b/protocols/MSN/msn_global.h index 0edd856495..306244f896 100644 --- a/protocols/MSN/msn_global.h +++ b/protocols/MSN/msn_global.h @@ -220,16 +220,6 @@ __inline char* lrtrimp(char* str) { return ltrimp(rtrim(str)); }; char* arrayToHex(BYTE* data, size_t datasz);
-#if defined(_UNICODE) || defined(_WIN64)
-
-#define MyInterlockedIncrement InterlockedIncrement
-
-#else
-
-extern LONG (WINAPI *MyInterlockedIncrement)(LONG volatile* pVal);
-
-#endif
-
inline unsigned short _htons(unsigned short s)
{
return s>>8|s<<8;
|