mirror of
https://github.com/libretro/beetle-psx-libretro.git
synced 2024-11-23 16:59:49 +00:00
18 lines
229 B
C
18 lines
229 B
C
#ifndef __LIBRETRO_CBS_H
|
|
#define __LIBRETRO_CBS_H
|
|
|
|
#include "libretro.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern retro_video_refresh_t video_cb;
|
|
extern retro_environment_t environ_cb;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|