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