Function deinit [src]

Prototype

pub fn deinit(self: @This()) void

Parameters

self: @This()

Source

pub fn deinit(self: @This()) void { const process_handle = windows.GetCurrentProcess(); assert(windows.ntdll.NtUnmapViewOfSection(process_handle, @constCast(@ptrCast(self.section_view.ptr))) == .SUCCESS); windows.CloseHandle(self.section_handle); self.file.close(); }