mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-06-17 06:05:35 -04:00
4df8ccc871
* Reorganize files into libs/{dolphin,JSystem,PowerPC_EABI_Support,revolution,TRK_MINNOW_DOLPHIN}
* Update configure.py and project.py for new libs structure
* Refactor `#include <dolphin/x.h>` -> `<x.h>`
* Remove `__REVOLUTION_SDK__` forwards from dolphin
* Fix dolphin/ references in revolution
* Wrap `#include <dolphin.h>` in `!__REVOLUTION_SDK__`
* Always build TRK against dolphin headers
* Resolve revolution SDK header resolution issues
29 lines
593 B
C
29 lines
593 B
C
#ifndef NMWEXCEPTION_H
|
|
#define NMWEXCEPTION_H
|
|
|
|
#include "__ppc_eabi_linker.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef short vbase_ctor_arg_type;
|
|
typedef char local_cond_type;
|
|
|
|
typedef struct DestructorChain {
|
|
struct DestructorChain* next;
|
|
void* destructor;
|
|
void* object;
|
|
} DestructorChain;
|
|
|
|
void __unregister_fragment(int fragmentID);
|
|
int __register_fragment(struct __eti_init_info* info, char* TOC);
|
|
void* __register_global_object(void* object, void* destructor, void* regmem);
|
|
void __destroy_global_chain(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* NMWEXCEPTION_H */
|