[MMIXER] Fix additional data size initialization for different audio formats (#6753)
[reactos.git] / sdk / include / reactos / dll / newdevp.h
1 /*
2 * newdevp.h
3 *
4 * Private header for newdev.dll
5 *
6 */
7
8 #ifndef __NEWDEVP__H
9 #define __NEWDEVP__H
10
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
14
15 BOOL
16 WINAPI
17 DevInstallW(
18 IN HWND hWndParent,
19 IN HINSTANCE hInstance,
20 IN LPCWSTR InstanceId,
21 IN INT Show);
22
23 BOOL
24 WINAPI
25 InstallDevInst(
26 IN HWND hWndParent,
27 IN LPCWSTR InstanceId,
28 IN BOOL bUpdate,
29 OUT LPDWORD lpReboot);
30
31 BOOL
32 WINAPI
33 InstallDevInstEx(
34 IN HWND hWndParent,
35 IN LPCWSTR InstanceId,
36 IN BOOL bUpdate,
37 OUT LPDWORD lpReboot,
38 IN DWORD Unknown);
39
40 #ifdef __cplusplus
41 }
42 #endif
43
44 #endif /* __NEWDEVP__H */