windows-nt/Source/XPSP1/NT/base/win32/fusion/installer/includes/debmacro.h
2020-09-26 16:20:57 +08:00

15 lines
198 B
C

#if !defined(_FUSION_INC_DEBMACRO_H_INCLUDED_)
#define _FUSION_INC_DEBMACRO_H_INCLUDED_
#pragma once
#if DBG
#define ASSERT(x) if (!(x)) { DebugBreak(); }
#else
#define ASSERT(x)
#endif
#endif