diff options
author | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2009-03-29 15:42:01 +0000 |
---|---|---|
committer | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2009-03-29 15:42:01 +0000 |
commit | ba2f55ddc45ea29cce65ad1bfcc178da9684141f (patch) | |
tree | c5506eebe88d743deab6958793d5b82dcd17723b /tipper/message_pump.h | |
parent | e2b56bc9c06c95e14d25750caa70e24dfbb0e7b1 (diff) |
x64 portability
Fixed breaking hook chain on clist infotips
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@438 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'tipper/message_pump.h')
-rw-r--r-- | tipper/message_pump.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/tipper/message_pump.h b/tipper/message_pump.h index 4ed5eed..309b5e7 100644 --- a/tipper/message_pump.h +++ b/tipper/message_pump.h @@ -17,9 +17,12 @@ extern BOOL (WINAPI *MyAnimateWindow)(HWND hWnd,DWORD dwTime,DWORD dwFlags); void InitMessagePump();
void DeinitMessagePump();
-int ShowTip(WPARAM wParam, LPARAM lParam);
-int ShowTipW(WPARAM wParam, LPARAM lParam);
-int HideTip(WPARAM wParam, LPARAM lParam);
+INT_PTR ShowTip(WPARAM wParam, LPARAM lParam);
+INT_PTR ShowTipW(WPARAM wParam, LPARAM lParam);
+INT_PTR HideTip(WPARAM wParam, LPARAM lParam);
+
+int ShowTipHook(WPARAM wParam, LPARAM lParam);
+int HideTipHook(WPARAM wParam, LPARAM lParam);
int FramesShowSBTip(WPARAM wParam, LPARAM lParam);
int FramesHideSBTip(WPARAM wParam, LPARAM lParam);
|