xref: /haiku/src/tools/gensyscalls/gensyscalls.h (revision 39241fe22890fb958b6ba32d6ab9526da98be187)
1 // gensyscalls.h
2 
3 #ifndef _GEN_SYSCALLS_H
4 #define _GEN_SYSCALLS_H
5 
6 typedef struct gensyscall_parameter_info {
7 	const char	*type;
8 	int			offset;
9 	int			size;
10 	int			actual_size;
11 } gensyscall_parameter_info;
12 
13 typedef struct gensyscall_syscall_info {
14 	const char					*name;
15 	const char					*kernel_name;
16 	const char					*return_type;
17 	int							parameter_count;
18 	gensyscall_parameter_info	*parameters;
19 } gensyscall_syscall_info;
20 
21 #endif	// _GEN_SYSCALLS_H
22