mirror of
https://github.com/libretro/bsnes-libretro.git
synced 2024-11-30 20:40:53 +00:00
94b2538af5
byuu says: Basically just a project rename, with s/bsnes/higan and the new icon from lowkee added in. It won't compile on Windows because I forgot to update the resource.rc file, and a path transform command isn't working on Windows. It was really just meant as a starting point, so that v091 WIPs can flow starting from .00 with the new name (it overshadows bsnes v091, so publicly speaking this "shouldn't exist" and will probably be deleted from Google Code when v092 is ready.)
27 lines
603 B
C++
Executable File
27 lines
603 B
C++
Executable File
#ifndef NALL_STREAM_HPP
|
|
#define NALL_STREAM_HPP
|
|
|
|
#include <algorithm>
|
|
#include <memory>
|
|
|
|
#include <nall/file.hpp>
|
|
#include <nall/filemap.hpp>
|
|
#include <nall/gzip.hpp>
|
|
#include <nall/http.hpp>
|
|
#include <nall/stdint.hpp>
|
|
#include <nall/string.hpp>
|
|
#include <nall/zip.hpp>
|
|
|
|
#define NALL_STREAM_INTERNAL_HPP
|
|
#include <nall/stream/stream.hpp>
|
|
#include <nall/stream/memory.hpp>
|
|
#include <nall/stream/mmap.hpp>
|
|
#include <nall/stream/file.hpp>
|
|
#include <nall/stream/http.hpp>
|
|
#include <nall/stream/gzip.hpp>
|
|
#include <nall/stream/zip.hpp>
|
|
#include <nall/stream/auto.hpp>
|
|
#undef NALL_STREAM_INTERNAL_HPP
|
|
|
|
#endif
|