aboutsummaryrefslogblamecommitdiff
path: root/src/syslua/lx/protodef.lua
blob: f7f3fc01a37b32b835cd72c7e5a3d342a209236b (plain) (tree)




























                                                  
local protodef = {
	mouse_event = {
		-- common/include/proto/mouse.h
		fmt = 'hhbBBB',
		len = 8
	},
	kbd_event = {
		-- common/include/proto/keyboard.h
		fmt = 'HH',
		len = 4
	},
	token = {
		-- common/include/proto/token.h
		fmt = 'c16',
		len = 16
	}
}

-- common/include/proto/fb.h
protodef.fb_info = {
	fmt = 'lllll',
	len = 20
}
protodef.fb_region = {
	fmt = 'llll',
	len = 16
}

return protodef