mirror of
https://github.com/encounter/ogws.git
synced 2026-03-30 11:33:37 -07:00
18 lines
334 B
C
18 lines
334 B
C
#ifndef RUNTIME_GECKO_EXCEPTION_PPC_H
|
|
#define RUNTIME_GECKO_EXCEPTION_PPC_H
|
|
#include <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
|