CTR-ModSDK/include/namespace_JitPool.h
2023-05-24 20:02:46 -04:00

13 lines
213 B
C

// complete struct
struct JitPool
{
struct LinkedList free;
struct LinkedList taken;
int maxItems;
unsigned int itemSize;
int poolSize;
void* ptrPoolData;
};
_Static_assert(sizeof(struct JitPool) == 0x28);