This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
2020-08-04 13:13:01 -04:00

37 lines
760 B
C

//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//
//=============================================================================//
#ifndef WINLITE_H
#define WINLITE_H
#pragma once
#ifdef _WIN32
//
// Prevent tons of unused windows definitions
//
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#endif
#define NOWINRES
#define NOSERVICE
#define NOMCX
#define NOIME
#if !defined(_X360)
#pragma warning(push, 1)
#pragma warning(disable : 4005)
#include <windows.h>
#pragma warning(pop)
#endif
#undef PostMessage
#pragma warning(disable : 4800) // forcing value to bool 'true' or 'false'
// (performance warning)
#endif // WIN32
#endif // WINLITE_H