OpenTwin 0.1
OpenTwin
 
Loading...
Searching...
No Matches
stdafx.h
Go to the documentation of this file.
1// stdafx.h : include file for standard system include files,
2// or project specific include files that are used frequently, but
3// are changed infrequently
4//
5
6#pragma once
7
8// Including SDKDDKVer.h defines the highest available Windows platform.
9
10// If you wish to build your application for a previous Windows platform, include WinSDKVer.h and
11// set the _WIN32_WINNT macro to the platform you wish to support before including SDKDDKVer.h.
12
13#include <SDKDDKVer.h>
14
15#define _USE_MATH_DEFINES
16#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
17// Windows Header Files
18#include <windows.h>
19
20#include <iostream>
21#include <sstream>
22
23#include <cassert>
24
25#pragma warning(disable:4996)
26
27#define DBOUT( s ) \
28{ \
29 std::ostringstream os_; \
30 os_ << s; \
31 OutputDebugStringA( os_.str().c_str() ); \
32}
33
34// reference additional headers your program requires here