Add missing IN/OUT indicators
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
2022-10-23 22:20:17 +02:00
parent 8473150b26
commit d6cc283519
2 changed files with 6 additions and 6 deletions

View File

@@ -26,10 +26,10 @@ typedef struct _XT_BOOT_LOADER_PROTOCOL
/* Loader protocol related routines forward references */
EFI_STATUS
BlGetXtLoaderProtocol(PXT_BOOT_LOADER_PROTOCOL *LdrProtocol);
BlGetXtLoaderProtocol(OUT PXT_BOOT_LOADER_PROTOCOL *LdrProtocol);
EFI_STATUS
BlLoadXtProtocol(PVOID *ProtocolHandler,
PEFI_GUID ProtocolGuid);
BlLoadXtProtocol(OUT PVOID *ProtocolHandler,
IN PEFI_GUID ProtocolGuid);
#endif /* __XTLDR_BLPROTO_H */