summaryrefslogtreecommitdiff
path: root/protocols/JabberG/src/jabber_proto.h
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2014-08-18 14:32:44 +0000
committerGeorge Hazan <george.hazan@gmail.com>2014-08-18 14:32:44 +0000
commit9a10fa95b91ae9e77ba0b0601374fe1abf7782ba (patch)
treedda025f3b39dd572550a511edf067d2b98946f31 /protocols/JabberG/src/jabber_proto.h
parent3acd84bf6889f8fe2086eda619a0175d88e05a56 (diff)
CRITICAL_SECTION removed from Jabber
git-svn-id: http://svn.miranda-ng.org/main/trunk@10229 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/JabberG/src/jabber_proto.h')
-rw-r--r--protocols/JabberG/src/jabber_proto.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/protocols/JabberG/src/jabber_proto.h b/protocols/JabberG/src/jabber_proto.h
index 2c384c2c9c..5ed75fb694 100644
--- a/protocols/JabberG/src/jabber_proto.h
+++ b/protocols/JabberG/src/jabber_proto.h
@@ -69,8 +69,8 @@ struct TFilterInfo
volatile BOOL msg, presence, iq;
volatile Type type;
- CRITICAL_SECTION csPatternLock;
- TCHAR pattern[256];
+ mir_cs csPatternLock;
+ TCHAR pattern[256];
};
struct CJabberProto : public PROTO<CJabberProto>, public IJabberInterface
@@ -168,7 +168,7 @@ struct CJabberProto : public PROTO<CJabberProto>, public IJabberInterface
UINT m_nJabberCodePage;
TCHAR *m_tszSelectedLang;
- CRITICAL_SECTION m_csModeMsgMutex;
+ mir_cs m_csModeMsgMutex;
JABBER_MODEMSGS m_modeMsgs;
BOOL m_bModeMsgStatusChangePending;
@@ -222,8 +222,8 @@ struct CJabberProto : public PROTO<CJabberProto>, public IJabberInterface
CJabberInfoFrame *m_pInfoFrame;
LIST<JABBER_LIST_ITEM> m_lstRoster;
- CRITICAL_SECTION m_csLists;
- BOOL m_bListInitialised;
+ mir_cs m_csLists;
+ BOOL m_bListInitialised;
LIST<JabberFeatCapPairDynamic> m_lstJabberFeatCapPairsDynamic; // list of features registered through IJabberNetInterface::RegisterFeature()
JabberCapsBits m_uEnabledFeatCapsDynamic;