diff options
author | George Hazan <ghazan@miranda.im> | 2018-10-01 15:36:26 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-10-01 15:36:26 +0300 |
commit | e808179197e8875f3faa85ad8f0d1e75d756716f (patch) | |
tree | 6ca118531ebf3d2d85a0123171298e74b2decbd6 /protocols/Discord/src/proto.h | |
parent | 966214ad3db583c8e8cbfbae4281705f73df4429 (diff) |
centralized system of processing message ids. also fixes #1375
Diffstat (limited to 'protocols/Discord/src/proto.h')
-rw-r--r-- | protocols/Discord/src/proto.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/protocols/Discord/src/proto.h b/protocols/Discord/src/proto.h index 878b054e6f..7874a8ffb6 100644 --- a/protocols/Discord/src/proto.h +++ b/protocols/Discord/src/proto.h @@ -265,16 +265,15 @@ public: HWND CreateExtendedSearchUI(HWND owner) override; HWND SearchAdvanced(HWND owner) override; - HANDLE SearchBasic(const wchar_t* id) override; - MCONTACT AddToList(int flags, PROTOSEARCHRESULT* psr) override; + HANDLE SearchBasic(const wchar_t *id) override; + MCONTACT AddToList(int flags, PROTOSEARCHRESULT *psr) override; - int AuthRecv(MCONTACT, PROTORECVEVENT* pre) override; + int AuthRecv(MCONTACT, PROTORECVEVENT *pre) override; int Authorize(MEVENT hDbEvent) override; int AuthDeny(MEVENT hDbEvent, const wchar_t* szReason) override; int AuthRequest(MCONTACT hContact, const wchar_t*) override; - MEVENT RecvMsg(MCONTACT hContact, PROTORECVEVENT *evt) override; - int SendMsg(MCONTACT hContact, int flags, const char* pszSrc) override; + int SendMsg(MCONTACT hContact, int flags, const char *pszSrc) override; HANDLE SendFile(MCONTACT hContact, const wchar_t *szDescription, wchar_t **ppszFiles) override; |