fileMode Type (Enumeration)

files.h

enum fileMode {
FM_CLOSED=0, FM_READ=1, FM_WRITE=2, FM_APPEND=3, FM_READ_ACCESS=1, FM_WRITE_ACCESS=4
};

An enumeration for describing possible file modes.

These constants describe the file modes stored in the FILES structure and needed by nearly every files.h function.