OpenCore  1.0.4
OpenCore Bootloader
1.0.4
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
AppleEventLib.h
Go to the documentation of this file.
1
13#ifndef APPLE_EVENT_LIB_H
14#define APPLE_EVENT_LIB_H
15
16// EventLibCreateTimerEvent
17EFI_EVENT
19 IN EFI_EVENT_NOTIFY NotifyFunction,
20 IN VOID *NotifyContext,
21 IN UINT64 TriggerTime,
22 IN BOOLEAN SignalPeriodic,
23 IN EFI_TPL NotifyTpl
24 );
25
26// EventLibCreateNotifyTimerEvent
27EFI_EVENT
29 IN EFI_EVENT_NOTIFY NotifyFunction,
30 IN VOID *NotifyContext,
31 IN UINT64 TriggerTime,
32 IN BOOLEAN SignalPeriodic
33 );
34
35// EventLibCancelEvent
36VOID
38 IN EFI_EVENT Event
39 );
40
41#endif // APPLE_EVENT_LIB_H
EFI_EVENT EventLibCreateTimerEvent(IN EFI_EVENT_NOTIFY NotifyFunction, IN VOID *NotifyContext, IN UINT64 TriggerTime, IN BOOLEAN SignalPeriodic, IN EFI_TPL NotifyTpl)
EFI_EVENT EventLibCreateNotifyTimerEvent(IN EFI_EVENT_NOTIFY NotifyFunction, IN VOID *NotifyContext, IN UINT64 TriggerTime, IN BOOLEAN SignalPeriodic)
VOID EventLibCancelEvent(IN EFI_EVENT Event)