WindowsXP/base/win32/fusion/inc/fusionunused.h
2025-04-27 07:49:33 -04:00

10 lines
165 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