10 lines
266 B
C
10 lines
266 B
C
//================= Copyright kotofyt, All rights reserved ==================//
|
|
// Purpose: Disables min and max. Used for C++ interoperability
|
|
//===========================================================================//
|
|
|
|
|
|
#ifdef min
|
|
#undef min
|
|
#undef max
|
|
#endif
|