00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef PSPIOFILEMGR_FCNTL_H
00015 #define PSPIOFILEMGR_FCNTL_H
00016
00017
00018
00019 #define PSP_O_RDONLY 0x0001
00020 #define PSP_O_WRONLY 0x0002
00021 #define PSP_O_RDWR (PSP_O_RDONLY | PSP_O_WRONLY)
00022 #define PSP_O_NBLOCK 0x0004
00023 #define PSP_O_DIROPEN 0x0008 // Internal use for dopen
00024 #define PSP_O_APPEND 0x0100
00025 #define PSP_O_CREAT 0x0200
00026 #define PSP_O_TRUNC 0x0400
00027 #define PSP_O_EXCL 0x0800
00028 #define PSP_O_NOWAIT 0x8000
00029
00030 #define PSP_SEEK_SET 0
00031 #define PSP_SEEK_CUR 1
00032 #define PSP_SEEK_END 2
00033
00034 #endif