Files
2024-04-13 15:29:53 +02:00

13 lines
277 B
Plaintext

LibraryUpdate :: typedef proc(event: LibraryEvent, mu: *MU_Context, context: *DLL_Context);
LibraryEvent :: typedef int;
Init :: 0;
Reload :: ^;
Unload :: ^;
Update :: ^;
DLL_Context :: struct {
temp: *MA_Arena;
perm: MA_Arena;
context: *void;
}