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.

23 lines
321 B

  1. // t120dbg.cpp
  2. #include "precomp.h"
  3. #ifdef _DEBUG
  4. #define INIT_DBG_ZONE_DATA
  5. #include "fsdiag.h"
  6. VOID T120DiagnosticCreate(VOID)
  7. {
  8. MLZ_DbgInit((PSTR *) &c_apszDbgZones[0],
  9. (sizeof(c_apszDbgZones) / sizeof(c_apszDbgZones[0])) - 1);
  10. }
  11. VOID T120DiagnosticDestroy(VOID)
  12. {
  13. MLZ_DbgDeInit();
  14. }
  15. #endif /* _DEBUG */