diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2014-06-21 19:31:51 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2014-06-21 19:31:51 +0000 |
commit | 85b429453559d86491ac428a1028cbe4d5b382c9 (patch) | |
tree | 546ba0845880cd4497b3a69e47ee86af9502cefa /protocols/Steam/src/steam_proto.h | |
parent | 7941d6d1a2ba1fac7abf817149360d73ed79c799 (diff) |
Steam: second approach to block list support
git-svn-id: http://svn.miranda-ng.org/main/trunk@9547 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Steam/src/steam_proto.h')
-rw-r--r-- | protocols/Steam/src/steam_proto.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/protocols/Steam/src/steam_proto.h b/protocols/Steam/src/steam_proto.h index 5e307965e8..192254fb46 100644 --- a/protocols/Steam/src/steam_proto.h +++ b/protocols/Steam/src/steam_proto.h @@ -230,7 +230,7 @@ protected: int __cdecl BlockCommand(WPARAM, LPARAM);
int __cdecl JoinToGameCommand(WPARAM, LPARAM);
- int __cdecl OpenBlockListCommand(WPARAM, LPARAM);
+ INT_PTR __cdecl OpenBlockListCommand(WPARAM, LPARAM);
static INT_PTR MenuChooseService(WPARAM wParam, LPARAM lParam);
@@ -263,10 +263,12 @@ protected: static void CSteamProto::ShowNotification(const wchar_t *message, int flags = 0, MCONTACT hContact = NULL);
static void CSteamProto::ShowNotification(const wchar_t *caption, const wchar_t *message, int flags = 0, MCONTACT hContact = NULL);
- // options
+ // dialog procs
static INT_PTR CALLBACK GuardProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam);
static INT_PTR CALLBACK CaptchaProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam);
static INT_PTR CALLBACK MainOptionsProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam);
+ static LRESULT CALLBACK BlockListOptionsSubProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
+ static INT_PTR CALLBACK BlockListOptionsProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam);
};
#endif //_STEAM_PROTO_H_
\ No newline at end of file |