Decomp __register_global_object

This commit is contained in:
Aetias
2024-04-20 13:09:19 +02:00
parent a4330e37e9
commit cd26802eaf
36 changed files with 4708 additions and 4638 deletions
@@ -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);