reactos/sdk/include/reactos/dll/newdevp.h
2018-10-14 18:19:52 +02:00

45 lines
601 B
C

/*
* newdevp.h
*
* Private header for newdev.dll
*
*/
#ifndef __NEWDEVP__H
#define __NEWDEVP__H
#ifdef __cplusplus
extern "C" {
#endif
BOOL
WINAPI
DevInstallW(
IN HWND hWndParent,
IN HINSTANCE hInstance,
IN LPCWSTR InstanceId,
IN INT Show);
BOOL
WINAPI
InstallDevInst(
IN HWND hWndParent,
IN LPCWSTR InstanceId,
IN BOOL bUpdate,
OUT LPDWORD lpReboot);
BOOL
WINAPI
InstallDevInstEx(
IN HWND hWndParent,
IN LPCWSTR InstanceId,
IN BOOL bUpdate,
OUT LPDWORD lpReboot,
IN DWORD Unknown);
#ifdef __cplusplus
}
#endif
#endif /* __NEWDEVP__H */