diff options
author | George Hazan <ghazan@miranda.im> | 2019-09-18 16:54:59 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-09-18 16:54:59 +0300 |
commit | 8a881b2c479baf2bfe9a3eefa54dfe8c425acaea (patch) | |
tree | 10a3713b44a99e0b526f670f71e110a9a4bfc121 /plugins/Scriver/src/chat.h | |
parent | efea97930e985de136a600d692bda877cc2d2fef (diff) |
minor code cleaning
Diffstat (limited to 'plugins/Scriver/src/chat.h')
-rw-r--r-- | plugins/Scriver/src/chat.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Scriver/src/chat.h b/plugins/Scriver/src/chat.h index a33e7e5945..ae648917fb 100644 --- a/plugins/Scriver/src/chat.h +++ b/plugins/Scriver/src/chat.h @@ -71,11 +71,11 @@ void LoadMsgLogBitmaps(void); void FreeMsgLogBitmaps(void);
// manager.c
-SESSION_INFO* SM_FindSessionAutoComplete(const char* pszModule, SESSION_INFO* currSession, SESSION_INFO* prevSession, const wchar_t* pszOriginal, const wchar_t* pszCurrent);
+SESSION_INFO* SM_FindSessionAutoComplete(const char *pszModule, SESSION_INFO *currSession, SESSION_INFO *prevSession, const wchar_t *pszOriginal, const wchar_t *pszCurrent);
char SM_GetStatusIndicator(SESSION_INFO *si, USERINFO *ui);
// tools.c
-wchar_t* my_strstri(const wchar_t* s1, const wchar_t* s2) ;
+const wchar_t* my_strstri(const wchar_t *s1, const wchar_t *s2);
/////////////////////////////////////////////////////////////////////////////////////////
|