-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathStdAfx.h
30 lines (23 loc) · 831 Bytes
/
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
//--------------------------------------------------------------------------------------
// DirectX Texture Tool (dxtex.exe)
//
// File: stdafx.h
//
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
//--------------------------------------------------------------------------------------
#pragma once
#define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
#ifndef WINVER
#define WINVER 0x0601
#endif
#include <cstdint>
#include <afxwin.h> // MFC core and standard components
#include <afxext.h> // MFC extensions
#include <winver.h>
#include <basetsd.h>
#include <d3d9.h>
#include <d3dx9.h>
#include <strsafe.h>
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.