* Bring back rbuild build to be used until bug 6372 is fixed.
[reactos.git] / lib / rossym / dummy.c
1
2 #include <ntddk.h>
3 #include <reactos/rossym.h>
4
5 #define NDEBUG
6 #include <debug.h>
7
8 BOOLEAN
9 RosSymCreateFromFile(PVOID FileContext, PROSSYM_INFO *RosSymInfo)
10 {
11 return FALSE;
12 }
13
14 VOID
15 RosSymDelete(PROSSYM_INFO RosSymInfo)
16 {
17 }
18
19 BOOLEAN
20 RosSymGetAddressInformation(PROSSYM_INFO RosSymInfo,
21 ULONG_PTR RelativeAddress,
22 ULONG *LineNumber,
23 char *FileName,
24 char *FunctionName)
25 {
26 return FALSE;
27 }
28
29 VOID
30 RosSymInitKernelMode(VOID)
31 {
32 }