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.
59 lines
815 B
59 lines
815 B
/*++
|
|
|
|
Copyright (c) 1998-1999 Microsoft Corporation
|
|
All rights reserved.
|
|
|
|
Module Name:
|
|
|
|
dbginit.hxx
|
|
|
|
Abstract:
|
|
|
|
Debug initlaization header file
|
|
|
|
Author:
|
|
|
|
Steve Kiraly (SteveKi) 24-May-1998
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
#ifndef _DBGINIT_HXX_
|
|
#define _DBGINIT_HXX_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
VOID
|
|
DebugLibraryInitialize(
|
|
VOID
|
|
);
|
|
|
|
VOID
|
|
DebugLibraryRelease(
|
|
VOID
|
|
);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
/********************************************************************
|
|
|
|
Debug message macros.
|
|
|
|
********************************************************************/
|
|
#if DBG
|
|
|
|
#define DBG_INIT() DebugLibraryInitialize();
|
|
#define DBG_RELEASE() DebugLibraryRelease();
|
|
|
|
#else
|
|
|
|
#define DBG_INIT() // Empty
|
|
#define DBG_RELEASE() // Empty
|
|
|
|
#endif // DBG
|
|
|
|
#endif // _DBGINIT_HXX_
|