Fix CXX_BUILD.

This commit is contained in:
Themaister 2013-04-28 02:01:25 +02:00
parent ecbda2497c
commit d70a7df8ae
2 changed files with 8 additions and 1 deletions

View file

@ -411,7 +411,6 @@ uninstall:
clean:
rm -f *.o
rm -f frontend/menu/*.o
rm -f frontend/menu/utils/*.o
rm -f audio/*.o
rm -f conf/*.o
rm -f gfx/*.o

View file

@ -18,6 +18,10 @@
#include <stddef.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct rom_history rom_history_t;
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 *core_name);
#ifdef __cplusplus
}
#endif
#endif