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 WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
16// Windows Header Files
17#include <windows.h>
18
19#include <cassert>
20
21#include <iostream>
22#include <sstream>
23#include <cassert>
24
25#define DBOUT( s ) \
26{ \
27 std::ostringstream os_; \
28 os_ << s; \
29 OutputDebugStringA( os_.str().c_str() ); \
30}
31
32// reference additional headers your program requires here