30 lines
389 B
C++
30 lines
389 B
C++
/*++
|
|
|
|
Copyright (c) 1998-1999 Microsoft Corporation
|
|
All rights reserved.
|
|
|
|
Module Name:
|
|
|
|
dbgns.hxx
|
|
|
|
Abstract:
|
|
|
|
Debug Library namspace header
|
|
|
|
Author:
|
|
|
|
Steve Kiraly (SteveKi) 7-May-1997
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
#ifndef _DBGNS_HXX_
|
|
#define _DBGNS_HXX_
|
|
|
|
#define DEBUG_NS NDebug
|
|
#define DEBUG_NS_BEGIN namespace DEBUG_NS {
|
|
#define DEBUG_NS_END }
|
|
|
|
#endif // _DBGNS_HXX_
|
|
|