[DEVMGMT]

- Fix devmgmt.exe to correctly build and link against devmgr.dll
- This is a temp exe that just calls DeviceManager_ExecuteW. This will later be replaced by mmc.exe and devmgmt.msc

svn path=/trunk/; revision=69334
This commit is contained in:
Ged Murphy 2015-09-23 20:30:32 +00:00
parent a8867c885d
commit d77d1a8911
3 changed files with 5 additions and 2 deletions

View file

@ -1,4 +1,8 @@
set_cpp(WITH_RTTI WITH_RUNTIME)
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/dll)
list(APPEND SOURCE
devmgmt.cpp)

View file

@ -1,7 +1,7 @@
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <cfgmgr32.h>
#include <dll\devmgr\devmgr.h>
#include <devmgr\devmgr.h>
int WINAPI
wWinMain(HINSTANCE hThisInstance,
@ -16,6 +16,5 @@ wWinMain(HINSTANCE hThisInstance,
{
return GetLastError();
}
return 0;
}