mirror of
https://github.com/zeldaret/ph
synced 2026-06-09 04:29:52 -04:00
Decomp __register_global_object
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
#pragma once
|
||||
|
||||
typedef struct DestructorChain {
|
||||
/* 0 */ struct DestructorChain *next;
|
||||
/* 4 */ void *destructor;
|
||||
/* 8 */ void *object;
|
||||
/* c */
|
||||
} DestructorChain;
|
||||
|
||||
void* __register_global_object(void *object, void *destructor, DestructorChain *link);
|
||||
Reference in New Issue
Block a user