| 1 | #include <odin.h> | 
|---|
| 2 | #include <odinwrap.h> | 
|---|
| 3 | #include <os2sel.h> | 
|---|
| 4 |  | 
|---|
| 5 | #include <os2win.h> | 
|---|
| 6 | #include <winreg.h> | 
|---|
| 7 | #include <winnt.h> | 
|---|
| 8 | #include <wincon.h> | 
|---|
| 9 | #include <winthunk.h> | 
|---|
| 10 | #include <winuser.h> | 
|---|
| 11 | #include <ddeml.h> | 
|---|
| 12 | #include <dde.h> | 
|---|
| 13 | #include <winnls.h> | 
|---|
| 14 | #include <ntddk.h> | 
|---|
| 15 | #include <heapstring.h> | 
|---|
| 16 |  | 
|---|
| 17 | #define DBG_LOCALLOG    DBG_trace | 
|---|
| 18 | #include <dbglocal.h> | 
|---|
| 19 |  | 
|---|
| 20 | #define DBGWRAP_MODULE "USER32" | 
|---|
| 21 | #include <dbgwrap.h> | 
|---|
| 22 |  | 
|---|
| 23 |  | 
|---|
| 24 |  | 
|---|
| 25 | LRESULT WINAPI SendIMEMessageExA(HWND hwnd, LPARAM lparam); | 
|---|
| 26 | LRESULT WINAPI SendIMEMessageExW(HWND hwnd, LPARAM lparam); | 
|---|
| 27 | BOOL WIN32API CloseDesktop(HDESK hDesktop); | 
|---|
| 28 | BOOL WIN32API CloseWindowStation(HWINSTA hWinSta); | 
|---|
| 29 | HDESK WIN32API CreateDesktopA(LPCTSTR               lpszDesktop, | 
|---|
| 30 | LPCTSTR               lpszDevice, | 
|---|
| 31 | LPDEVMODEA            pDevMode, | 
|---|
| 32 | DWORD                 dwFlags, | 
|---|
| 33 | DWORD                 dwDesiredAccess, | 
|---|
| 34 | LPSECURITY_ATTRIBUTES lpsa); | 
|---|
| 35 | HDESK WIN32API CreateDesktopW(LPCTSTR               lpszDesktop, | 
|---|
| 36 | LPCTSTR               lpszDevice, | 
|---|
| 37 | LPDEVMODEW            pDevMode, | 
|---|
| 38 | DWORD                 dwFlags, | 
|---|
| 39 | DWORD                 dwDesiredAccess, | 
|---|
| 40 | LPSECURITY_ATTRIBUTES lpsa); | 
|---|
| 41 |  | 
|---|
| 42 | HWINSTA WIN32API CreateWindowStationA(LPTSTR lpWinSta, | 
|---|
| 43 | DWORD  dwReserved, | 
|---|
| 44 | DWORD  dwDesiredAccess, | 
|---|
| 45 | LPSECURITY_ATTRIBUTES lpsa); | 
|---|
| 46 | HWINSTA WIN32API CreateWindowStationW(LPWSTR lpWinSta, | 
|---|
| 47 | DWORD  dwReserved, | 
|---|
| 48 | DWORD  dwDesiredAccess, | 
|---|
| 49 | LPSECURITY_ATTRIBUTES lpsa); | 
|---|
| 50 |  | 
|---|
| 51 | BOOL WIN32API EnumDesktopWindows(HDESK       hDesktop, | 
|---|
| 52 | WNDENUMPROC lpfn, | 
|---|
| 53 | LPARAM      lParam); | 
|---|
| 54 |  | 
|---|
| 55 | BOOL WIN32API EnumWindowStationsA(WINSTAENUMPROCA lpEnumFunc, | 
|---|
| 56 | LPARAM          lParam); | 
|---|
| 57 | BOOL WIN32API EnumWindowStationsW(WINSTAENUMPROCW lpEnumFunc, | 
|---|
| 58 | LPARAM          lParam); | 
|---|
| 59 |  | 
|---|
| 60 | BOOL WIN32API GetNextQueueWindow(DWORD x1, DWORD x2); | 
|---|
| 61 | HWINSTA WIN32API GetProcessWindowStation(VOID); | 
|---|
| 62 | HRESULT WIN32API GetProgmanWindow ( ); | 
|---|
| 63 | HRESULT WIN32API SetProgmanWindow ( HWND hwnd ); | 
|---|
| 64 | HRESULT WIN32API GetTaskmanWindow ( ); | 
|---|
| 65 | HRESULT WIN32API SetTaskmanWindow ( HWND hwnd ); | 
|---|
| 66 | BOOL    WIN32API SetShellWindow(DWORD x1); | 
|---|
| 67 | HRESULT WIN32API SetShellWindowEx (HWND hwndProgman, | 
|---|
| 68 | HWND hwndListView); | 
|---|
| 69 |  | 
|---|
| 70 | BOOL WIN32API IsHungAppWindow(HWND  hwnd, | 
|---|
| 71 | ULONG ulDummy); | 
|---|
| 72 |  | 
|---|
| 73 | BOOL WIN32API GetUserObjectInformationA(HANDLE  hObj, | 
|---|
| 74 | int     nIndex, | 
|---|
| 75 | PVOID   pvInfo, | 
|---|
| 76 | DWORD   nLength, | 
|---|
| 77 | LPDWORD lpnLengthNeeded); | 
|---|
| 78 | BOOL WIN32API GetUserObjectInformationW(HANDLE  hObj, | 
|---|
| 79 | int     nIndex, | 
|---|
| 80 | PVOID   pvInfo, | 
|---|
| 81 | DWORD   nLength, | 
|---|
| 82 | LPDWORD lpnLengthNeeded); | 
|---|
| 83 | BOOL WIN32API GetUserObjectSecurity(HANDLE                hObj, | 
|---|
| 84 | PSECURITY_INFORMATION pSIRequested, | 
|---|
| 85 | PSECURITY_DESCRIPTOR  pSID, | 
|---|
| 86 | DWORD                 nLength, | 
|---|
| 87 | LPDWORD               lpnLengthNeeded); | 
|---|
| 88 |  | 
|---|
| 89 |  | 
|---|
| 90 | HDESK WIN32API OpenDesktopA(LPCTSTR lpszDesktopName, | 
|---|
| 91 | DWORD   dwFlags, | 
|---|
| 92 | BOOL    fInherit, | 
|---|
| 93 | DWORD   dwDesiredAccess); | 
|---|
| 94 | HDESK WIN32API OpenDesktopW(LPCTSTR lpszDesktopName, | 
|---|
| 95 | DWORD   dwFlags, | 
|---|
| 96 | BOOL    fInherit, | 
|---|
| 97 | DWORD   dwDesiredAccess); | 
|---|
| 98 |  | 
|---|
| 99 | HDESK WIN32API OpenInputDesktop(DWORD dwFlags, | 
|---|
| 100 | BOOL  fInherit, | 
|---|
| 101 | DWORD dwDesiredAccess); | 
|---|
| 102 |  | 
|---|
| 103 |  | 
|---|
| 104 | HWINSTA WIN32API OpenWindowStationA(LPCTSTR lpszWinStaName, | 
|---|
| 105 | BOOL    fInherit, | 
|---|
| 106 | DWORD   dwDesiredAccess); | 
|---|
| 107 | HWINSTA WIN32API OpenWindowStationW(LPCTSTR lpszWinStaName, | 
|---|
| 108 | BOOL    fInherit, | 
|---|
| 109 | DWORD   dwDesiredAccess); | 
|---|
| 110 |  | 
|---|
| 111 | BOOL WIN32API SetProcessWindowStation(HWINSTA hWinSta); | 
|---|
| 112 | BOOL WIN32API SetThreadDesktop(HDESK hDesktop); | 
|---|
| 113 | BOOL WIN32API SetUserObjectInformationA(HANDLE hObject, | 
|---|
| 114 | int    nIndex, | 
|---|
| 115 | PVOID  lpvInfo, | 
|---|
| 116 | DWORD  cbInfo); | 
|---|
| 117 | BOOL WIN32API SetUserObjectInformationW(HANDLE hObject, | 
|---|
| 118 | int    nIndex, | 
|---|
| 119 | PVOID  lpvInfo, | 
|---|
| 120 | DWORD  cbInfo); | 
|---|
| 121 | BOOL WIN32API SetUserObjectSecurity(HANDLE hObject, | 
|---|
| 122 | PSECURITY_INFORMATION psi, | 
|---|
| 123 | PSECURITY_DESCRIPTOR  psd); | 
|---|
| 124 |  | 
|---|
| 125 | BOOL WIN32API SwitchDesktop(HDESK hDesktop); | 
|---|
| 126 | BOOL WIN32API PlaySoundEvent(DWORD x1); | 
|---|
| 127 | BOOL WIN32API SetSysColorsTemp(void); | 
|---|
| 128 | BOOL WIN32API RegisterNetworkCapabilities(DWORD x1, DWORD x2); | 
|---|
| 129 | BOOL WIN32API RegisterSystemThread(DWORD x1, DWORD x2); | 
|---|
| 130 | BOOL WIN32API YieldTask(void); | 
|---|
| 131 | BOOL WIN32API WinOldAppHackoMatic(DWORD x1); | 
|---|
| 132 | BOOL WIN32API IsHungThread(DWORD x1); | 
|---|
| 133 | BOOL WIN32API UserSignalProc(DWORD x1, DWORD x2, DWORD x3, DWORD x4); | 
|---|
| 134 | DWORD WIN32API RegisterTasklist (DWORD x); | 
|---|
| 135 | HDESK WIN32API GetThreadDesktop(DWORD dwThreadId); | 
|---|
| 136 | BOOL WINAPI WINNLSEnableIME(HWND hwnd, BOOL bOpen); | 
|---|
| 137 | UINT WINAPI WINNLSGetIMEHotkey(HWND hwnd); | 
|---|
| 138 | BOOL WINAPI WINNLSGetEnableStatus(HWND hwnd); | 
|---|
| 139 | DWORD WIN32API SetLogonNotifyWindow(HWINSTA hwinsta,HWND hwnd); | 
|---|
| 140 | BOOL WIN32API SetProcessWindowStation(HWINSTA hWinSta); | 
|---|
| 141 | void WIN32API NotifyWinEvent(DWORD event, HWND hwnd, LONG idObjectType, LONG idObject); | 
|---|
| 142 | DWORD WIN32API UnhookWinEvent(DWORD arg1); | 
|---|
| 143 | DWORD WIN32API SetWinEventHook(DWORD arg1, DWORD arg2, DWORD arg3, DWORD arg4, DWORD arg5, DWORD arg6, DWORD arg7); | 
|---|
| 144 | BOOL WIN32API SysErrorBox(DWORD x1, DWORD x2, DWORD x3); | 
|---|
| 145 | BOOL WIN32API EndTask(DWORD x1, DWORD x2, DWORD x3); | 
|---|
| 146 | LRESULT WINAPI EditWndProcA( HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam ); | 
|---|
| 147 |  | 
|---|
| 148 |  | 
|---|
| 149 | DEBUGWRAP12(AttachThreadInput) | 
|---|
| 150 | DEBUGWRAP_LVL2_20(CallWindowProcA) | 
|---|
| 151 | DEBUGWRAP_LVL2_20(CallWindowProcW) | 
|---|
| 152 | DEBUGWRAP16(CheckRadioButton) | 
|---|
| 153 |  | 
|---|
| 154 |  | 
|---|
| 155 | DEBUGWRAP4(CloseDesktop) | 
|---|
| 156 | DEBUGWRAP4(CloseWindowStation) | 
|---|
| 157 | DEBUGWRAP20(CopyImage) | 
|---|
| 158 | DEBUGWRAP24(CreateDesktopA) | 
|---|
| 159 | DEBUGWRAP24(CreateDesktopW) | 
|---|
| 160 | DEBUGWRAP16(CreateWindowStationA) | 
|---|
| 161 | DEBUGWRAP16(CreateWindowStationW) | 
|---|
| 162 |  | 
|---|
| 163 | DEBUGWRAP40(CreateMDIWindowA) | 
|---|
| 164 | DEBUGWRAP40(CreateMDIWindowW) | 
|---|
| 165 | DEBUGWRAP4(ArrangeIconicWindows) | 
|---|
| 166 | DEBUGWRAP8(CascadeChildWindows) | 
|---|
| 167 | DEBUGWRAP20(CascadeWindows) | 
|---|
| 168 |  | 
|---|
| 169 | DEBUGWRAP12(DragDetect) | 
|---|
| 170 | DEBUGWRAP20(DragObject) | 
|---|
| 171 | DEBUGWRAP16(EditWndProcA) | 
|---|
| 172 | DEBUGWRAP12(EndTask) | 
|---|
| 173 | DEBUGWRAP12(EnumDesktopWindows) | 
|---|
| 174 | DEBUGWRAP12(EnumDesktopsA) | 
|---|
| 175 | DEBUGWRAP12(EnumDesktopsW) | 
|---|
| 176 | DEBUGWRAP8(EnumWindowStationsA) | 
|---|
| 177 | DEBUGWRAP8(EnumWindowStationsW) | 
|---|
| 178 | DEBUGWRAP8(ExitWindowsEx) | 
|---|
| 179 |  | 
|---|
| 180 |  | 
|---|
| 181 | DEBUGWRAP0(GetInputState) | 
|---|
| 182 | DEBUGWRAP12(GetInternalWindowPos) | 
|---|
| 183 | DEBUGWRAP0(GetProcessWindowStation) | 
|---|
| 184 | DEBUGWRAP0(GetProgmanWindow) | 
|---|
| 185 | DEBUGWRAP4(GetQueueStatus) | 
|---|
| 186 | DEBUGWRAP0(GetShellWindow) | 
|---|
| 187 | DEBUGWRAP4(GetSysColor) | 
|---|
| 188 | DEBUGWRAP4(GetSysColorBrush) | 
|---|
| 189 | DEBUGWRAP4(GetSystemMetrics) | 
|---|
| 190 | DEBUGWRAP0(GetTaskmanWindow) | 
|---|
| 191 | DEBUGWRAP4(GetThreadDesktop) | 
|---|
| 192 |  | 
|---|
| 193 | DEBUGWRAP20(GetUserObjectInformationA) | 
|---|
| 194 | DEBUGWRAP20(GetUserObjectInformationW) | 
|---|
| 195 | DEBUGWRAP20(GetUserObjectSecurity) | 
|---|
| 196 |  | 
|---|
| 197 |  | 
|---|
| 198 |  | 
|---|
| 199 | DEBUGWRAP4(IsHungThread) | 
|---|
| 200 | DEBUGWRAP8(IsHungAppWindow) | 
|---|
| 201 | DEBUGWRAP4(MessageBeep) | 
|---|
| 202 |  | 
|---|
| 203 |  | 
|---|
| 204 | DEBUGWRAP16(OpenDesktopA) | 
|---|
| 205 | DEBUGWRAP16(OpenDesktopW) | 
|---|
| 206 | DEBUGWRAP12(OpenInputDesktop) | 
|---|
| 207 | DEBUGWRAP12(OpenWindowStationA) | 
|---|
| 208 | DEBUGWRAP12(OpenWindowStationW) | 
|---|
| 209 | DEBUGWRAP4(PaintDesktop) | 
|---|
| 210 | DEBUGWRAP4(PlaySoundEvent) | 
|---|
| 211 | DEBUGWRAP8(RegisterNetworkCapabilities) | 
|---|
| 212 | DEBUGWRAP8(RegisterSystemThread) | 
|---|
| 213 | DEBUGWRAP4(RegisterTasklist) | 
|---|
| 214 | DEBUGWRAP4(SetDebugErrorLevel) | 
|---|
| 215 | DEBUGWRAP4(SetDeskWallPaper) | 
|---|
| 216 | DEBUGWRAP8(SetLastErrorEx) | 
|---|
| 217 | DEBUGWRAP8(SetLogonNotifyWindow) | 
|---|
| 218 | DEBUGWRAP4(SetProcessWindowStation) | 
|---|
| 219 | DEBUGWRAP4(SetProgmanWindow) | 
|---|
| 220 | DEBUGWRAP4(SetShellWindow) | 
|---|
| 221 | DEBUGWRAP8(SetShellWindowEx) | 
|---|
| 222 | DEBUGWRAP12(SetSysColors) | 
|---|
| 223 | DEBUGWRAP0(SetSysColorsTemp) | 
|---|
| 224 |  | 
|---|
| 225 |  | 
|---|
| 226 | DEBUGWRAP4(SetTaskmanWindow) | 
|---|
| 227 | DEBUGWRAP4(SetThreadDesktop) | 
|---|
| 228 | DEBUGWRAP16(SetUserObjectInformationA) | 
|---|
| 229 | DEBUGWRAP16(SetUserObjectInformationW) | 
|---|
| 230 | DEBUGWRAP12(SetUserObjectSecurity) | 
|---|
| 231 |  | 
|---|
| 232 |  | 
|---|
| 233 |  | 
|---|
| 234 | DEBUGWRAP4(SwitchDesktop) | 
|---|
| 235 | DEBUGWRAP8(SwitchToThisWindow) | 
|---|
| 236 | DEBUGWRAP12(SysErrorBox) | 
|---|
| 237 | DEBUGWRAP16(SystemParametersInfoA) | 
|---|
| 238 | DEBUGWRAP16(SystemParametersInfoW) | 
|---|
| 239 | DEBUGWRAP8(TileChildWindows) | 
|---|
| 240 | DEBUGWRAP20(TileWindows) | 
|---|
| 241 |  | 
|---|
| 242 | DEBUGWRAP16(UserSignalProc) | 
|---|
| 243 | DEBUGWRAP8(WaitForInputIdle) | 
|---|
| 244 | DEBUGWRAP16(WinHelpA) | 
|---|
| 245 | DEBUGWRAP16(WinHelpW) | 
|---|
| 246 |  | 
|---|
| 247 | DEBUGWRAP4(WinOldAppHackoMatic) | 
|---|
| 248 |  | 
|---|
| 249 | DEBUGWRAP0(YieldTask) | 
|---|
| 250 | DEBUGWRAP12(wvsprintfA) | 
|---|
| 251 | DEBUGWRAP12(wvsprintfW) | 
|---|
| 252 | DEBUGWRAP8(GetGUIThreadInfo) | 
|---|
| 253 | DEBUGWRAP16(NotifyWinEvent) | 
|---|
| 254 | DEBUGWRAP4(UnhookWinEvent) | 
|---|
| 255 | DEBUGWRAP28(SetWinEventHook) | 
|---|
| 256 | DEBUGWRAP8(WINNLSEnableIME) | 
|---|
| 257 | DEBUGWRAP4(WINNLSGetEnableStatus) | 
|---|
| 258 | DEBUGWRAP4(WINNLSGetIMEHotkey) | 
|---|
| 259 |  | 
|---|
| 260 |  | 
|---|
| 261 |  | 
|---|
| 262 |  | 
|---|
| 263 | #undef DBG_LOCALLOG | 
|---|
| 264 | #define DBG_LOCALLOG    DBG_menu | 
|---|
| 265 | DEBUGWRAP16(AppendMenuA) | 
|---|
| 266 | DEBUGWRAP16(AppendMenuW) | 
|---|
| 267 | DEBUGWRAP20(ChangeMenuA) | 
|---|
| 268 | DEBUGWRAP20(ChangeMenuW) | 
|---|
| 269 | DEBUGWRAP12(CheckMenuItem) | 
|---|
| 270 | DEBUGWRAP20(CheckMenuRadioItem) | 
|---|
| 271 | DEBUGWRAP0(CreateMenu) | 
|---|
| 272 | DEBUGWRAP0(CreatePopupMenu) | 
|---|
| 273 | DEBUGWRAP12(DeleteMenu) | 
|---|
| 274 | DEBUGWRAP4(DestroyMenu) | 
|---|
| 275 | DEBUGWRAP12(EnableMenuItem) | 
|---|
| 276 | DEBUGWRAP4(DrawMenuBar) | 
|---|
| 277 | DEBUGWRAP4(GetMenu) | 
|---|
| 278 | DEBUGWRAP0(GetMenuCheckMarkDimensions) | 
|---|
| 279 | DEBUGWRAP4(GetMenuContextHelpId) | 
|---|
| 280 | DEBUGWRAP12(GetMenuDefaultItem) | 
|---|
| 281 | DEBUGWRAP4(GetMenuItemCount) | 
|---|
| 282 | DEBUGWRAP8(GetMenuItemID) | 
|---|
| 283 | DEBUGWRAP16(GetMenuItemInfoA) | 
|---|
| 284 | DEBUGWRAP16(GetMenuItemInfoW) | 
|---|
| 285 | DEBUGWRAP16(GetMenuItemRect) | 
|---|
| 286 | DEBUGWRAP12(GetMenuState) | 
|---|
| 287 | DEBUGWRAP20(GetMenuStringA) | 
|---|
| 288 | DEBUGWRAP20(GetMenuStringW) | 
|---|
| 289 | DEBUGWRAP8(GetSubMenu) | 
|---|
| 290 | DEBUGWRAP8(GetSystemMenu) | 
|---|
| 291 | DEBUGWRAP16(HiliteMenuItem) | 
|---|
| 292 | DEBUGWRAP20(InsertMenuA) | 
|---|
| 293 | DEBUGWRAP16(InsertMenuItemA) | 
|---|
| 294 | DEBUGWRAP16(InsertMenuItemW) | 
|---|
| 295 | DEBUGWRAP20(InsertMenuW) | 
|---|
| 296 | DEBUGWRAP4(IsMenu) | 
|---|
| 297 | DEBUGWRAP8(LoadMenuA) | 
|---|
| 298 | DEBUGWRAP4(LoadMenuIndirectW) | 
|---|
| 299 | DEBUGWRAP8(LoadMenuW) | 
|---|
| 300 | DEBUGWRAP16(MenuItemFromPoint) | 
|---|
| 301 | DEBUGWRAP20(ModifyMenuA) | 
|---|
| 302 | DEBUGWRAP20(ModifyMenuW) | 
|---|
| 303 | DEBUGWRAP12(RemoveMenu) | 
|---|
| 304 | DEBUGWRAP8(SetMenu) | 
|---|
| 305 | DEBUGWRAP8(SetMenuContextHelpId) | 
|---|
| 306 | DEBUGWRAP12(SetMenuDefaultItem) | 
|---|
| 307 | DEBUGWRAP20(SetMenuItemBitmaps) | 
|---|
| 308 | DEBUGWRAP16(SetMenuItemInfoA) | 
|---|
| 309 | DEBUGWRAP16(SetMenuItemInfoW) | 
|---|
| 310 | DEBUGWRAP28(TrackPopupMenu) | 
|---|
| 311 | DEBUGWRAP24(TrackPopupMenuEx) | 
|---|
| 312 | DEBUGWRAP8(GetMenuInfo) | 
|---|
| 313 | DEBUGWRAP8(SetMenuInfo) | 
|---|
| 314 |  | 
|---|
| 315 | #undef DBG_LOCALLOG | 
|---|
| 316 | #define DBG_LOCALLOG    DBG_windowclass | 
|---|
| 317 | DEBUGWRAP12(GetClassInfoA) | 
|---|
| 318 | DEBUGWRAP12(GetClassInfoExA) | 
|---|
| 319 | DEBUGWRAP12(GetClassInfoExW) | 
|---|
| 320 | DEBUGWRAP12(GetClassInfoW) | 
|---|
| 321 | DEBUGWRAP8(GetClassLongA) | 
|---|
| 322 | DEBUGWRAP8(GetClassLongW) | 
|---|
| 323 | DEBUGWRAP12(GetClassNameA) | 
|---|
| 324 | DEBUGWRAP12(GetClassNameW) | 
|---|
| 325 | DEBUGWRAP8(GetClassWord) | 
|---|
| 326 | DEBUGWRAP4(RegisterClassA) | 
|---|
| 327 | DEBUGWRAP4(RegisterClassExA) | 
|---|
| 328 | DEBUGWRAP4(RegisterClassExW) | 
|---|
| 329 | DEBUGWRAP4(RegisterClassW) | 
|---|
| 330 | DEBUGWRAP12(SetClassLongA) | 
|---|
| 331 | DEBUGWRAP12(SetClassLongW) | 
|---|
| 332 | DEBUGWRAP12(SetClassWord) | 
|---|
| 333 | DEBUGWRAP8(UnregisterClassA) | 
|---|
| 334 | DEBUGWRAP8(UnregisterClassW) | 
|---|
| 335 |  | 
|---|
| 336 |  | 
|---|
| 337 | #undef DBG_LOCALLOG | 
|---|
| 338 | #define DBG_LOCALLOG    DBG_clipboard | 
|---|
| 339 | DEBUGWRAP8(ChangeClipboardChain) | 
|---|
| 340 | DEBUGWRAP0(CloseClipboard) | 
|---|
| 341 | DEBUGWRAP0(CountClipboardFormats) | 
|---|
| 342 | DEBUGWRAP0(EmptyClipboard) | 
|---|
| 343 | DEBUGWRAP4(EnumClipboardFormats) | 
|---|
| 344 | DEBUGWRAP4(GetClipboardData) | 
|---|
| 345 | DEBUGWRAP12(GetClipboardFormatNameA) | 
|---|
| 346 | DEBUGWRAP12(GetClipboardFormatNameW) | 
|---|
| 347 | DEBUGWRAP0(GetClipboardOwner) | 
|---|
| 348 | DEBUGWRAP0(GetClipboardViewer) | 
|---|
| 349 | DEBUGWRAP0(GetOpenClipboardWindow) | 
|---|
| 350 | DEBUGWRAP8(GetPriorityClipboardFormat) | 
|---|
| 351 | DEBUGWRAP4(IsClipboardFormatAvailable) | 
|---|
| 352 | DEBUGWRAP4(OpenClipboard) | 
|---|
| 353 | DEBUGWRAP4(RegisterClipboardFormatA) | 
|---|
| 354 | DEBUGWRAP4(RegisterClipboardFormatW) | 
|---|
| 355 | DEBUGWRAP8(SetClipboardData) | 
|---|
| 356 | DEBUGWRAP4(SetClipboardViewer) | 
|---|
| 357 |  | 
|---|
| 358 |  | 
|---|
| 359 | #undef DBG_LOCALLOG | 
|---|
| 360 | #define DBG_LOCALLOG    DBG_winkeyboard | 
|---|
| 361 | DEBUGWRAP12(SendInput) | 
|---|
| 362 | DEBUGWRAP8(ActivateKeyboardLayout) | 
|---|
| 363 | DEBUGWRAP4(GetKeyboardLayout) | 
|---|
| 364 | DEBUGWRAP8(GetKeyboardLayoutList) | 
|---|
| 365 | DEBUGWRAP4(GetKeyboardLayoutNameA) | 
|---|
| 366 | DEBUGWRAP4(GetKeyboardLayoutNameW) | 
|---|
| 367 | DEBUGWRAP4(GetKeyboardState) | 
|---|
| 368 | DEBUGWRAP4(GetKeyboardType) | 
|---|
| 369 | DEBUGWRAP8(LoadKeyboardLayoutA) | 
|---|
| 370 | DEBUGWRAP8(LoadKeyboardLayoutW) | 
|---|
| 371 | DEBUGWRAP4(SetKeyboardState) | 
|---|
| 372 | DEBUGWRAP4(UnloadKeyboardLayout) | 
|---|
| 373 | DEBUGWRAP16(keybd_event) | 
|---|
| 374 | DEBUGWRAP4(VkKeyScanA) | 
|---|
| 375 | DEBUGWRAP8(VkKeyScanExA) | 
|---|
| 376 | DEBUGWRAP8(VkKeyScanExW) | 
|---|
| 377 | DEBUGWRAP4(VkKeyScanW) | 
|---|
| 378 | DEBUGWRAP0(GetKBCodePage) | 
|---|
| 379 | DEBUGWRAP12(GetKeyNameTextA) | 
|---|
| 380 | DEBUGWRAP12(GetKeyNameTextW) | 
|---|
| 381 | DEBUGWRAP4(GetKeyState) | 
|---|
| 382 | DEBUGWRAP4(GetAsyncKeyState) | 
|---|
| 383 | DEBUGWRAP8(MapVirtualKeyA) | 
|---|
| 384 | DEBUGWRAP12(MapVirtualKeyExA) | 
|---|
| 385 | DEBUGWRAP12(MapVirtualKeyExW) | 
|---|
| 386 | DEBUGWRAP8(MapVirtualKeyW) | 
|---|
| 387 | DEBUGWRAP4(OemKeyScan) | 
|---|
| 388 | DEBUGWRAP16(RegisterHotKey) | 
|---|
| 389 | DEBUGWRAP8(UnregisterHotKey) | 
|---|
| 390 | DEBUGWRAP20(ToAscii) | 
|---|
| 391 | DEBUGWRAP24(ToAsciiEx) | 
|---|
| 392 | DEBUGWRAP24(ToUnicode) | 
|---|
| 393 |  | 
|---|
| 394 |  | 
|---|
| 395 | #undef DBG_LOCALLOG | 
|---|
| 396 | #define DBG_LOCALLOG    DBG_winicon | 
|---|
| 397 | DEBUGWRAP28(CreateCursor) | 
|---|
| 398 | DEBUGWRAP4(ClipCursor) | 
|---|
| 399 | DEBUGWRAP4(GetClipCursor) | 
|---|
| 400 | DEBUGWRAP0(GetCursor) | 
|---|
| 401 | DEBUGWRAP4(SetCursor) | 
|---|
| 402 | DEBUGWRAP8(SetSystemCursor) | 
|---|
| 403 | DEBUGWRAP4(ShowCursor) | 
|---|
| 404 | DEBUGWRAP4(DestroyCursor) | 
|---|
| 405 | DEBUGWRAP4(CopyIcon) | 
|---|
| 406 | DEBUGWRAP28(CreateIcon) | 
|---|
| 407 | DEBUGWRAP16(CreateIconFromResource) | 
|---|
| 408 | DEBUGWRAP28(CreateIconFromResourceEx) | 
|---|
| 409 | DEBUGWRAP4(CreateIconIndirect) | 
|---|
| 410 | DEBUGWRAP4(DestroyIcon) | 
|---|
| 411 | DEBUGWRAP16(DrawIcon) | 
|---|
| 412 | DEBUGWRAP36(DrawIconEx) | 
|---|
| 413 | DEBUGWRAP8(GetIconInfo) | 
|---|
| 414 | DEBUGWRAP8(LoadIconA) | 
|---|
| 415 | DEBUGWRAP8(LoadIconW) | 
|---|
| 416 | DEBUGWRAP8(LookupIconIdFromDirectory) | 
|---|
| 417 | DEBUGWRAP20(LookupIconIdFromDirectoryEx) | 
|---|
| 418 | DEBUGWRAP4(OpenIcon) | 
|---|
| 419 |  | 
|---|
| 420 |  | 
|---|
| 421 | #undef DBG_LOCALLOG | 
|---|
| 422 | #define DBG_LOCALLOG    DBG_property | 
|---|
| 423 | DEBUGWRAP8(EnumPropsA) | 
|---|
| 424 | DEBUGWRAP12(EnumPropsExA) | 
|---|
| 425 | DEBUGWRAP12(EnumPropsExW) | 
|---|
| 426 | DEBUGWRAP8(EnumPropsW) | 
|---|
| 427 | DEBUGWRAP8(GetPropA) | 
|---|
| 428 | DEBUGWRAP8(GetPropW) | 
|---|
| 429 | DEBUGWRAP8(RemovePropA) | 
|---|
| 430 | DEBUGWRAP8(RemovePropW) | 
|---|
| 431 | DEBUGWRAP12(SetPropA) | 
|---|
| 432 | DEBUGWRAP12(SetPropW) | 
|---|
| 433 |  | 
|---|
| 434 | #undef DBG_LOCALLOG | 
|---|
| 435 | #define DBG_LOCALLOG    DBG_rect | 
|---|
| 436 | DEBUGWRAP8(CopyRect) | 
|---|
| 437 | DEBUGWRAP8(EqualRect) | 
|---|
| 438 | DEBUGWRAP12(SubtractRect) | 
|---|
| 439 | DEBUGWRAP12(InflateRect) | 
|---|
| 440 | DEBUGWRAP12(IntersectRect) | 
|---|
| 441 | DEBUGWRAP4(IsRectEmpty) | 
|---|
| 442 | DEBUGWRAP12(OffsetRect) | 
|---|
| 443 | DEBUGWRAP12(PtInRect) | 
|---|
| 444 | DEBUGWRAP20(SetRect) | 
|---|
| 445 | DEBUGWRAP4(SetRectEmpty) | 
|---|
| 446 | DEBUGWRAP12(UnionRect) | 
|---|
| 447 |  | 
|---|
| 448 |  | 
|---|
| 449 | #undef DBG_LOCALLOG | 
|---|
| 450 | #define DBG_LOCALLOG    DBG_display | 
|---|
| 451 | DEBUGWRAP8(GetMonitorInfoW) | 
|---|
| 452 | DEBUGWRAP8(GetMonitorInfoA) | 
|---|
| 453 | DEBUGWRAP8(MonitorFromWindow) | 
|---|
| 454 | DEBUGWRAP8(MonitorFromRect) | 
|---|
| 455 | DEBUGWRAP12(MonitorFromPoint) | 
|---|
| 456 | DEBUGWRAP8(ChangeDisplaySettingsA) | 
|---|
| 457 | DEBUGWRAP8(ChangeDisplaySettingsW) | 
|---|
| 458 | DEBUGWRAP12(EnumDisplaySettingsA) | 
|---|
| 459 | DEBUGWRAP12(EnumDisplaySettingsW) | 
|---|
| 460 | DEBUGWRAP20(ChangeDisplaySettingsExA) | 
|---|
| 461 | DEBUGWRAP20(ChangeDisplaySettingsExW) | 
|---|
| 462 | DEBUGWRAP16(EnumDisplayMonitors) | 
|---|
| 463 | DEBUGWRAP16(EnumDisplayDevicesA) | 
|---|
| 464 | DEBUGWRAP16(EnumDisplayDevicesW) | 
|---|
| 465 |  | 
|---|
| 466 |  | 
|---|
| 467 | #undef DBG_LOCALLOG | 
|---|
| 468 | #define DBG_LOCALLOG    DBG_scroll | 
|---|
| 469 | DEBUGWRAP12(EnableScrollBar) | 
|---|
| 470 | DEBUGWRAP12(GetScrollBarInfo) | 
|---|
| 471 | DEBUGWRAP12(GetScrollInfo) | 
|---|
| 472 | DEBUGWRAP8(GetScrollPos) | 
|---|
| 473 | DEBUGWRAP16(GetScrollRange) | 
|---|
| 474 | DEBUGWRAP16(SetScrollInfo) | 
|---|
| 475 | DEBUGWRAP16(SetScrollPos) | 
|---|
| 476 | DEBUGWRAP20(SetScrollRange) | 
|---|
| 477 | DEBUGWRAP12(ShowScrollBar) | 
|---|
| 478 |  | 
|---|
| 479 |  | 
|---|
| 480 | #undef DBG_LOCALLOG | 
|---|
| 481 | #define DBG_LOCALLOG    DBG_hook | 
|---|
| 482 | DEBUGWRAP16(CallNextHookEx) | 
|---|
| 483 | DEBUGWRAP8(SetWindowsHookA) | 
|---|
| 484 | DEBUGWRAP16(SetWindowsHookExA) | 
|---|
| 485 | DEBUGWRAP16(SetWindowsHookExW) | 
|---|
| 486 | DEBUGWRAP8(SetWindowsHookW) | 
|---|
| 487 | DEBUGWRAP8(UnhookWindowsHook) | 
|---|
| 488 | DEBUGWRAP4(UnhookWindowsHookEx) | 
|---|
| 489 |  | 
|---|
| 490 | #undef DBG_LOCALLOG | 
|---|
| 491 | #define DBG_LOCALLOG    DBG_windowmsg | 
|---|
| 492 | DEBUGWRAP20(MsgWaitForMultipleObjects) | 
|---|
| 493 | DEBUGWRAP20(BroadcastSystemMessage) | 
|---|
| 494 | DEBUGWRAP8(CallMsgFilterA) | 
|---|
| 495 | DEBUGWRAP8(CallMsgFilterW) | 
|---|
| 496 | DEBUGWRAP4(DispatchMessageA) | 
|---|
| 497 | DEBUGWRAP4(DispatchMessageW) | 
|---|
| 498 | DEBUGWRAP16(GetMessageA) | 
|---|
| 499 | DEBUGWRAP0(GetMessageExtraInfo) | 
|---|
| 500 | DEBUGWRAP0(GetMessagePos) | 
|---|
| 501 | DEBUGWRAP0(GetMessageTime) | 
|---|
| 502 | DEBUGWRAP16(GetMessageW) | 
|---|
| 503 | DEBUGWRAP0(InSendMessage) | 
|---|
| 504 | DEBUGWRAP20(PeekMessageA) | 
|---|
| 505 | DEBUGWRAP20(PeekMessageW) | 
|---|
| 506 | DEBUGWRAP16(PostMessageA) | 
|---|
| 507 | DEBUGWRAP16(PostMessageW) | 
|---|
| 508 | DEBUGWRAP4(PostQuitMessage) | 
|---|
| 509 | DEBUGWRAP16(PostThreadMessageA) | 
|---|
| 510 | DEBUGWRAP16(PostThreadMessageW) | 
|---|
| 511 | DEBUGWRAP4(RegisterWindowMessageA) | 
|---|
| 512 | DEBUGWRAP4(RegisterWindowMessageW) | 
|---|
| 513 | DEBUGWRAP4(ReplyMessage) | 
|---|
| 514 | DEBUGWRAP16(SendMessageA) | 
|---|
| 515 | DEBUGWRAP24(SendMessageCallbackA) | 
|---|
| 516 | DEBUGWRAP24(SendMessageCallbackW) | 
|---|
| 517 | DEBUGWRAP28(SendMessageTimeoutA) | 
|---|
| 518 | DEBUGWRAP28(SendMessageTimeoutW) | 
|---|
| 519 | DEBUGWRAP16(SendMessageW) | 
|---|
| 520 | DEBUGWRAP16(SendNotifyMessageA) | 
|---|
| 521 | DEBUGWRAP16(SendNotifyMessageW) | 
|---|
| 522 | DEBUGWRAP4(SetMessageExtraInfo) | 
|---|
| 523 | DEBUGWRAP4(SetMessageQueue) | 
|---|
| 524 | DEBUGWRAP4(TranslateMessage) | 
|---|
| 525 | DEBUGWRAP0(WaitMessage) | 
|---|
| 526 | DEBUGWRAP8(SendIMEMessageExA) | 
|---|
| 527 | DEBUGWRAP8(SendIMEMessageExW) | 
|---|
| 528 |  | 
|---|
| 529 |  | 
|---|
| 530 | #undef DBG_LOCALLOG | 
|---|
| 531 | #define DBG_LOCALLOG    DBG_windlgmsg | 
|---|
| 532 | DEBUGWRAP20(SendDlgItemMessageA) | 
|---|
| 533 | DEBUGWRAP20(SendDlgItemMessageW) | 
|---|
| 534 | DEBUGWRAP8(IsDialogMessageA) | 
|---|
| 535 | DEBUGWRAP8(IsDialogMessageW) | 
|---|
| 536 |  | 
|---|
| 537 |  | 
|---|
| 538 | #undef DBG_LOCALLOG | 
|---|
| 539 | #define DBG_LOCALLOG    DBG_msgbox | 
|---|
| 540 | DEBUGWRAP16(MessageBoxA) | 
|---|
| 541 | DEBUGWRAP20(MessageBoxExA) | 
|---|
| 542 | DEBUGWRAP20(MessageBoxExW) | 
|---|
| 543 | DEBUGWRAP4(MessageBoxIndirectA) | 
|---|
| 544 | DEBUGWRAP4(MessageBoxIndirectW) | 
|---|
| 545 | DEBUGWRAP16(MessageBoxW) | 
|---|
| 546 |  | 
|---|
| 547 |  | 
|---|
| 548 | #undef DBG_LOCALLOG | 
|---|
| 549 | #define DBG_LOCALLOG    DBG_defwndproc | 
|---|
| 550 |  | 
|---|
| 551 | DEBUGWRAP_LVL2_16(DefDlgProcA) | 
|---|
| 552 | DEBUGWRAP_LVL2_16(DefDlgProcW) | 
|---|
| 553 | DEBUGWRAP_LVL2_20(DefFrameProcA) | 
|---|
| 554 | DEBUGWRAP_LVL2_20(DefFrameProcW) | 
|---|
| 555 | DEBUGWRAP_LVL2_16(DefMDIChildProcA) | 
|---|
| 556 | DEBUGWRAP_LVL2_16(DefMDIChildProcW) | 
|---|
| 557 | DEBUGWRAP_LVL2_16(DefWindowProcA) | 
|---|
| 558 | DEBUGWRAP_LVL2_16(DefWindowProcW) | 
|---|
| 559 |  | 
|---|
| 560 |  | 
|---|
| 561 | #undef DBG_LOCALLOG | 
|---|
| 562 | #define DBG_LOCALLOG    DBG_windlg | 
|---|
| 563 | DEBUGWRAP16(SetDlgItemInt) | 
|---|
| 564 | DEBUGWRAP12(SetDlgItemTextA) | 
|---|
| 565 | DEBUGWRAP12(SetDlgItemTextW) | 
|---|
| 566 | DEBUGWRAP12(CheckDlgButton) | 
|---|
| 567 | DEBUGWRAP20(DlgDirListA) | 
|---|
| 568 | DEBUGWRAP20(DlgDirListComboBoxA) | 
|---|
| 569 | DEBUGWRAP20(DlgDirListComboBoxW) | 
|---|
| 570 | DEBUGWRAP20(DlgDirListW) | 
|---|
| 571 | DEBUGWRAP16(DlgDirSelectComboBoxExA) | 
|---|
| 572 | DEBUGWRAP16(DlgDirSelectComboBoxExW) | 
|---|
| 573 | DEBUGWRAP16(DlgDirSelectExA) | 
|---|
| 574 | DEBUGWRAP16(DlgDirSelectExW) | 
|---|
| 575 | DEBUGWRAP4(GetDlgCtrlID) | 
|---|
| 576 | DEBUGWRAP8(GetDlgItem) | 
|---|
| 577 | DEBUGWRAP16(GetDlgItemInt) | 
|---|
| 578 | DEBUGWRAP16(GetDlgItemTextA) | 
|---|
| 579 | DEBUGWRAP16(GetDlgItemTextW) | 
|---|
| 580 | DEBUGWRAP12(GetNextDlgGroupItem) | 
|---|
| 581 | DEBUGWRAP12(GetNextDlgTabItem) | 
|---|
| 582 | DEBUGWRAP8(IsDlgButtonChecked) | 
|---|
| 583 | DEBUGWRAP20(CreateDialogIndirectParamA) | 
|---|
| 584 | DEBUGWRAP20(CreateDialogIndirectParamW) | 
|---|
| 585 | DEBUGWRAP20(CreateDialogParamA) | 
|---|
| 586 | DEBUGWRAP20(CreateDialogParamW) | 
|---|
| 587 | DEBUGWRAP20(DialogBoxIndirectParamA) | 
|---|
| 588 | DEBUGWRAP20(DialogBoxIndirectParamW) | 
|---|
| 589 | DEBUGWRAP20(DialogBoxParamA) | 
|---|
| 590 | DEBUGWRAP20(DialogBoxParamW) | 
|---|
| 591 | DEBUGWRAP8(EndDialog) | 
|---|
| 592 | DEBUGWRAP0(GetDialogBaseUnits) | 
|---|
| 593 | DEBUGWRAP8(MapDialogRect) | 
|---|
| 594 |  | 
|---|
| 595 |  | 
|---|
| 596 | #undef DBG_LOCALLOG | 
|---|
| 597 | #define DBG_LOCALLOG    DBG_loadres | 
|---|
| 598 | DEBUGWRAP8(LoadBitmapA) | 
|---|
| 599 | DEBUGWRAP8(LoadBitmapW) | 
|---|
| 600 | DEBUGWRAP8(LoadCursorA) | 
|---|
| 601 | DEBUGWRAP4(LoadCursorFromFileA) | 
|---|
| 602 | DEBUGWRAP4(LoadCursorFromFileW) | 
|---|
| 603 | DEBUGWRAP8(LoadCursorW) | 
|---|
| 604 | DEBUGWRAP24(LoadImageA) | 
|---|
| 605 | DEBUGWRAP24(LoadImageW) | 
|---|
| 606 | DEBUGWRAP16(LoadStringA) | 
|---|
| 607 | DEBUGWRAP16(LoadStringW) | 
|---|
| 608 |  | 
|---|
| 609 |  | 
|---|
| 610 | #undef DBG_LOCALLOG | 
|---|
| 611 | #define DBG_LOCALLOG    DBG_winmouse | 
|---|
| 612 | DEBUGWRAP4(GetCursorPos) | 
|---|
| 613 | DEBUGWRAP8(SetCursorPos) | 
|---|
| 614 | DEBUGWRAP4(SwapMouseButton) | 
|---|
| 615 | DEBUGWRAP20(mouse_event) | 
|---|
| 616 | DEBUGWRAP4(TrackMouseEvent) | 
|---|
| 617 | DEBUGWRAP0(GetCapture) | 
|---|
| 618 | DEBUGWRAP0(ReleaseCapture) | 
|---|
| 619 | DEBUGWRAP4(SetCapture) | 
|---|
| 620 | DEBUGWRAP0(GetDoubleClickTime) | 
|---|
| 621 | DEBUGWRAP4(SetDoubleClickTime) | 
|---|
| 622 |  | 
|---|
| 623 |  | 
|---|
| 624 | #undef DBG_LOCALLOG | 
|---|
| 625 | #define DBG_LOCALLOG    DBG_caret | 
|---|
| 626 | DEBUGWRAP16(CreateCaret) | 
|---|
| 627 | DEBUGWRAP0(DestroyCaret) | 
|---|
| 628 | DEBUGWRAP0(GetCaretBlinkTime) | 
|---|
| 629 | DEBUGWRAP4(GetCaretPos) | 
|---|
| 630 | DEBUGWRAP4(HideCaret) | 
|---|
| 631 | DEBUGWRAP4(SetCaretBlinkTime) | 
|---|
| 632 | DEBUGWRAP8(SetCaretPos) | 
|---|
| 633 | DEBUGWRAP4(ShowCaret) | 
|---|
| 634 |  | 
|---|
| 635 |  | 
|---|
| 636 | #undef DBG_LOCALLOG | 
|---|
| 637 | #define DBG_LOCALLOG    DBG_uitools | 
|---|
| 638 | DEBUGWRAP16(DrawAnimatedRects) | 
|---|
| 639 | DEBUGWRAP16(DrawCaption) | 
|---|
| 640 | DEBUGWRAP28(DrawCaptionTempA) | 
|---|
| 641 | DEBUGWRAP28(DrawCaptionTempW) | 
|---|
| 642 | DEBUGWRAP16(DrawEdge) | 
|---|
| 643 | DEBUGWRAP8(DrawFocusRect) | 
|---|
| 644 | DEBUGWRAP16(DrawFrameControl) | 
|---|
| 645 | DEBUGWRAP40(DrawStateA) | 
|---|
| 646 | DEBUGWRAP40(DrawStateW) | 
|---|
| 647 | DEBUGWRAP20(DrawTextA) | 
|---|
| 648 | DEBUGWRAP24(DrawTextExA) | 
|---|
| 649 | DEBUGWRAP24(DrawTextExW) | 
|---|
| 650 | DEBUGWRAP20(DrawTextW) | 
|---|
| 651 |  | 
|---|
| 652 |  | 
|---|
| 653 | #undef DBG_LOCALLOG | 
|---|
| 654 | #define DBG_LOCALLOG    DBG_text | 
|---|
| 655 | DEBUGWRAP20(GetTabbedTextExtentA) | 
|---|
| 656 | DEBUGWRAP20(GetTabbedTextExtentW) | 
|---|
| 657 | DEBUGWRAP32(TabbedTextOutA) | 
|---|
| 658 | DEBUGWRAP32(TabbedTextOutW) | 
|---|
| 659 | DEBUGWRAP36(GrayStringA) | 
|---|
| 660 | DEBUGWRAP36(GrayStringW) | 
|---|
| 661 |  | 
|---|
| 662 |  | 
|---|
| 663 | #undef DBG_LOCALLOG | 
|---|
| 664 | #define DBG_LOCALLOG    DBG_timer | 
|---|
| 665 | DEBUGWRAP8(KillTimer) | 
|---|
| 666 | DEBUGWRAP16(SetTimer) | 
|---|
| 667 |  | 
|---|
| 668 |  | 
|---|
| 669 | #undef DBG_LOCALLOG | 
|---|
| 670 | #define DBG_LOCALLOG    DBG_window | 
|---|
| 671 | DEBUGWRAP8(FindWindowA) | 
|---|
| 672 | DEBUGWRAP16(FindWindowExA) | 
|---|
| 673 | DEBUGWRAP16(FindWindowExW) | 
|---|
| 674 | DEBUGWRAP8(FindWindowW) | 
|---|
| 675 | DEBUGWRAP8(FlashWindow) | 
|---|
| 676 | DEBUGWRAP12(AdjustWindowRect) | 
|---|
| 677 | DEBUGWRAP16(AdjustWindowRectEx) | 
|---|
| 678 | DEBUGWRAP0(AnyPopup) | 
|---|
| 679 | DEBUGWRAP4(BeginDeferWindowPos) | 
|---|
| 680 | DEBUGWRAP4(BringWindowToTop) | 
|---|
| 681 | DEBUGWRAP12(ChildWindowFromPoint) | 
|---|
| 682 | DEBUGWRAP16(ChildWindowFromPointEx) | 
|---|
| 683 | DEBUGWRAP4(CloseWindow) | 
|---|
| 684 | DEBUGWRAP48(CreateWindowExA) | 
|---|
| 685 | DEBUGWRAP48(CreateWindowExW) | 
|---|
| 686 | DEBUGWRAP32(DeferWindowPos) | 
|---|
| 687 | DEBUGWRAP4(DestroyWindow) | 
|---|
| 688 | DEBUGWRAP8(EnableWindow) | 
|---|
| 689 | DEBUGWRAP4(EndDeferWindowPos) | 
|---|
| 690 | DEBUGWRAP12(EnumThreadWindows) | 
|---|
| 691 | DEBUGWRAP8(EnumWindows) | 
|---|
| 692 | DEBUGWRAP12(EnumChildWindows) | 
|---|
| 693 | DEBUGWRAP0(GetActiveWindow) | 
|---|
| 694 | DEBUGWRAP8(GetClientRect) | 
|---|
| 695 | DEBUGWRAP0(GetDesktopWindow) | 
|---|
| 696 | DEBUGWRAP0(GetFocus) | 
|---|
| 697 | DEBUGWRAP0(GetForegroundWindow) | 
|---|
| 698 | DEBUGWRAP4(GetLastActivePopup) | 
|---|
| 699 | DEBUGWRAP8(GetNextQueueWindow) | 
|---|
| 700 | DEBUGWRAP4(GetParent) | 
|---|
| 701 | DEBUGWRAP4(GetTopWindow) | 
|---|
| 702 | DEBUGWRAP8(GetWindow) | 
|---|
| 703 | DEBUGWRAP4(GetWindowContextHelpId) | 
|---|
| 704 | DEBUGWRAP8(GetWindowRect) | 
|---|
| 705 | DEBUGWRAP12(GetWindowTextA) | 
|---|
| 706 | DEBUGWRAP4(GetWindowTextLengthA) | 
|---|
| 707 | DEBUGWRAP4(GetWindowTextLengthW) | 
|---|
| 708 | DEBUGWRAP12(GetWindowTextW) | 
|---|
| 709 | DEBUGWRAP8(GetWindowThreadProcessId) | 
|---|
| 710 | DEBUGWRAP8(GetWindowPlacement) | 
|---|
| 711 | DEBUGWRAP8(SetWindowPlacement) | 
|---|
| 712 | DEBUGWRAP28(SetWindowPos) | 
|---|
| 713 | DEBUGWRAP8(SetWindowTextA) | 
|---|
| 714 | DEBUGWRAP8(SetWindowTextW) | 
|---|
| 715 | DEBUGWRAP8(ShowOwnedPopups) | 
|---|
| 716 | DEBUGWRAP8(ShowWindow) | 
|---|
| 717 | DEBUGWRAP8(ShowWindowAsync) | 
|---|
| 718 | DEBUGWRAP24(MoveWindow) | 
|---|
| 719 | DEBUGWRAP4(IsIconic) | 
|---|
| 720 | DEBUGWRAP8(IsChild) | 
|---|
| 721 | DEBUGWRAP_LVL2_4(IsWindow) | 
|---|
| 722 | DEBUGWRAP4(IsWindowEnabled) | 
|---|
| 723 | DEBUGWRAP4(IsWindowUnicode) | 
|---|
| 724 | DEBUGWRAP4(IsWindowVisible) | 
|---|
| 725 | DEBUGWRAP4(IsZoomed) | 
|---|
| 726 | DEBUGWRAP4(LockWindowUpdate) | 
|---|
| 727 | DEBUGWRAP16(MapWindowPoints) | 
|---|
| 728 | DEBUGWRAP4(SetActiveWindow) | 
|---|
| 729 | DEBUGWRAP4(SetFocus) | 
|---|
| 730 | DEBUGWRAP4(SetForegroundWindow) | 
|---|
| 731 | DEBUGWRAP16(SetInternalWindowPos) | 
|---|
| 732 | DEBUGWRAP8(SetParent) | 
|---|
| 733 | DEBUGWRAP8(SetWindowContextHelpId) | 
|---|
| 734 | DEBUGWRAP8(WindowFromPoint) | 
|---|
| 735 | DEBUGWRAP8(ScreenToClient) | 
|---|
| 736 | DEBUGWRAP4(WindowFromDC) | 
|---|
| 737 | DEBUGWRAP8(ClientToScreen) | 
|---|
| 738 | DEBUGWRAP12(InternalGetWindowText) | 
|---|
| 739 |  | 
|---|
| 740 |  | 
|---|
| 741 | #undef DBG_LOCALLOG | 
|---|
| 742 | #define DBG_LOCALLOG    DBG_windowword | 
|---|
| 743 | DEBUGWRAP8(GetWindowLongA) | 
|---|
| 744 | DEBUGWRAP8(GetWindowLongW) | 
|---|
| 745 | DEBUGWRAP8(GetWindowWord) | 
|---|
| 746 | DEBUGWRAP12(SetWindowLongA) | 
|---|
| 747 | DEBUGWRAP12(SetWindowLongW) | 
|---|
| 748 | DEBUGWRAP12(SetWindowWord) | 
|---|
| 749 |  | 
|---|
| 750 |  | 
|---|
| 751 | #undef DBG_LOCALLOG | 
|---|
| 752 | #define DBG_LOCALLOG    DBG_paint | 
|---|
| 753 | DEBUGWRAP4(GetDC) | 
|---|
| 754 | DEBUGWRAP12(GetDCEx) | 
|---|
| 755 | DEBUGWRAP12(FillRect) | 
|---|
| 756 | DEBUGWRAP12(FrameRect) | 
|---|
| 757 | DEBUGWRAP4(GetWindowDC) | 
|---|
| 758 | DEBUGWRAP8(ReleaseDC) | 
|---|
| 759 | DEBUGWRAP8(CalcChildScroll) | 
|---|
| 760 | DEBUGWRAP28(ScrollDC) | 
|---|
| 761 | DEBUGWRAP20(ScrollWindow) | 
|---|
| 762 | DEBUGWRAP32(ScrollWindowEx) | 
|---|
| 763 | DEBUGWRAP12(InvalidateRect) | 
|---|
| 764 | DEBUGWRAP12(InvalidateRgn) | 
|---|
| 765 | DEBUGWRAP8(InvertRect) | 
|---|
| 766 | DEBUGWRAP8(ValidateRect) | 
|---|
| 767 | DEBUGWRAP8(ValidateRgn) | 
|---|
| 768 | DEBUGWRAP16(RedrawWindow) | 
|---|
| 769 | DEBUGWRAP8(EndPaint) | 
|---|
| 770 | DEBUGWRAP12(GetUpdateRect) | 
|---|
| 771 | DEBUGWRAP12(GetUpdateRgn) | 
|---|
| 772 | DEBUGWRAP8(GetWindowRgn) | 
|---|
| 773 | DEBUGWRAP12(SetWindowRgn) | 
|---|
| 774 | DEBUGWRAP4(UpdateWindow) | 
|---|
| 775 | DEBUGWRAP8(BeginPaint) | 
|---|
| 776 | DEBUGWRAP8(ExcludeUpdateRgn) | 
|---|
| 777 |  | 
|---|
| 778 |  | 
|---|
| 779 | #undef DBG_LOCALLOG | 
|---|
| 780 | #define DBG_LOCALLOG    DBG_winaccel | 
|---|
| 781 | DEBUGWRAP12(CopyAcceleratorTableA) | 
|---|
| 782 | DEBUGWRAP12(CopyAcceleratorTableW) | 
|---|
| 783 | DEBUGWRAP8(CreateAcceleratorTableA) | 
|---|
| 784 | DEBUGWRAP8(CreateAcceleratorTableW) | 
|---|
| 785 | DEBUGWRAP4(DestroyAcceleratorTable) | 
|---|
| 786 | DEBUGWRAP12(TranslateAcceleratorA) | 
|---|
| 787 | DEBUGWRAP8(TranslateMDISysAccel) | 
|---|
| 788 | DEBUGWRAP8(LoadAcceleratorsA) | 
|---|
| 789 | DEBUGWRAP8(LoadAcceleratorsW) | 
|---|