Function open [src]
Prototype
pub fn open(self: *const File, new_handle: **const File, file_name: [*:0]const u16, open_mode: u64, attributes: u64) Status
Parameters
self: *const File
new_handle: **const File
file_name: [*:0]const u16
open_mode: u64
attributes: u64
Source
pub fn open(self: *const File, new_handle: **const File, file_name: [*:0]const u16, open_mode: u64, attributes: u64) Status {
return self._open(self, new_handle, file_name, open_mode, attributes);
}