Function unloadImage [src]

The result is the exit code of the unload handler. Any error codes are try/catch-able, leaving only success and warning codes as the result.

Prototype

pub fn unloadImage( self: *BootServices, image: Handle, ) Status.Error!Status

Parameters

self: *BootServicesimage: Handle

Source

pub fn unloadImage( self: *BootServices, image: Handle, ) Status.Error!Status { const status = self._unloadImage(image); try status.err(); return status; }