mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
fix a DeviceCreateHardwarePageEx call
svn path=/trunk/; revision=19552
This commit is contained in:
parent
75507318d0
commit
98c03b78e2
1 changed files with 9 additions and 2 deletions
|
@ -36,11 +36,18 @@
|
|||
#include "mmsys.h"
|
||||
#include "resource.h"
|
||||
|
||||
typedef enum
|
||||
{
|
||||
HWPD_STANDARDLIST = 0,
|
||||
HWPD_LARGELIST,
|
||||
HWPD_MAX = HWPD_LARGELIST
|
||||
} HWPAGE_DISPLAYMODE, *PHWPAGE_DISPLAYMODE;
|
||||
|
||||
HWND WINAPI
|
||||
DeviceCreateHardwarePageEx(HWND hWndParent,
|
||||
LPGUID lpGuids,
|
||||
UINT uNumberOfGuids,
|
||||
UINT Unknown);
|
||||
HWPAGE_DISPLAYMODE DisplayMode);
|
||||
|
||||
#define NUM_APPLETS (1)
|
||||
|
||||
|
@ -73,7 +80,7 @@ HardwareDlgProc(HWND hwndDlg,
|
|||
DeviceCreateHardwarePageEx(hwndDlg,
|
||||
Guids,
|
||||
sizeof(Guids) / sizeof(Guids[0]),
|
||||
1);
|
||||
HWPD_LARGELIST);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue