Mesen-X/Core/stdafx.h

38 lines
648 B
C
Raw Normal View History

2014-06-10 16:58:37 -04:00
// stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently, but
// are changed infrequently
//
#pragma once
#include "targetver.h"
#include <stdio.h>
#include <tchar.h>
#include <stdint.h>
#include <memory>
#include <iostream>
2014-06-17 18:16:49 -04:00
#include <iomanip>
2014-06-10 16:58:37 -04:00
#include <fstream>
#include <string>
#include <memory>
#include <thread>
2014-06-13 23:12:56 -04:00
#include <vector>
2014-06-14 11:27:55 -04:00
#include <array>
2014-06-14 18:20:56 -04:00
#include <sstream>
2014-06-10 16:58:37 -04:00
#include <atomic>
2014-06-10 16:58:37 -04:00
#include <windows.h>
2014-06-14 11:27:55 -04:00
using std::vector;
using std::shared_ptr;
using std::unique_ptr;
using std::ios;
using std::ifstream;
using std::wstring;
using std::exception;
using std::atomic;