00001
00002
00003
00004
00005
00006
00007 #define _WIN32_WINNT 0x0500
00008 #include <windows.h>
00009 #include <windowsx.h>
00010 #ifdef _MSC_VER
00011 #include <dbghelp.h>
00012 #endif
00013 #include <commctrl.h>
00014 #include <memory>
00015 #include <vector>
00016 #include <map>
00017 #include <string>
00018 #include <algorithm>
00019 using namespace std;
00020
00021 #ifndef GET_KEYSTATE_WPARAM
00022 #define GET_KEYSTATE_WPARAM(wParam) (LOWORD(wParam))
00023 #endif
00024
00025 #ifndef OBJID_VSCROLL
00026 #define OBJID_VSCROLL ((LONG)0xFFFFFFFB)
00027 #endif
00028
00029 #ifndef OBJID_HSCROLL
00030 #define OBJID_HSCROLL ((LONG)0xFFFFFFFA)
00031 #endif
00032
00033 #ifndef TME_NONCLIENT
00034 #define TME_NONCLIENT 0x00000010
00035 #endif