- Fix wmi and drmk entry points.
- Don't use both reactos and wine debug headers in iphlpapi. Fixes the macro redefinition warnings.

svn path=/branches/cmake-bringup/; revision=50353
This commit is contained in:
Amine Khaldi 2011-01-10 20:59:17 +00:00
parent 9790b02502
commit 5962942907
5 changed files with 2 additions and 9 deletions

View file

@ -12,9 +12,6 @@
#include "dhcpcapi.h"
#include <assert.h>
#define NDEBUG
#include "debug.h"
DWORD APIENTRY DhcpRosGetAdapterInfo(DWORD AdapterIndex,
PBOOL DhcpEnabled,
PDWORD DhcpServer,

View file

@ -40,9 +40,6 @@
#include "ifenum.h"
#include <assert.h>
//#define NDEBUG
#include "debug.h"
WINE_DEFAULT_DEBUG_CHANNEL(iphlpapi);
/* Functions */

View file

@ -1,7 +1,5 @@
#include "iphlpapi_private.h"
#include "debug.h"
int GetLongestChildKeyName( HANDLE RegHandle ) {
LONG Status;
DWORD MaxAdapterName;

View file

@ -11,6 +11,7 @@ list(APPEND SOURCE
add_library(drmk SHARED ${SOURCE})
set_module_type(drmk kernelmodedriver)
set_entrypoint(drmk 0)
add_importlibs(drmk ntoskrnl)
add_importlib_target(drmk.spec drmk.sys)

View file

@ -9,7 +9,7 @@ list(APPEND SOURCE
add_library(wmilib SHARED ${SOURCE})
set_module_type(wmilib kernelmodedriver)
set_entrypoint(wmilib 0)
add_importlibs(wmilib ntoskrnl)
add_importlib_target(wmilib.spec wmilib.sys)