mirror of
https://github.com/libretro/Play-.git
synced 2024-11-28 03:00:49 +00:00
29 lines
496 B
Plaintext
29 lines
496 B
Plaintext
//
|
|
// Prefix header for all source files of the 'Purei' target in the 'Purei' project
|
|
//
|
|
|
|
#ifdef __OBJC__
|
|
#import "Types.h"
|
|
#import <Cocoa/Cocoa.h>
|
|
#else
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <assert.h>
|
|
|
|
#include <stdexcept>
|
|
#include <algorithm>
|
|
#include <functional>
|
|
#include <string>
|
|
#include <list>
|
|
#include <vector>
|
|
#include <deque>
|
|
#include <unordered_map>
|
|
#include <memory>
|
|
#include <map>
|
|
|
|
#include <boost/signals2.hpp>
|
|
#include <boost/lexical_cast.hpp>
|
|
#endif
|
|
|
|
|