mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-11-23 14:29:52 +00:00
15 lines
221 B
C
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
|