windows-nt/Source/XPSP1/NT/base/win32/fusion/inc/fusionunused.h

10 lines
156 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
#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