Go to the documentation of this file.
14 #ifndef PSPIOFILEMGR_FCNTL_H
15 #define PSPIOFILEMGR_FCNTL_H
19 #define PSP_O_RDONLY 0x0001
20 #define PSP_O_WRONLY 0x0002
21 #define PSP_O_RDWR (PSP_O_RDONLY | PSP_O_WRONLY)
22 #define PSP_O_NBLOCK 0x0004
23 #define PSP_O_DIROPEN 0x0008 // Internal use for dopen
24 #define PSP_O_APPEND 0x0100
25 #define PSP_O_CREAT 0x0200
26 #define PSP_O_TRUNC 0x0400
27 #define PSP_O_EXCL 0x0800
28 #define PSP_O_NOWAIT 0x8000
30 #define PSP_SEEK_SET 0
31 #define PSP_SEEK_CUR 1
32 #define PSP_SEEK_END 2