Added EfiToStr()

This commit is contained in:
Jozef Nagy 2024-01-21 17:48:33 +01:00
parent 25966996e3
commit 87104a93b6
No known key found for this signature in database
GPG key ID: 2D281D7D04AF4A3C
4 changed files with 139 additions and 18 deletions

10
efilib.h Normal file
View file

@ -0,0 +1,10 @@
#ifndef EFILIB_H
#define EFILIB_H
#include "efi.h"
#define EFI_ERROR(Status) (((INTN)(EFI_STATUS)(Status)) < 0)
const CHAR16 *EfiErrToStr(EFI_STATUS Status);
#endif /* EFILIB_H */