-
Notifications
You must be signed in to change notification settings - Fork 1
/
stdafx.h
41 lines (33 loc) · 1.39 KB
/
stdafx.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/************************************************************************
* *
* stdafx.h -- include file for standard system and project includes *
* *
* Copyright (c) Microsoft Corp. All rights reserved. *
* *
* This code is licensed under the terms of the *
* Microsoft Kinect for Windows SDK (Beta) *
* License Agreement: http://kinectforwindows.org/KinectSDK-ToU *
* *
************************************************************************/
#pragma once
#include "targetver.h"
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
#define NOMINMAX
// Windows Header Files:
#include <afxwin.h>
#include <ole2.h>
#include <atlstr.h>
#include <atltime.h>
// C RunTime Header Files
#include <stdlib.h>
#include <malloc.h>
#include <memory.h>
#include <tchar.h>
#include <strsafe.h>
#define _USE_MATH_DEFINES
#include <math.h>
#include <mmsystem.h>
#include <assert.h>
extern TCHAR g_szAppTitle[];
#pragma comment (lib, "d3d9.lib")
#pragma comment ( lib, "winmm.lib" )