Files
st/libs/cpp/include/global_destructor_chain.h
T
2025-02-14 01:36:34 +01:00

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);