Files
BlitzNext/gxruntime/std.h
T
blitz-research e89e08f35c Updated projects.
2014-01-31 08:40:15 +13:00

31 lines
474 B
C++

#ifndef STD_H
#define STD_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>
#include "../../fmod375/fmod.h"
using namespace std;
#endif