mirror of
https://github.com/zeldaret/oot-vc.git
synced 2026-09-26 21:35:32 -04:00
21 lines
350 B
C
21 lines
350 B
C
#ifndef _RUNTIME_GECKO_EXCEPTION_PPC_H
|
|
#define _RUNTIME_GECKO_EXCEPTION_PPC_H
|
|
|
|
#include "revolution/types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// Forward declarations
|
|
typedef struct ExtabIndexInfo;
|
|
|
|
int __register_fragment(const struct ExtabIndexInfo* extab, void* toc);
|
|
void __unregister_fragment(int i);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|