mirror of
https://github.com/reactos/reactos.git
synced 2025-04-20 04:20:46 +00:00
[ROSSYM_NEW]
- please, do not include debug.h from precompiled header :-/ svn path=/trunk/; revision=53240
This commit is contained in:
parent
b3a155a9d9
commit
7b68c5658a
17 changed files with 16 additions and 2 deletions
|
@ -4,6 +4,7 @@
|
||||||
|
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
#include <debug.h>
|
#include <debug.h>
|
||||||
|
#include <debug.h>
|
||||||
|
|
||||||
BOOLEAN
|
BOOLEAN
|
||||||
RosSymCreateFromFile(PVOID FileContext, PROSSYM_INFO *RosSymInfo)
|
RosSymCreateFromFile(PVOID FileContext, PROSSYM_INFO *RosSymInfo)
|
||||||
|
|
|
@ -9,6 +9,7 @@
|
||||||
#include <precomp.h>
|
#include <precomp.h>
|
||||||
|
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
|
#include <debug.h>
|
||||||
|
|
||||||
static int parseabbrevs(Dwarf*, ulong, DwarfAbbrev*, DwarfAttr*, int*, int*);
|
static int parseabbrevs(Dwarf*, ulong, DwarfAbbrev*, DwarfAttr*, int*, int*);
|
||||||
DwarfAbbrev *dwarfgetabbrev(Dwarf*, ulong, ulong);
|
DwarfAbbrev *dwarfgetabbrev(Dwarf*, ulong, ulong);
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
#include <precomp.h>
|
#include <precomp.h>
|
||||||
|
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
|
#include <debug.h>
|
||||||
|
|
||||||
int
|
int
|
||||||
dwarfaddrtounit(Dwarf *d, ulong addr, ulong *unit)
|
dwarfaddrtounit(Dwarf *d, ulong addr, ulong *unit)
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
#include <precomp.h>
|
#include <precomp.h>
|
||||||
|
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
|
#include <debug.h>
|
||||||
|
|
||||||
#define trace 1
|
#define trace 1
|
||||||
|
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
#include <precomp.h>
|
#include <precomp.h>
|
||||||
|
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
|
#include <debug.h>
|
||||||
|
|
||||||
ulong
|
ulong
|
||||||
dwarfget1(DwarfBuf *b)
|
dwarfget1(DwarfBuf *b)
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
|
|
||||||
#include <precomp.h>
|
#include <precomp.h>
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
|
#include <debug.h>
|
||||||
|
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
#include <precomp.h>
|
#include <precomp.h>
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
|
#include <debug.h>
|
||||||
|
|
||||||
/* Adapted for PE */
|
/* Adapted for PE */
|
||||||
|
|
||||||
|
|
|
@ -14,6 +14,7 @@
|
||||||
#include <precomp.h>
|
#include <precomp.h>
|
||||||
|
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
|
#include <debug.h>
|
||||||
#define trace 0
|
#define trace 0
|
||||||
|
|
||||||
enum
|
enum
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
#include <precomp.h>
|
#include <precomp.h>
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
|
#include <debug.h>
|
||||||
|
|
||||||
static int
|
static int
|
||||||
_dwarfnametounit(Dwarf *d, char *name, DwarfBlock *bl, DwarfSym *s)
|
_dwarfnametounit(Dwarf *d, char *name, DwarfBlock *bl, DwarfSym *s)
|
||||||
|
|
|
@ -38,6 +38,7 @@
|
||||||
#include <precomp.h>
|
#include <precomp.h>
|
||||||
|
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
|
#include <debug.h>
|
||||||
|
|
||||||
BOOLEAN
|
BOOLEAN
|
||||||
RosSymGetAddressInformation
|
RosSymGetAddressInformation
|
||||||
|
|
|
@ -16,6 +16,7 @@
|
||||||
|
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
#include <debug.h>
|
#include <debug.h>
|
||||||
|
#include <debug.h>
|
||||||
|
|
||||||
#include "dwarf.h"
|
#include "dwarf.h"
|
||||||
#include "pe.h"
|
#include "pe.h"
|
||||||
|
|
|
@ -14,6 +14,7 @@
|
||||||
|
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
#include <debug.h>
|
#include <debug.h>
|
||||||
|
#include <debug.h>
|
||||||
|
|
||||||
BOOLEAN
|
BOOLEAN
|
||||||
RosSymCreateFromRaw(PVOID RawData, ULONG_PTR DataSize, PROSSYM_INFO *RosSymInfo)
|
RosSymCreateFromRaw(PVOID RawData, ULONG_PTR DataSize, PROSSYM_INFO *RosSymInfo)
|
||||||
|
|
|
@ -14,6 +14,7 @@
|
||||||
|
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
#include <debug.h>
|
#include <debug.h>
|
||||||
|
#include <debug.h>
|
||||||
|
|
||||||
ULONG
|
ULONG
|
||||||
RosSymGetRawDataLength(PROSSYM_INFO RosSymInfo)
|
RosSymGetRawDataLength(PROSSYM_INFO RosSymInfo)
|
||||||
|
|
|
@ -16,6 +16,7 @@
|
||||||
|
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
#include <debug.h>
|
#include <debug.h>
|
||||||
|
#include <debug.h>
|
||||||
|
|
||||||
#define TAG_ROSSYM 'MYSR'
|
#define TAG_ROSSYM 'MYSR'
|
||||||
|
|
||||||
|
|
|
@ -14,6 +14,7 @@
|
||||||
|
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
#include <debug.h>
|
#include <debug.h>
|
||||||
|
#include <debug.h>
|
||||||
|
|
||||||
NTSTATUS RosSymStatus;
|
NTSTATUS RosSymStatus;
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
#include <precomp.h>
|
#include <precomp.h>
|
||||||
|
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
|
#include <debug.h>
|
||||||
|
|
||||||
PeSect *pesection(Pe *pe, const char *name)
|
PeSect *pesection(Pe *pe, const char *name)
|
||||||
{
|
{
|
||||||
|
|
|
@ -8,5 +8,3 @@
|
||||||
#include "rossympriv.h"
|
#include "rossympriv.h"
|
||||||
#include "pe.h"
|
#include "pe.h"
|
||||||
#include "dwarf.h"
|
#include "dwarf.h"
|
||||||
|
|
||||||
#include <debug.h>
|
|
||||||
|
|
Loading…
Reference in a new issue