mirror of
https://github.com/dashr9230/SA-MP.git
synced 2025-01-07 18:13:30 +08:00
27 lines
755 B
C
27 lines
755 B
C
|
//--------------------------------------------------------------------------------------
|
||
|
// 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>
|
||
|
|
||
|
#include "DXUTmisc.h"
|
||
|
|
||
|
#endif // !defined(DXSDK_STDAFX_H)
|