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
9struct IOCtlInfo {
10	int		command;
11	bool	isBuffer;
12	int32	bufferSize;
13	int32	writeBufferSize;
14};
15
16#endif	// USERLAND_FS_IOCTL_INFO_H
17