Files
ph/libs/cpp/include/global_destructor_chain.h
2024-10-12 16:16:32 +02: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);