scenewalker-libretro/shared.hpp
twinaphex f556aece5f (PS3) (Probably futile) attempt to get something going with GL ES 1.x
based PSGL - needs separate shader.cpp implementation
2013-05-18 04:39:12 +02:00

22 lines
346 B
C++

#ifndef SHARED_HPP__
#define SHARED_HPP__
#ifdef _MSC_VER
#include <memory>
#define snprintf _snprintf
#else
#include <tr1/memory>
#endif
#if defined(__QNX__) || defined(__CELLOS_LV2__)
namespace std1 = compat;
#else
namespace std1 = std::tr1;
#endif
void retro_stderr(const char *str);
void retro_stderr_print(const char *fmt, ...);
#endif