mirror of
https://github.com/CTR-tools/CTR-ModSDK.git
synced 2024-11-30 08:50:33 +00:00
13 lines
213 B
C
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); |