diff options
author | George Hazan <george.hazan@gmail.com> | 2016-09-19 09:00:39 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2016-09-19 09:00:39 +0000 |
commit | 02e620f9e74ba52ed16b009d9ea76169e5a735d8 (patch) | |
tree | 0ff6faa0fa0153526a5ac271c29d6e4a39d84b54 /include | |
parent | 52a4fbdec80fd6646f125e26b5319b8dc7fe9a2d (diff) |
no need to lock all chats for each event
we lock only chat creation/destruction and finding chat session
git-svn-id: http://svn.miranda-ng.org/main/trunk@17314 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include')
-rw-r--r-- | include/m_chat_int.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/include/m_chat_int.h b/include/m_chat_int.h index afeb345a81..e8e56c654d 100644 --- a/include/m_chat_int.h +++ b/include/m_chat_int.h @@ -110,7 +110,7 @@ struct LOGSTREAMDATA; struct GCModuleInfoBase
{
char* pszModule;
- wchar_t* ptszModDispName;
+ wchar_t* ptszModDispName;
char* pszHeader;
bool bBold;
bool bUnderline;
@@ -145,16 +145,16 @@ struct FONTINFO struct LOGINFO
{
- wchar_t* ptszText;
- wchar_t* ptszNick;
- wchar_t* ptszUID;
- wchar_t* ptszStatus;
- wchar_t* ptszUserInfo;
- BOOL bIsMe;
- BOOL bIsHighlighted;
- time_t time;
- int iType;
- DWORD dwFlags;
+ wchar_t *ptszText;
+ wchar_t *ptszNick;
+ wchar_t *ptszUID;
+ wchar_t *ptszStatus;
+ wchar_t *ptszUserInfo;
+ BOOL bIsMe;
+ BOOL bIsHighlighted;
+ time_t time;
+ int iType;
+ DWORD dwFlags;
LOGINFO *next, *prev;
};
@@ -188,10 +188,10 @@ struct GCSessionInfoBase BOOL bTrimmed;
char* pszModule;
- wchar_t* ptszID;
- wchar_t* ptszName;
- wchar_t* ptszStatusbarText;
- wchar_t* ptszTopic;
+ wchar_t* ptszID;
+ wchar_t* ptszName;
+ wchar_t* ptszStatusbarText;
+ wchar_t* ptszTopic;
int iType;
int iFG;
|