diff options
author | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2010-10-05 06:02:11 +0000 |
---|---|---|
committer | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2010-10-05 06:02:11 +0000 |
commit | f1c2d0f970b708aa26ab14dc79523b81b65b4b53 (patch) | |
tree | 87d81e8f805e2f45f2b758b9768e95b61e0ed888 /tipper/message_pump.h | |
parent | cda4bce6aea57e3c131e281551ad0b3f9f907932 (diff) |
Improved compatibility with Win9x
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@544 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'tipper/message_pump.h')
-rw-r--r-- | tipper/message_pump.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tipper/message_pump.h b/tipper/message_pump.h index fe59dad..4f7acfb 100644 --- a/tipper/message_pump.h +++ b/tipper/message_pump.h @@ -9,9 +9,10 @@ void PostMPMessage(UINT msg, WPARAM, LPARAM); #define MUM_GOTAVATAR (WM_USER + 0x014)
#define MUM_REDRAW (WM_USER + 0x015)
-extern HMODULE hUserDll;
extern BOOL (WINAPI *MySetLayeredWindowAttributes)(HWND,COLORREF,BYTE,DWORD);
extern BOOL (WINAPI *MyAnimateWindow)(HWND hWnd,DWORD dwTime,DWORD dwFlags);
+extern HMONITOR (WINAPI *MyMonitorFromPoint)(POINT, DWORD);
+extern BOOL (WINAPI *MyGetMonitorInfo)(HMONITOR, LPMONITORINFO);
void InitMessagePump();
void DeinitMessagePump();
|