mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-20 09:48:27 +00:00
Fix CXX_BUILD.
This commit is contained in:
parent
ecbda2497c
commit
d70a7df8ae
1
Makefile
1
Makefile
@ -411,7 +411,6 @@ uninstall:
|
|||||||
clean:
|
clean:
|
||||||
rm -f *.o
|
rm -f *.o
|
||||||
rm -f frontend/menu/*.o
|
rm -f frontend/menu/*.o
|
||||||
rm -f frontend/menu/utils/*.o
|
|
||||||
rm -f audio/*.o
|
rm -f audio/*.o
|
||||||
rm -f conf/*.o
|
rm -f conf/*.o
|
||||||
rm -f gfx/*.o
|
rm -f gfx/*.o
|
||||||
|
@ -18,6 +18,10 @@
|
|||||||
|
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef struct rom_history rom_history_t;
|
typedef struct rom_history rom_history_t;
|
||||||
|
|
||||||
rom_history_t *rom_history_init(const char *path, size_t size);
|
rom_history_t *rom_history_init(const char *path, size_t size);
|
||||||
@ -34,5 +38,9 @@ void rom_history_push(rom_history_t *hist,
|
|||||||
const char *path, const char *core_path,
|
const char *path, const char *core_path,
|
||||||
const char *core_name);
|
const char *core_name);
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user