summaryrefslogtreecommitdiff
path: root/src/shared/types.h
diff options
context:
space:
mode:
authordzwdz2021-11-26 19:54:15 +0100
committerdzwdz2021-11-26 19:54:15 +0100
commit12dd15c6253e0e8f67d458d84000000bc10c422e (patch)
tree876e87731be9f3fd2b2dfa23015aa9fd34b0b4b7 /src/shared/types.h
parenta67f2a127afd5ecdfd76b4b02f02d5a84597adba (diff)
shared: move `enum vfs_operation` to types.h
Diffstat (limited to 'src/shared/types.h')
-rw-r--r--src/shared/types.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/shared/types.h b/src/shared/types.h
index 626e819..b696e85 100644
--- a/src/shared/types.h
+++ b/src/shared/types.h
@@ -11,3 +11,9 @@
typedef void __user * userptr_t;
typedef int handle_t;
+
+enum vfs_operation {
+ VFSOP_OPEN,
+ VFSOP_READ,
+ VFSOP_WRITE,
+};