mirror of
https://github.com/zeldaret/ph
synced 2026-05-23 15:01:37 -04:00
11 lines
264 B
C
11 lines
264 B
C
#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);
|