ReactOS 0.4.15-dev-7842-g558ab78
compstui_main.c File Reference
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
#include "ddk/compstui.h"
#include "wine/debug.h"
Include dependency graph for compstui_main.c:

Go to the source code of this file.

Macros

#define COBJMACROS
 

Functions

 WINE_DEFAULT_DEBUG_CHANNEL (compstui)
 
BOOL WINAPI DllMain (HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
 
LONG WINAPI CommonPropertySheetUIA (HWND hWnd, PFNPROPSHEETUI pfnPropSheetUI, LPARAM lparam, LPDWORD pResult)
 
LONG WINAPI CommonPropertySheetUIW (HWND hWnd, PFNPROPSHEETUI pfnPropSheetUI, LPARAM lparam, LPDWORD pResult)
 
ULONG_PTR WINAPI GetCPSUIUserData (HWND hDlg)
 
BOOL WINAPI SetCPSUIUserData (HWND hDlg, ULONG_PTR UserData)
 

Macro Definition Documentation

◆ COBJMACROS

#define COBJMACROS

Definition at line 23 of file compstui_main.c.

Function Documentation

◆ CommonPropertySheetUIA()

LONG WINAPI CommonPropertySheetUIA ( HWND  hWnd,
PFNPROPSHEETUI  pfnPropSheetUI,
LPARAM  lparam,
LPDWORD  pResult 
)

Definition at line 57 of file compstui_main.c.

58{
59 FIXME("(%p, %p, 0x%lx, %p)\n", hWnd, pfnPropSheetUI, lparam, pResult);
60 return CPSUI_CANCEL;
61}
@ lparam
Definition: SystemMenu.c:31
HWND hWnd
Definition: settings.c:17
#define FIXME(fmt,...)
Definition: debug.h:111
#define CPSUI_CANCEL
Definition: compstui.h:639

◆ CommonPropertySheetUIW()

LONG WINAPI CommonPropertySheetUIW ( HWND  hWnd,
PFNPROPSHEETUI  pfnPropSheetUI,
LPARAM  lparam,
LPDWORD  pResult 
)

Definition at line 67 of file compstui_main.c.

68{
69 FIXME("(%p, %p, 0x%lx, %p)\n", hWnd, pfnPropSheetUI, lparam, pResult);
70 return CPSUI_CANCEL;
71}

◆ DllMain()

BOOL WINAPI DllMain ( HINSTANCE  hinstDLL,
DWORD  fdwReason,
LPVOID  lpvReserved 
)

Definition at line 37 of file compstui_main.c.

38{
39 TRACE("(%p, %d, %p)\n",hinstDLL, fdwReason, lpvReserved);
40
41 switch(fdwReason)
42 {
43 case DLL_WINE_PREATTACH:
44 return FALSE; /* prefer native version */
45
47 DisableThreadLibraryCalls( hinstDLL );
48 break;
49 }
50 return TRUE;
51}
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
#define DLL_PROCESS_ATTACH
Definition: compat.h:131
BOOL WINAPI DisableThreadLibraryCalls(IN HMODULE hLibModule)
Definition: loader.c:85
static IN DWORD IN LPVOID lpvReserved
#define TRACE(s)
Definition: solgame.cpp:4

◆ GetCPSUIUserData()

ULONG_PTR WINAPI GetCPSUIUserData ( HWND  hDlg)

Definition at line 77 of file compstui_main.c.

78{
79 FIXME("(%p): stub\n", hDlg);
80 return 0;
81}

◆ SetCPSUIUserData()

BOOL WINAPI SetCPSUIUserData ( HWND  hDlg,
ULONG_PTR  UserData 
)

Definition at line 87 of file compstui_main.c.

88{
89 FIXME("(%p, %08lx): stub\n", hDlg, UserData);
90 return TRUE;
91}

◆ WINE_DEFAULT_DEBUG_CHANNEL()

WINE_DEFAULT_DEBUG_CHANNEL ( compstui  )