module KernelAPI
# Kernel module structure (converted from module.h)
struct KernelModule
name : UInt8* # Module name (null-terminated string)
init : -> Nil # Module initialization function
uninit : -> Nil # Module cleanup function
end
end