28 lines
527 B
C++
28 lines
527 B
C++
#ifndef __FISHBONE_MACHDEP_H__
|
|
#define __FISHBONE_MACHDEP_H__
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
#include <fstream>
|
|
#include <functional>
|
|
|
|
#include <cstdio>
|
|
#include <cstring>
|
|
#include <cmath>
|
|
|
|
#include <fishbone/config.h>
|
|
|
|
#ifdef _FISHBONE
|
|
#if defined(FISHBONE_AUDIO_USE_SDL2) || defined(FISHBONE_WINDOW_USE_SDL2) || defined(FISHBONE_THREAD_USE_SDL2)
|
|
#include <SDL.h>
|
|
#endif
|
|
|
|
#define STB_VORBIS_HEADER_ONLY
|
|
#include <xmp.h>
|
|
#include <dr_mp3.h>
|
|
#include <dr_wav.h>
|
|
#include <dr_flac.h>
|
|
#include <stb_vorbis.c>
|
|
#endif
|
|
|
|
#endif
|