2024-05-12 20:35:20 +08:00
|
|
|
//--------------------------------------------------------------------------------------
|
|
|
|
// File: DxStdAfx.h
|
|
|
|
//
|
|
|
|
// Desc: Standard includes and precompiled headers for DXUT
|
|
|
|
//
|
|
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
//--------------------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#ifndef DXSDK_STDAFX_H
|
|
|
|
#define DXSDK_STDAFX_H
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <wchar.h>
|
|
|
|
#include <mmsystem.h>
|
|
|
|
#include <commctrl.h> // for InitCommonControls()
|
|
|
|
#include <shellapi.h> // for ExtractIcon()
|
|
|
|
#include <new.h> // for placement new
|
|
|
|
#include <math.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <multimon.h>
|
|
|
|
|
2024-05-12 22:48:50 +08:00
|
|
|
|
|
|
|
#define STRSAFE_NO_DEPRECATE
|
|
|
|
#include <strsafe.h>
|
|
|
|
|
2024-05-12 20:35:20 +08:00
|
|
|
#include "DXUTmisc.h"
|
|
|
|
|
|
|
|
#endif // !defined(DXSDK_STDAFX_H)
|