pub type Event = *mut c_void;Expand description
Event Objects
Event objects represent hooks into the main-loop of a UEFI environment. They allow to register callbacks, to be invoked when a specific event happens. In most cases you use events to register timer-based callbacks, as well as chaining events together. Internally, they are simple void pointers. It is the UEFI task management that applies meaning to them.