SA-MP/saco/outputdebugstring.h
2024-07-22 18:26:07 +08:00

15 lines
221 B
C

#pragma once
// Ensure OutputDebugString() is disabled on release builds
#ifndef _DEBUG
#undef OutputDebugString
#define OutputDebugString(a) NULL
#undef OutputDebugStringW
#define OutputDebugStringW(a) NULL
#endif