mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-30 19:26:05 +00:00
[CMAKE/ROSSYM]
Implement some dummy functions for MSVC. ntoskrnl links now. svn path=/branches/cmake-bringup/; revision=51182
This commit is contained in:
+32
-1
@@ -1 +1,32 @@
|
||||
/* This file is intentionally left empty */
|
||||
|
||||
#include <ntddk.h>
|
||||
#include <reactos/rossym.h>
|
||||
|
||||
#define NDEBUG
|
||||
#include <debug.h>
|
||||
|
||||
BOOLEAN
|
||||
RosSymCreateFromFile(PVOID FileContext, PROSSYM_INFO *RosSymInfo)
|
||||
{
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
VOID
|
||||
RosSymDelete(PROSSYM_INFO RosSymInfo)
|
||||
{
|
||||
}
|
||||
|
||||
BOOLEAN
|
||||
RosSymGetAddressInformation(PROSSYM_INFO RosSymInfo,
|
||||
ULONG_PTR RelativeAddress,
|
||||
ULONG *LineNumber,
|
||||
char *FileName,
|
||||
char *FunctionName)
|
||||
{
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
VOID
|
||||
RosSymInitKernelMode(VOID)
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user