mirror of https://github.com/tongzx/nt5src
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
23 lines
321 B
// t120dbg.cpp
|
|
|
|
#include "precomp.h"
|
|
|
|
#ifdef _DEBUG
|
|
|
|
#define INIT_DBG_ZONE_DATA
|
|
#include "fsdiag.h"
|
|
|
|
|
|
VOID T120DiagnosticCreate(VOID)
|
|
{
|
|
MLZ_DbgInit((PSTR *) &c_apszDbgZones[0],
|
|
(sizeof(c_apszDbgZones) / sizeof(c_apszDbgZones[0])) - 1);
|
|
}
|
|
|
|
VOID T120DiagnosticDestroy(VOID)
|
|
{
|
|
MLZ_DbgDeInit();
|
|
}
|
|
|
|
#endif /* _DEBUG */
|
|
|