feat(profile): more bc routines

This commit is contained in:
phaneron 2025-03-06 16:40:31 -05:00
parent 1e6fb307de
commit fb267a5683
35 changed files with 818 additions and 2959 deletions

View file

@ -3,12 +3,12 @@
#include "system/types.h"
#if !defined(DECLARE_HANDLE)
#define DECLARE_HANDLE(name) \
typedef struct name##__ { \
#define DECLARE_HANDLE(I) \
typedef struct I##__ I##__; \
struct I##__ { \
int32_t unused; \
}* name
#endif
}; \
typedef I##__* I
DECLARE_STRUCT(CHandleObject);