ioctl() IOCTL_STAT command

This commit is contained in:
2025-09-14 19:30:20 +02:00
parent 26ff717b50
commit 69e23a9ca3
5 changed files with 71 additions and 2 deletions

View File

@ -20,4 +20,14 @@ enum {
IOCTL_F_MAKE = 1<<2,
};
enum {
IOCTLSTAT_DIR = 0,
IOCTLSTAT_FILE = 1,
};
typedef struct IoctlStat {
size_t size;
int32_t type;
} IoctlStat;
#endif // SHARE_SYSDEFS_IOCTL_H_