2016-05-25 16:14:19 +00:00
|
|
|
#ifndef __LIBRETRO_CBS_H
|
|
|
|
#define __LIBRETRO_CBS_H
|
|
|
|
|
2016-05-25 16:20:20 +00:00
|
|
|
#include <boolean.h>
|
|
|
|
|
2016-05-25 16:14:19 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2016-05-25 16:20:20 +00:00
|
|
|
extern bool content_is_pal;
|
2016-05-25 16:14:19 +00:00
|
|
|
extern retro_video_refresh_t video_cb;
|
2016-09-25 10:52:57 +00:00
|
|
|
extern retro_environment_t environ_cb;
|
2016-05-25 16:14:19 +00:00
|
|
|
extern uint8_t widescreen_hack;
|
|
|
|
extern uint8_t psx_gpu_upscale_shift;
|
|
|
|
|
2016-05-25 16:20:20 +00:00
|
|
|
float video_output_framerate(void);
|
|
|
|
|
2016-05-25 16:14:19 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|