Display the resource page in device properties

svn path=/trunk/; revision=29238
This commit is contained in:
Thomas Bluemel 2007-09-27 05:51:08 +00:00
parent 8ecd472083
commit f64ff394df
2 changed files with 2 additions and 21 deletions

View file

@ -87,7 +87,7 @@ OpenPropSheet(HWND hTreeView,
DevicePropertiesExW(hTreeView,
NULL,
(LPTSTR)tvItem.lParam,
0,
DPF_EXTENDED,
FALSE);
}

View file

@ -9,6 +9,7 @@
#include <setupapi.h>
#include <cfgmgr32.h>
#include <commctrl.h>
#include <dll/devmgr/devmgr.h>
#include "resource.h"
#ifdef _MSC_VER
@ -53,26 +54,6 @@ HWND CreateMainWindow(LPCTSTR lpCaption, int nCmdShow);
/* enumdevices.c */
// undocumented API's from devmgr
#ifdef _UNICODE
#define DevicePropertiesEx DevicePropertiesExW
INT_PTR
WINAPI
DevicePropertiesExW(IN HWND hWndParent OPTIONAL,
IN LPCWSTR lpMachineName OPTIONAL,
IN LPCWSTR lpDeviceID OPTIONAL,
IN DWORD dwFlags OPTIONAL,
IN BOOL bShowDevMgr);
#else
#define DevicePropertiesEx DevicePropertiesExA
INT_PTR
WINAPI
DevicePropertiesExA(IN HWND hWndParent OPTIONAL,
IN LPCSTR lpMachineName OPTIONAL,
IN LPCSTR lpDeviceID OPTIONAL,
IN DWORD dwFlags OPTIONAL,
IN BOOL bShowDevMgr);
#endif
VOID FreeDeviceStrings(HWND hTreeView);
VOID OpenPropSheet(HWND hTreeView, HTREEITEM hItem);