mirror of
https://github.com/libretro/Mesen.git
synced 2024-12-14 04:48:42 +00:00
44 lines
749 B
C++
44 lines
749 B
C++
#pragma once
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdint.h>
|
|
#include <memory>
|
|
|
|
#include <iostream>
|
|
#include <iomanip>
|
|
#include <fstream>
|
|
#include <string>
|
|
#include <cctype>
|
|
#include <memory>
|
|
#include <vector>
|
|
#include <array>
|
|
#include <sstream>
|
|
#include <list>
|
|
#include <atomic>
|
|
|
|
#include "../Utilities/UTF8Util.h"
|
|
|
|
#ifdef __clang__
|
|
#define __forceinline __attribute__((always_inline))
|
|
#else
|
|
#ifdef __GNUC__
|
|
#define __forceinline
|
|
#endif
|
|
#endif
|
|
|
|
using std::vector;
|
|
using std::shared_ptr;
|
|
using std::unique_ptr;
|
|
using std::ios;
|
|
using std::istream;
|
|
using std::ostream;
|
|
using std::stringstream;
|
|
using utf8::ifstream;
|
|
using utf8::ofstream;
|
|
using std::list;
|
|
using std::max;
|
|
using std::string;
|
|
using std::atomic_flag;
|
|
using std::atomic;
|