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

  1. #ifndef _INFDBG_
  2. #define _INFDBG_
  3. #if DEVL
  4. VOID
  5. SdAtNewLine(
  6. IN UINT Line
  7. );
  8. VOID
  9. SdTracingOn(
  10. VOID
  11. );
  12. VOID
  13. SdBreakNow(
  14. VOID
  15. );
  16. #else
  17. #define SdInit()
  18. #define SdAtNewLine(Line)
  19. #define SdTracingOn()
  20. #define SdBreakNow()
  21. #endif // DEVL
  22. BOOL
  23. SdpReconstructLine(
  24. IN PINFLINE MasterLineArray,
  25. IN UINT MasterLineCount,
  26. IN UINT Line,
  27. OUT PUCHAR Buffer,
  28. IN UINT BufferSize
  29. );
  30. #endif // def _INFDBG_