v/vlib/sokol/sgl/sgl_allocator_and_logger.c.v
2023-08-03 21:06:36 +03:00

18 lines
320 B
V

module sgl
import sokol.memory
[typedef]
pub struct C.sgl_allocator_t {
pub mut:
alloc memory.FnAllocatorAlloc = unsafe { nil }
free memory.FnAllocatorFree = unsafe { nil }
user_data voidptr
}
[typedef]
pub struct C.sgl_logger_t {
pub mut:
log_cb memory.FnLogCb = unsafe { nil }
user_data voidptr
}