mirror of
https://github.com/reactos/reactos.git
synced 2025-07-23 11:23:49 +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:
parent
0d3a397198
commit
cabc5ed079
1 changed files with 32 additions and 1 deletions
|
@ -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)
|
||||
{
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue