mirror of
https://github.com/SourMesen/VisualNes.git
synced 2025-04-02 10:31:49 -04:00
24 lines
No EOL
493 B
C++
24 lines
No EOL
493 B
C++
#pragma once
|
|
#include <string>
|
|
#include <vector>
|
|
#include <unordered_map>
|
|
#include <unordered_set>
|
|
#include <memory>
|
|
#include <algorithm>
|
|
#include <fstream>
|
|
#include <sstream>
|
|
|
|
#if _MSC_VER
|
|
#define DllExport extern "C" __declspec(dllexport)
|
|
#else
|
|
#define DllExport extern "C" __attribute__((visibility("default")))
|
|
#endif
|
|
|
|
using std::vector;
|
|
using std::string;
|
|
using std::ios;
|
|
using std::shared_ptr;
|
|
using std::unordered_map;
|
|
using std::unordered_set;
|
|
using std::ifstream;
|
|
using std::ofstream; |