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

10 lines
156 B
C

#pragma once
#if !defined(UNUSED)
#define UNUSED(x) x
#endif
#if DBG
#define RETAIL_UNUSED(x) /* nothing */
#else
#define RETAIL_UNUSED(x) UNUSED(x)
#endif