dxstdafx.h

来自「VC游戏编程基础」· C头文件 代码 · 共 32 行

H
32
字号
//-----------------------------------------------------------------------------
// File: DxStdAfx.h
//
// Desc: Header file that is the standard includes for the DirectX SDK samples
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//-----------------------------------------------------------------------------
#if !defined(DXSDK_STDAFX_H)

#define DXSDK_STDAFX_H

#define VC_EXTRALEAN		// Exclude rarely-used stuff from Windows headers

#define STRICT
#include <windows.h>
#include <windowsx.h>
#include <mmsystem.h>
#include <stdio.h>
#include <assert.h>
#include <tchar.h>
#include <commctrl.h>
#include <D3DX9.h>

#include "DXUtil.h"
#include "D3DEnumeration.h"
#include "D3DSettings.h"
#include "D3DApp.h"
#include "D3DUtil.h"
#include "D3DRes.h"

#endif // !defined(DXSDK_STDAFX_H)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?