diff options
| author | George Hazan <george.hazan@gmail.com> | 2024-01-01 21:09:14 +0300 |
|---|---|---|
| committer | George Hazan <george.hazan@gmail.com> | 2024-01-01 21:09:14 +0300 |
| commit | 3312b19085ef68b63daed0f04aa676e5cdfa3b43 (patch) | |
| tree | 9b3e86cf01bbce1d9cbc97f8c3c11976c9260318 /protocols/Discord/src/proto.h | |
| parent | 6bfb0fc3e5fcbcb36829d9283c4900427c7682c2 (diff) | |
fixes #4092 (Discord: cannot autologin at startup)
Diffstat (limited to 'protocols/Discord/src/proto.h')
| -rw-r--r-- | protocols/Discord/src/proto.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/protocols/Discord/src/proto.h b/protocols/Discord/src/proto.h index d6aa55c990..3ff1f626e5 100644 --- a/protocols/Discord/src/proto.h +++ b/protocols/Discord/src/proto.h @@ -439,10 +439,11 @@ public: void OnReceiveCreateChannel(NETLIBHTTPREQUEST*, AsyncHttpRequest*);
void OnReceiveFile(NETLIBHTTPREQUEST*, AsyncHttpRequest*);
void OnReceiveGateway(NETLIBHTTPREQUEST*, AsyncHttpRequest*);
- void OnReceiveMarkRead(NETLIBHTTPREQUEST *, AsyncHttpRequest *);
+ void OnReceiveLogout(NETLIBHTTPREQUEST*, AsyncHttpRequest*);
+ void OnReceiveMarkRead(NETLIBHTTPREQUEST*, AsyncHttpRequest *);
void OnReceiveMessageAck(NETLIBHTTPREQUEST*, AsyncHttpRequest*);
- void OnReceiveToken(NETLIBHTTPREQUEST *, AsyncHttpRequest *);
- void OnReceiveUserinfo(NETLIBHTTPREQUEST *, AsyncHttpRequest *);
+ void OnReceiveToken(NETLIBHTTPREQUEST*, AsyncHttpRequest*);
+ void OnReceiveUserinfo(NETLIBHTTPREQUEST*, AsyncHttpRequest*);
void RetrieveMyInfo();
void OnReceiveMyInfo(NETLIBHTTPREQUEST*, AsyncHttpRequest*);
|
