mirror of
https://github.com/libretro/RetroArch.git
synced 2024-12-13 20:33:22 +00:00
28 lines
478 B
C
28 lines
478 B
C
#ifndef RGLGEN_H__
|
|
#define RGLGEN_H__
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include "rglgen_headers.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct rglgen_sym_map;
|
|
|
|
typedef void (*rglgen_func_t)(void);
|
|
typedef rglgen_func_t (*rglgen_proc_address_t)(const char*);
|
|
void rglgen_resolve_symbols(rglgen_proc_address_t proc);
|
|
void rglgen_resolve_symbols_custom(rglgen_proc_address_t proc,
|
|
const struct rglgen_sym_map *map);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|