Files
BlitzNext/gxruntime/std.h
T
Michael Fabain Dirks b75ca4142c x
2016-05-04 09:58:44 +02:00

31 lines
485 B
C++

#ifndef STD_H
#define STD_H
#include "../fmodapi375win/api/inc/fmod.h"
#include "../config/config.h"
#include "../stdutil/stdutil.h"
#pragma warning( disable:4786 )
#define DIRECTSOUND_VERSION 0x700
#define DIRECTINPUT_VERSION 0x700
#include <set>
#include <map>
#include <list>
#include <string>
#include <vector>
#include <fstream>
#include <iostream>
#include <math.h>
#include <windows.h>
#include <ddraw.h>
#include <dinput.h>
#include <d3d.h>
using namespace std;
#endif