Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

40 lines
468 B

#ifndef _INFDBG_
#define _INFDBG_
#if DEVL
VOID
SdAtNewLine(
IN UINT Line
);
VOID
SdTracingOn(
VOID
);
VOID
SdBreakNow(
VOID
);
#else
#define SdInit()
#define SdAtNewLine(Line)
#define SdTracingOn()
#define SdBreakNow()
#endif // DEVL
BOOL
SdpReconstructLine(
IN PINFLINE MasterLineArray,
IN UINT MasterLineCount,
IN UINT Line,
OUT PUCHAR Buffer,
IN UINT BufferSize
);
#endif // def _INFDBG_