For file seek operations this enum defines from which relative position the seek position is describe...
Definition FileEnums.h:16
Enum
Definition FileEnums.h:18
@ FromStart
The seek position is relative to the file's beginning.
Definition FileEnums.h:19
@ FromCurrent
The seek position is relative to the file's current seek position.
Definition FileEnums.h:21
@ FromEnd
The seek position is relative to the file's end.
Definition FileEnums.h:20
Selection specifying file lock behavior on open.
Definition FileEnums.h:5
Enum
Definition FileEnums.h:7
@ Exclusive
No other process is allowed to access the file for reading or writing, while it is open.
Definition FileEnums.h:9
@ Default
Results in 'Exclusive' when requesting write access and 'SharedReads' when requesting read access....
Definition FileEnums.h:8
@ SharedReads
Other processes may read the file concurrently.
Definition FileEnums.h:10