-
-
Notifications
You must be signed in to change notification settings - Fork 467
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move Windows-specific stuff to PlatformWindows.inl.
- Loading branch information
nitrocaster
committed
Jan 17, 2016
1 parent
a351b08
commit 0c54b40
Showing
7 changed files
with
49 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Empty file.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers | ||
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers | ||
#define IDIRECTPLAY2_OR_GREATER // ? | ||
#define DIRECTINPUT_VERSION 0x0800 // | ||
#define _CRT_SECURE_NO_DEPRECATE // vc8.0 stuff, don't deprecate several ANSI functions | ||
|
||
#ifndef _WIN32_WINNT | ||
#define _WIN32_WINNT 0x0501 | ||
#endif | ||
|
||
#define NOGDICAPMASKS | ||
//#define NOSYSMETRICS | ||
#define NOMENUS | ||
#define NOICONS | ||
#define NOKEYSTATES | ||
#define NODRAWTEXT | ||
#define NOMEMMGR | ||
#define NOMETAFILE | ||
#define NOSERVICE | ||
#define NOCOMM | ||
#define NOHELP | ||
#define NOPROFILER | ||
#define NOMCX | ||
#define NOMINMAX | ||
#define DOSWIN32 | ||
#define _WIN32_DCOM | ||
|
||
#pragma warning(push) | ||
#pragma warning(disable:4005) // macro redefinition | ||
#include <windows.h> | ||
#include <windowsx.h> | ||
#pragma warning(pop) |