SA-MP/saco/outputdebugstring.h

15 lines
221 B
C
Raw Normal View History

2024-07-22 10:26:07 +00:00
#pragma once
// Ensure OutputDebugString() is disabled on release builds
#ifndef _DEBUG
#undef OutputDebugString
#define OutputDebugString(a) NULL
#undef OutputDebugStringW
#define OutputDebugStringW(a) NULL
#endif