SA-MP/saco/d3d9/common/dxstdafx.h

31 lines
807 B
C
Raw Normal View History

//--------------------------------------------------------------------------------------
// 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>
#define STRSAFE_NO_DEPRECATE
#include <strsafe.h>
#include "DXUTmisc.h"
#endif // !defined(DXSDK_STDAFX_H)