v/vlib/sokol/sapp/sapp_allocator_and_logger.c.v

18 lines
321 B
V

module sapp
import sokol.memory
@[typedef]
pub struct C.sapp_allocator {
pub mut:
alloc_fn memory.FnAllocatorAlloc = unsafe { nil }
free_fn memory.FnAllocatorFree = unsafe { nil }
user_data voidptr
}
@[typedef]
pub struct C.sapp_logger {
pub mut:
func memory.FnLogCb = unsafe { nil }
user_data voidptr
}