efiapi.h: fix EventGroup parameter of EFI_CREATE_EVENT_EX prototype

From UEFI specifications, this parameter is a pointer, see
https://uefi.org/sites/default/files/resources/UEFI_Spec_2_8_final.pdf
page 148 for reference.

Signed-off-by: leo <leo.sartre@geebol.fr>
This commit is contained in:
leo 2019-05-14 07:44:28 +02:00
parent 230c36c6aa
commit 238358c6df

View file

@ -576,7 +576,7 @@ EFI_STATUS
IN EFI_TPL NotifyTpl,
IN EFI_EVENT_NOTIFY NotifyFunction OPTIONAL,
IN const VOID *NotifyContext OPTIONAL,
IN const EFI_GUID EventGroup OPTIONAL,
IN const EFI_GUID *EventGroup OPTIONAL,
OUT EFI_EVENT *Event
);