mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 06:06:50 +00:00
19 lines
489 B
C
19 lines
489 B
C
//========= Copyright Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//===========================================================================//
|
|
|
|
// define windows function macros again
|
|
#ifdef UNICODE
|
|
#define PostMessage PostMessageW
|
|
#define GetClassName GetClassNameW
|
|
#define SendMessage SendMessageW
|
|
#else
|
|
#define PostMessage PostMessageA
|
|
#define GetClassName GetClassNameA
|
|
#define SendMessage SendMessageA
|
|
#endif // !UNICODE
|
|
|