mirror of
https://github.com/zeldaret/st
synced 2026-05-23 23:05:25 -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);
|