mirror of
https://github.com/libretro/RetroArch
synced 2025-02-01 00:32:46 +00:00
22 lines
435 B
C
22 lines
435 B
C
#ifndef DRIVER_MENU_BACKEND_H__
|
|
#define DRIVER_MENU_BACKEND_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct menu_ctx_driver_backend
|
|
{
|
|
int (*iterate)(unsigned);
|
|
unsigned (*type_is)(const char *, unsigned);
|
|
void (*setting_set_label)(char *, size_t, unsigned *,
|
|
unsigned, const char *, const char *, unsigned);
|
|
const char *ident;
|
|
} menu_ctx_driver_backend_t;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|