mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
fix compile with msvc
svn path=/trunk/; revision=18605
This commit is contained in:
parent
79c52cf8f8
commit
27cc2b7d94
2 changed files with 4 additions and 4 deletions
|
@ -12,7 +12,9 @@
|
||||||
#include <commctrl.h>
|
#include <commctrl.h>
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#include <commctrl.h>
|
#include <commctrl.h>
|
||||||
|
#if defined (__GNUC__)
|
||||||
|
#include <winioctl.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
/* FIXME: should be in cfgmgr32.h */
|
/* FIXME: should be in cfgmgr32.h */
|
||||||
typedef DWORD CONFIGRET;
|
typedef DWORD CONFIGRET;
|
||||||
|
@ -342,9 +344,6 @@ int ListByInterface(const GUID* guid)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
DEFINE_GUID(GUID_DEVINTERFACE_SERENUM_BUS_ENUMERATOR,
|
|
||||||
0x4D36E978L, 0xE325, 0x11CE, 0xBF, 0xC1, 0x08, 0x00, 0x2B, 0xE1, 0x03, 0x18);
|
|
||||||
|
|
||||||
/*int main(void)
|
/*int main(void)
|
||||||
{
|
{
|
||||||
ListByClass();
|
ListByClass();
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
<module name="devmgr" type="win32cui" installbase="system32" installname="devmgr.exe">
|
<module name="devmgr" type="win32cui" installbase="system32" installname="devmgr.exe">
|
||||||
<define name="__USE_W32API" />
|
<define name="__USE_W32API" />
|
||||||
|
<define name="DEFINE_GUID" />
|
||||||
<library>ntdll</library>
|
<library>ntdll</library>
|
||||||
<library>setupapi</library>
|
<library>setupapi</library>
|
||||||
<library>gdi32</library>
|
<library>gdi32</library>
|
||||||
|
|
Loading…
Reference in a new issue