17 lines
278 B
C
17 lines
278 B
C
|
#pragma once
|
||
|
|
||
|
// windbg.h
|
||
|
// 1/27/2013 jichi
|
||
|
|
||
|
#ifndef WINDBG_BEGIN_NAMESPACE
|
||
|
# define WINDBG_BEGIN_NAMESPACE namespace WinDbg {
|
||
|
#endif
|
||
|
#ifndef WINDBG_END_NAMESPACE
|
||
|
# define WINDBG_END_NAMESPACE } // namespace WinDbg
|
||
|
#endif
|
||
|
|
||
|
WINDBG_BEGIN_NAMESPACE
|
||
|
WINDBG_END_NAMESPACE
|
||
|
|
||
|
// EOF
|