You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
602 B
31 lines
602 B
//========= Copyright 1996-2005, Valve Corporation, All rights reserved. ============// |
|
// |
|
// Purpose: |
|
// |
|
// $NoKeywords: $ |
|
// |
|
//=============================================================================// |
|
|
|
#ifndef WINLITE_H |
|
#define WINLITE_H |
|
#pragma once |
|
|
|
#ifdef _WIN32 |
|
// |
|
// Prevent tons of unused windows definitions |
|
// |
|
#define WIN32_LEAN_AND_MEAN |
|
#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 |
|
|
|
#endif // WIN32 |
|
#endif // WINLITE_H
|
|
|