ReactOS 0.4.17-dev-806-gffa4164
stubs.c File Reference
#include <user32.h>
Include dependency graph for stubs.c:

Go to the source code of this file.

Functions

 WINE_DEFAULT_DEBUG_CHANNEL (user32)
 
DWORD WINAPI WaitForInputIdle (HANDLE hProcess, DWORD dwMilliseconds)
 
VOID WINAPI SetDebugErrorLevel (DWORD dwLevel)
 
DWORD WINAPI GetAppCompatFlags (HTASK hTask)
 
DWORD WINAPI GetAppCompatFlags2 (HTASK hTask)
 
VOID WINAPI LoadLocalFonts (VOID)
 
VOID WINAPI LoadRemoteFonts (VOID)
 
VOID WINAPI RegisterSystemThread (DWORD flags, DWORD reserved)
 
UINT WINAPI UserRealizePalette (HDC hDC)
 
DWORD_PTR WINAPI SetSysColorsTemp (const COLORREF *pPens, const HBRUSH *pBrushes, DWORD_PTR n)
 
HDESK WINAPI GetInputDesktop (VOID)
 
BOOL WINAPI GetAccCursorInfo (PCURSORINFO pci)
 
LONG WINAPI CsrBroadcastSystemMessageExW (DWORD dwflags, LPDWORD lpdwRecipients, UINT uiMessage, WPARAM wParam, LPARAM lParam, PBSMINFO pBSMInfo)
 
UINT WINAPI GetRawInputDeviceInfoA (_In_opt_ HANDLE hDevice, _In_ UINT uiCommand, _Inout_opt_ LPVOID pData, _Inout_ PUINT pcbSize)
 
BOOL WINAPI AlignRects (LPRECT rect, DWORD b, DWORD c, DWORD d)
 
LRESULT WINAPI DefRawInputProc (PRAWINPUT *paRawInput, INT nInput, UINT cbSizeHeader)
 
UINT WINAPI DECLSPEC_HOTPATCH GetRawInputBuffer (_In_opt_ PRAWINPUT pData, _Inout_ PUINT pcbSize, _In_ UINT cbSizeHeader)
 
BOOL WINAPI DisplayExitWindowsWarnings (ULONG flags)
 
BOOL WINAPI ReasonCodeNeedsBugID (ULONG reasoncode)
 
BOOL WINAPI ReasonCodeNeedsComment (ULONG reasoncode)
 
BOOL WINAPI CtxInitUser32 (VOID)
 
BOOL WINAPI EnterReaderModeHelper (HWND hwnd)
 
VOID WINAPI InitializeLpkHooks (FARPROC *hookfuncs)
 
WORD WINAPI InitializeWin32EntryTable (UCHAR *EntryTablePlus0x1000)
 
VOID WINAPI AllowForegroundActivation (VOID)
 
VOID WINAPI ShowStartGlass (DWORD unknown)
 
DWORD WINAPI GetMenuIndex (HMENU hMenu, HMENU hSubMenu)
 
DWORD WINAPI UserRegisterWowHandlers (PVOID Unknown1, PVOID Unknown2)
 
BOOL WINAPI BuildReasonArray (PVOID Pointer)
 
VOID WINAPI CreateSystemThreads (DWORD Unused)
 
BOOL WINAPI DestroyReasons (PVOID Pointer)
 
NTSTATUS WINAPI DeviceEventWorker (HWND hwnd, WPARAM wParam, LPARAM lParam, DWORD Data, ULONG_PTR *uResult)
 
BOOL WINAPI GetReasonTitleFromReasonCode (DWORD dw1, DWORD dw2, DWORD dw3)
 
BOOL WINAPI IsSETEnabled (VOID)
 
BOOL WINAPI RecordShutdownReason (DWORD dw0)
 
BOOL WINAPI UserLpkTabbedTextOut (DWORD dw1, DWORD dw2, DWORD dw3, DWORD dw4, DWORD dw5, DWORD dw6, DWORD dw7, DWORD dw8, DWORD dw9, DWORD dw10, DWORD dw11, DWORD dw12)
 
BOOL WINAPI Win32PoolAllocationStats (DWORD dw1, DWORD dw2, DWORD dw3, DWORD dw4, DWORD dw5)
 

Variables

static HPEN SysColorPens [COLOR_MENUBAR+1]
 
static HBRUSH SysColorBrushes [COLOR_MENUBAR+1]
 

Function Documentation

◆ AlignRects()

BOOL WINAPI AlignRects ( LPRECT  rect,
DWORD  b,
DWORD  c,
DWORD  d 
)

Definition at line 279 of file stubs.c.

280{
282 return FALSE;
283}
#define UNIMPLEMENTED
Definition: ntoskrnl.c:15
#define FALSE
Definition: types.h:117

◆ AllowForegroundActivation()

VOID WINAPI AllowForegroundActivation ( VOID  )

Definition at line 393 of file stubs.c.

394{
396}

◆ BuildReasonArray()

BOOL WINAPI BuildReasonArray ( PVOID  Pointer)

Definition at line 425 of file stubs.c.

426{
428 return FALSE;
429}

◆ CreateSystemThreads()

VOID WINAPI CreateSystemThreads ( DWORD  Unused)

Definition at line 433 of file stubs.c.

434{
435 /* Thread call for remote processes (non-CSRSS) only */
437 ExitThread(0);
438}
#define TRUE
Definition: types.h:120
VOID WINAPI ExitThread(IN DWORD uExitCode)
Definition: thread.c:365
EXTINLINE VOID NtUserxCreateSystemThreads(BOOL bRemoteProcess)
Definition: ntwrapper.h:646

◆ CsrBroadcastSystemMessageExW()

LONG WINAPI CsrBroadcastSystemMessageExW ( DWORD  dwflags,
LPDWORD  lpdwRecipients,
UINT  uiMessage,
WPARAM  wParam,
LPARAM  lParam,
PBSMINFO  pBSMInfo 
)

Definition at line 225 of file stubs.c.

232{
234 return FALSE;
235}

◆ CtxInitUser32()

BOOL WINAPI CtxInitUser32 ( VOID  )

Definition at line 358 of file stubs.c.

359{
361 return FALSE;
362}

◆ DefRawInputProc()

LRESULT WINAPI DefRawInputProc ( PRAWINPUT *  paRawInput,
INT  nInput,
UINT  cbSizeHeader 
)

Definition at line 290 of file stubs.c.

294{
295 if (cbSizeHeader == sizeof(RAWINPUTHEADER))
296 return S_OK;
297 return 1;
298}
#define S_OK
Definition: intsafe.h:52

Referenced by test_DefRawInputProc().

◆ DestroyReasons()

BOOL WINAPI DestroyReasons ( PVOID  Pointer)

Definition at line 442 of file stubs.c.

443{
445 return FALSE;
446}

◆ DeviceEventWorker()

NTSTATUS WINAPI DeviceEventWorker ( HWND  hwnd,
WPARAM  wParam,
LPARAM  lParam,
DWORD  Data,
ULONG_PTR uResult 
)

Definition at line 450 of file stubs.c.

451{
452 USER_API_MESSAGE ApiMessage;
453 PUSER_DEVICE_EVENT_MSG pusem = &ApiMessage.Data.DeviceEventMsg;
454
455 pusem->hwnd = hwnd;
456 pusem->wParam = wParam;
457 pusem->lParam = lParam;
458 pusem->Data = Data;
459 pusem->Result = 0;
460
461 TRACE("DeviceEventWorker : hwnd %p, wParam %d, lParam %d, Data %d, uResult %p\n", hwnd, wParam, lParam, Data, uResult);
462
463 if ( lParam == 0 )
464 {
466 NULL,
468 sizeof(*pusem) );
469 }
470 else
471 {
472 PCSR_CAPTURE_BUFFER pcsrcb = NULL;
474 ULONG BufferSize = pdev_br->dbch_size;
475
477
478 if ( !pcsrcb )
479 {
480 return STATUS_NO_MEMORY;
481 }
482
484
486 pcsrcb,
488 sizeof(*pusem) );
489
490 CsrFreeCaptureBuffer( pcsrcb );
491 }
492
493 if (NT_SUCCESS(ApiMessage.Status))
494 {
495 *uResult = pusem->Result;
496 }
497
498 return ApiMessage.Status;
499}
WPARAM wParam
Definition: combotst.c:138
LPARAM lParam
Definition: combotst.c:139
#define CSR_CREATE_API_NUMBER(ServerId, ApiId)
Definition: csrmsg.h:37
#define STATUS_NO_MEMORY
Definition: d3dkmdt.h:51
struct _DEV_BROADCAST_HDR * PDEV_BROADCAST_HDR
_In_ ULONG BufferSize
Definition: dispmprt.h:490
#define NULL
Definition: types.h:112
#define NT_SUCCESS(StatCode)
Definition: apphelp.c:33
PCSR_CAPTURE_BUFFER NTAPI CsrAllocateCaptureBuffer(_In_ ULONG ArgumentCount, _In_ ULONG BufferSize)
Definition: capture.c:87
VOID NTAPI CsrFreeCaptureBuffer(_In_ _Frees_ptr_ PCSR_CAPTURE_BUFFER CaptureBuffer)
Definition: capture.c:210
VOID NTAPI CsrCaptureMessageBuffer(_Inout_ PCSR_CAPTURE_BUFFER CaptureBuffer, _In_opt_ PVOID MessageBuffer, _In_ ULONG MessageLength, _Out_ PVOID *CapturedData)
Definition: capture.c:189
NTSTATUS NTAPI CsrClientCallServer(_Inout_ PCSR_API_MESSAGE ApiMessage, _Inout_opt_ PCSR_CAPTURE_BUFFER CaptureBuffer, _In_ CSR_API_NUMBER ApiNumber, _In_ ULONG DataLength)
Definition: connect.c:366
#define TRACE(s)
Definition: solgame.cpp:4
NTSTATUS Status
Definition: csrmsg.h:110
DWORD dbch_size
Definition: dbt.h:73
USER_DEVICE_EVENT_MSG DeviceEventMsg
Definition: winmsg.h:115
union _USER_API_MESSAGE::@3973 Data
ULONG_PTR Result
Definition: winmsg.h:95
uint32_t ULONG
Definition: typedefs.h:59
_In_ LONG _In_ HWND hwnd
Definition: winddi.h:4023
@ UserpDeviceEvent
Definition: winmsg.h:27
#define USERSRV_SERVERDLL_INDEX
Definition: winmsg.h:15

◆ DisplayExitWindowsWarnings()

BOOL WINAPI DisplayExitWindowsWarnings ( ULONG  flags)

Definition at line 331 of file stubs.c.

332{
334 return FALSE;
335}

◆ EnterReaderModeHelper()

BOOL WINAPI EnterReaderModeHelper ( HWND  hwnd)

Definition at line 367 of file stubs.c.

368{
370 return FALSE;
371}

◆ GetAccCursorInfo()

BOOL WINAPI GetAccCursorInfo ( PCURSORINFO  pci)

Definition at line 214 of file stubs.c.

215{
217 return FALSE;
218}

◆ GetAppCompatFlags()

DWORD WINAPI GetAppCompatFlags ( HTASK  hTask)

Definition at line 51 of file stubs.c.

52{
54
55 return pci->dwCompatFlags;
56}
#define GetWin32ClientInfo()
Definition: ntuser.h:356
DWORD dwCompatFlags
Definition: ntuser.h:326

◆ GetAppCompatFlags2()

DWORD WINAPI GetAppCompatFlags2 ( HTASK  hTask)

Definition at line 63 of file stubs.c.

64{
66
67 return pci->dwCompatFlags2;
68}
DWORD dwCompatFlags2
Definition: ntuser.h:327

◆ GetInputDesktop()

HDESK WINAPI GetInputDesktop ( VOID  )

Definition at line 203 of file stubs.c.

204{
206 return FALSE;
207}

◆ GetMenuIndex()

DWORD WINAPI GetMenuIndex ( HMENU  hMenu,
HMENU  hSubMenu 
)

Definition at line 409 of file stubs.c.

410{
411 return NtUserGetMenuIndex(hMenu, hSubMenu);
412}
UINT NTAPI NtUserGetMenuIndex(HMENU hMenu, HMENU hSubMenu)
Definition: menu.c:6088

◆ GetRawInputBuffer()

UINT WINAPI DECLSPEC_HOTPATCH GetRawInputBuffer ( _In_opt_ PRAWINPUT  pData,
_Inout_ PUINT  pcbSize,
_In_ UINT  cbSizeHeader 
)

Definition at line 306 of file stubs.c.

310{
311 PCLIENTTHREADINFO pcti = GetWin32ClientInfo()->pClientThreadInfo;
312
313 if (!pcbSize || cbSizeHeader != sizeof(RAWINPUTHEADER))
314 {
316 return (UINT)-1;
317 }
318
319 if (!pcti || !(pcti->fsWakeBits & QS_RAWINPUT))
320 {
321 *pcbSize = 0;
322 return 0;
323 }
324
325 return NtUserGetRawInputBuffer(pData, pcbSize, cbSizeHeader);
326}
#define ERROR_INVALID_PARAMETER
Definition: compat.h:101
#define SetLastError(x)
Definition: compat.h:752
unsigned int UINT
Definition: sysinfo.c:13
DWORD NTAPI NtUserGetRawInputBuffer(PRAWINPUT pData, PUINT pcbSize, UINT cbSizeHeader)
Definition: ntstubs.c:381
TW_UINT32 TW_UINT16 TW_UINT16 TW_MEMREF pData
Definition: twain.h:1830

Referenced by rawinputbuffer_wndproc(), and test_GetRawInputBuffer().

◆ GetRawInputDeviceInfoA()

UINT WINAPI GetRawInputDeviceInfoA ( _In_opt_ HANDLE  hDevice,
_In_ UINT  uiCommand,
_Inout_opt_ LPVOID  pData,
_Inout_ PUINT  pcbSize 
)

Definition at line 242 of file stubs.c.

247{
248 UINT Ret;
249 LPVOID pDataW = pData;
250 UINT cbSize = *pcbSize;
251
252 if (uiCommand == RIDI_DEVICENAME && pData)
253 {
254 pDataW = HeapAlloc(GetProcessHeap(), 0, cbSize * sizeof(WCHAR));
255 if (!pDataW)
256 {
258 return (UINT)-1;
259 }
260 }
261
262 Ret = NtUserGetRawInputDeviceInfo(hDevice, uiCommand, pDataW, &cbSize);
263 if (Ret >= 0 && uiCommand == RIDI_DEVICENAME && pDataW)
264 {
265 if (WideCharToMultiByte(CP_THREAD_ACP, 0, pDataW, cbSize, pData, *pcbSize, NULL, NULL) == 0)
266 Ret = (UINT)-1;
267 }
268 if (pData != pDataW)
269 HeapFree(GetProcessHeap(), 0, pDataW);
270 *pcbSize = cbSize;
271 return Ret;
272}
#define ERROR_NOT_ENOUGH_MEMORY
Definition: dderror.h:7
#define GetProcessHeap()
Definition: compat.h:736
#define HeapAlloc
Definition: compat.h:733
#define HeapFree(x, y, z)
Definition: compat.h:735
#define WideCharToMultiByte
Definition: compat.h:111
DWORD NTAPI NtUserGetRawInputDeviceInfo(HANDLE hDevice, UINT uiCommand, LPVOID pData, PUINT pcbSize)
short WCHAR
Definition: pedump.c:58
#define CP_THREAD_ACP
Definition: winnls.h:261

Referenced by init_function_pointers().

◆ GetReasonTitleFromReasonCode()

BOOL WINAPI GetReasonTitleFromReasonCode ( DWORD  dw1,
DWORD  dw2,
DWORD  dw3 
)

Definition at line 503 of file stubs.c.

504{
506 return FALSE;
507}

◆ InitializeLpkHooks()

VOID WINAPI InitializeLpkHooks ( FARPROC hookfuncs)

Definition at line 376 of file stubs.c.

377{
379}

◆ InitializeWin32EntryTable()

WORD WINAPI InitializeWin32EntryTable ( UCHAR EntryTablePlus0x1000)

Definition at line 384 of file stubs.c.

385{
387 return FALSE;
388}

◆ IsSETEnabled()

BOOL WINAPI IsSETEnabled ( VOID  )

Definition at line 511 of file stubs.c.

512{
513 /*
514 * Determines whether the Shutdown Event Tracker is enabled.
515 *
516 * See http://undoc.airesoft.co.uk/user32.dll/IsSETEnabled.php
517 * for more information.
518 */
520 return FALSE;
521}

◆ LoadLocalFonts()

VOID WINAPI LoadLocalFonts ( VOID  )

Definition at line 75 of file stubs.c.

76{
78}

◆ LoadRemoteFonts()

VOID WINAPI LoadRemoteFonts ( VOID  )

Definition at line 85 of file stubs.c.

86{
88}

◆ ReasonCodeNeedsBugID()

BOOL WINAPI ReasonCodeNeedsBugID ( ULONG  reasoncode)

Definition at line 340 of file stubs.c.

341{
343 return FALSE;
344}

◆ ReasonCodeNeedsComment()

BOOL WINAPI ReasonCodeNeedsComment ( ULONG  reasoncode)

Definition at line 349 of file stubs.c.

350{
352 return FALSE;
353}

◆ RecordShutdownReason()

BOOL WINAPI RecordShutdownReason ( DWORD  dw0)

Definition at line 525 of file stubs.c.

526{
528 return FALSE;
529}

◆ RegisterSystemThread()

VOID WINAPI RegisterSystemThread ( DWORD  flags,
DWORD  reserved 
)

Definition at line 95 of file stubs.c.

96{
98}

◆ SetDebugErrorLevel()

VOID WINAPI SetDebugErrorLevel ( DWORD  dwLevel)

Definition at line 40 of file stubs.c.

41{
42 FIXME("(%lu): stub\n", dwLevel);
43}
#define FIXME(fmt,...)
Definition: precomp.h:53

◆ SetSysColorsTemp()

DWORD_PTR WINAPI SetSysColorsTemp ( const COLORREF pPens,
const HBRUSH *  pBrushes,
DWORD_PTR  n 
)

Definition at line 151 of file stubs.c.

154{
155 DWORD i;
156
157 if (pPens && pBrushes) /* "set" call */
158 {
159 /* allocate our structure to remember old colors */
160 LPVOID pOldCol = HeapAlloc(GetProcessHeap(), 0, sizeof(DWORD)+n*sizeof(HPEN)+n*sizeof(HBRUSH));
161 LPVOID p = pOldCol;
162 *(DWORD_PTR *)p = n; p = (char*)p + sizeof(DWORD);
163 memcpy(p, SysColorPens, n*sizeof(HPEN)); p = (char*)p + n*sizeof(HPEN);
164 memcpy(p, SysColorBrushes, n*sizeof(HBRUSH)); p = (char*)p + n*sizeof(HBRUSH);
165
166 for (i=0; i < n; i++)
167 {
168 SysColorPens[i] = CreatePen( PS_SOLID, 1, pPens[i] );
169 SysColorBrushes[i] = pBrushes[i];
170 }
171
172 return (DWORD_PTR) pOldCol;
173 }
174 if (!pPens && !pBrushes) /* "restore" call */
175 {
176 LPVOID pOldCol = (LPVOID)n;
177 LPVOID p = pOldCol;
178 DWORD nCount = *(DWORD *)p;
179 p = (char*)p + sizeof(DWORD);
180
181 for (i=0; i < nCount; i++)
182 {
184 SysColorPens[i] = *(HPEN *)p; p = (char*)p + sizeof(HPEN);
185 }
186 for (i=0; i < nCount; i++)
187 {
188 SysColorBrushes[i] = *(HBRUSH *)p; p = (char*)p + sizeof(HBRUSH);
189 }
190 /* get rid of storage structure */
191 HeapFree(GetProcessHeap(), 0, pOldCol);
192
193 return TRUE;
194 }
195 return FALSE;
196}
unsigned long DWORD
Definition: ntddk_ex.h:95
pKey DeleteObject()
GLdouble n
Definition: glext.h:7729
GLfloat GLfloat p
Definition: glext.h:8902
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
Definition: glfuncs.h:248
#define memcpy(s1, s2, n)
Definition: mkisofs.h:878
#define LPVOID
Definition: nt_native.h:45
uint32_t DWORD_PTR
Definition: typedefs.h:65
static HBRUSH SysColorBrushes[COLOR_MENUBAR+1]
Definition: stubs.c:147
static HPEN SysColorPens[COLOR_MENUBAR+1]
Definition: stubs.c:146
HPEN WINAPI CreatePen(_In_ int, _In_ int, _In_ COLORREF)
#define PS_SOLID
Definition: wingdi.h:586

◆ ShowStartGlass()

VOID WINAPI ShowStartGlass ( DWORD  unknown)

Definition at line 401 of file stubs.c.

402{
404}

◆ UserLpkTabbedTextOut()

BOOL WINAPI UserLpkTabbedTextOut ( DWORD  dw1,
DWORD  dw2,
DWORD  dw3,
DWORD  dw4,
DWORD  dw5,
DWORD  dw6,
DWORD  dw7,
DWORD  dw8,
DWORD  dw9,
DWORD  dw10,
DWORD  dw11,
DWORD  dw12 
)

Definition at line 533 of file stubs.c.

546{
548 return FALSE;
549}

◆ UserRealizePalette()

UINT WINAPI UserRealizePalette ( HDC  hDC)

Definition at line 106 of file stubs.c.

107{
109}
static HDC hDC
Definition: 3dtext.c:33
EXTINLINE UINT NtUserxRealizePalette(HDC hDC)
Definition: ntwrapper.h:641

Referenced by NtUserCallOneParam(), and RealizePalette().

◆ UserRegisterWowHandlers()

DWORD WINAPI UserRegisterWowHandlers ( PVOID  Unknown1,
PVOID  Unknown2 
)

Definition at line 417 of file stubs.c.

418{
420 return 0;
421}

◆ WaitForInputIdle()

DWORD WINAPI WaitForInputIdle ( HANDLE  hProcess,
DWORD  dwMilliseconds 
)

Definition at line 21 of file stubs.c.

24{
25// Need to call NtQueryInformationProcess and send ProcessId not hProcess.
26 return NtUserWaitForInputIdle(hProcess, dwMilliseconds, FALSE);
27}
DWORD NTAPI NtUserWaitForInputIdle(IN HANDLE hProcess, IN DWORD dwMilliseconds, IN BOOL bSharedWow)
Definition: message.c:3103
_In_ BOOL _In_ HANDLE hProcess
Definition: mapping.h:71

◆ Win32PoolAllocationStats()

BOOL WINAPI Win32PoolAllocationStats ( DWORD  dw1,
DWORD  dw2,
DWORD  dw3,
DWORD  dw4,
DWORD  dw5 
)

Definition at line 553 of file stubs.c.

554{
556 return FALSE;
557}

◆ WINE_DEFAULT_DEBUG_CHANNEL()

WINE_DEFAULT_DEBUG_CHANNEL ( user32  )

Variable Documentation

◆ SysColorBrushes

HBRUSH SysColorBrushes[COLOR_MENUBAR+1]
static

Definition at line 147 of file stubs.c.

Referenced by SetSysColorsTemp().

◆ SysColorPens

HPEN SysColorPens[COLOR_MENUBAR+1]
static

Definition at line 146 of file stubs.c.

Referenced by SetSysColorsTemp().