initial
This commit is contained in:
31
public/winlite.h
Normal file
31
public/winlite.h
Normal file
@ -0,0 +1,31 @@
|
||||
//========= 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
|
Reference in New Issue
Block a user