ReactOS 0.4.15-dev-7918-g2a2556c
storprop.c File Reference
#include "precomp.h"
#include <debug.h>
Include dependency graph for storprop.c:

Go to the source code of this file.

Macros

#define NDEBUG
 

Functions

BOOL WINAPI VolumePropPageProvider (_In_ PSP_PROPSHEETPAGE_REQUEST lpPropSheetPageRequest, _In_ LPFNADDPROPSHEETPAGE lpfnAddPropSheetPageProc, _In_ LPARAM lParam)
 
BOOL WINAPI DllMain (_In_ HINSTANCE hinstDll, _In_ DWORD dwReason, _In_ LPVOID reserved)
 

Variables

HINSTANCE hInstance = NULL
 

Macro Definition Documentation

◆ NDEBUG

#define NDEBUG

Definition at line 10 of file storprop.c.

Function Documentation

◆ DllMain()

BOOL WINAPI DllMain ( _In_ HINSTANCE  hinstDll,
_In_ DWORD  dwReason,
_In_ LPVOID  reserved 
)

Definition at line 34 of file storprop.c.

38{
39 switch (dwReason)
40 {
43 hInstance = hinstDll;
44 break;
45
48 break;
49 }
50
51 return TRUE;
52}
DWORD dwReason
Definition: misc.cpp:154
#define NULL
Definition: types.h:112
#define TRUE
Definition: types.h:120
#define DLL_PROCESS_ATTACH
Definition: compat.h:131
#define DLL_PROCESS_DETACH
Definition: compat.h:130
BOOL WINAPI DisableThreadLibraryCalls(IN HMODULE hLibModule)
Definition: loader.c:85
HINSTANCE hInstance
Definition: storprop.c:13

◆ VolumePropPageProvider()

BOOL WINAPI VolumePropPageProvider ( _In_ PSP_PROPSHEETPAGE_REQUEST  lpPropSheetPageRequest,
_In_ LPFNADDPROPSHEETPAGE  lpfnAddPropSheetPageProc,
_In_ LPARAM  lParam 
)

Definition at line 21 of file storprop.c.

25{
26 DPRINT("VolumePropPageProvider(%p %p %lx)\n",
27 lpPropSheetPageRequest, lpfnAddPropSheetPageProc, lParam);
28 return FALSE;
29}
LPARAM lParam
Definition: combotst.c:139
#define FALSE
Definition: types.h:117
#define DPRINT
Definition: sndvol32.h:71

Variable Documentation

◆ hInstance

HINSTANCE hInstance = NULL

Definition at line 13 of file storprop.c.

Referenced by DllMain().