xref: /haiku/src/add-ons/kernel/file_systems/userlandfs/kernel_add_on/IOCtlInfo.h (revision 56eb8e78cc702792e3b032e3f5f45da9e5dbea9e)
1 // IOCtlInfo.h
2 
3 #ifndef USERLAND_FS_IOCTL_INFO_H
4 #define USERLAND_FS_IOCTL_INFO_H
5 
6 #include <SupportDefs.h>
7 
8 // IOCtlInfo
9 struct IOCtlInfo {
10 	int		command;
11 	bool	isBuffer;
12 	int32	bufferSize;
13 	int32	writeBufferSize;
14 };
15 
16 #endif	// USERLAND_FS_IOCTL_INFO_H
17