Luna::FileOpenFlag

enum FileOpenFlag : u32
{
    read= 0x01
    write= 0x02
    user_buffering= 0x04
}

Specifies attributes for one file open operation.

Options

  • read

    Grants read access to the file so that IFile::read operations can be performed.

  • write

    Grants write access to the file so that IFile::write operations can be performed.

  • user_buffering

    Allocates one user-mode buffer for the opened file.