mirror of
https://github.com/encounter/ph.git
synced 2026-03-30 11:34:37 -07: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);
|