mirror of
https://github.com/libretro/Mesen.git
synced 2024-11-24 01:29:41 +00:00
39 lines
669 B
C++
39 lines
669 B
C++
// 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>
|
|
#include <iomanip>
|
|
#include <fstream>
|
|
#include <string>
|
|
#include <memory>
|
|
#include <thread>
|
|
#include <vector>
|
|
#include <array>
|
|
#include <sstream>
|
|
|
|
#include <atomic>
|
|
|
|
#include <windows.h>
|
|
|
|
using std::vector;
|
|
using std::shared_ptr;
|
|
using std::unique_ptr;
|
|
using std::ios;
|
|
using std::ifstream;
|
|
using std::ofstream;
|
|
using std::wstring;
|
|
using std::exception;
|
|
using std::atomic;
|