ReactOS 0.4.15-dev-7958-gcd0bb1a
storprop.c
Go to the documentation of this file.
1/*
2 * PROJECT: ReactOS system libraries
3 * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
4 * PURPOSE: Storage device properties
5 * COPYRIGHT: 2020 Eric Kohl (eric.kohl@reactos.org)
6 */
7
8#include "precomp.h"
9
10#define NDEBUG
11#include <debug.h>
12
14
15
16/*
17 * @implemented
18 */
19BOOL
22 _In_ PSP_PROPSHEETPAGE_REQUEST lpPropSheetPageRequest,
23 _In_ LPFNADDPROPSHEETPAGE lpfnAddPropSheetPageProc,
25{
26 DPRINT("VolumePropPageProvider(%p %p %lx)\n",
27 lpPropSheetPageRequest, lpfnAddPropSheetPageProc, lParam);
28 return FALSE;
29}
30
31
32BOOL
35 _In_ HINSTANCE hinstDll,
38{
39 switch (dwReason)
40 {
43 hInstance = hinstDll;
44 break;
45
48 break;
49 }
50
51 return TRUE;
52}
53
54/* EOF */
DWORD dwReason
Definition: misc.cpp:154
LPARAM lParam
Definition: combotst.c:139
#define NULL
Definition: types.h:112
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
#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
r reserved
Definition: btrfs.c:3006
unsigned int BOOL
Definition: ntddk_ex.h:94
unsigned long DWORD
Definition: ntddk_ex.h:95
#define _In_
Definition: ms_sal.h:308
BOOL(CALLBACK * LPFNADDPROPSHEETPAGE)(HPROPSHEETPAGE, LPARAM)
Definition: prsht.h:327
#define DPRINT
Definition: sndvol32.h:71
HINSTANCE hInstance
Definition: storprop.c:13
BOOL WINAPI VolumePropPageProvider(_In_ PSP_PROPSHEETPAGE_REQUEST lpPropSheetPageRequest, _In_ LPFNADDPROPSHEETPAGE lpfnAddPropSheetPageProc, _In_ LPARAM lParam)
Definition: storprop.c:21
BOOL WINAPI DllMain(_In_ HINSTANCE hinstDll, _In_ DWORD dwReason, _In_ LPVOID reserved)
Definition: storprop.c:34
LONG_PTR LPARAM
Definition: windef.h:208
#define WINAPI
Definition: msvc.h:6