2021-02-06 18:16:46 +01:00
|
|
|
/*
|
|
|
|
* posix_additions.h
|
|
|
|
*
|
|
|
|
* Created on: Feb 5, 2021
|
|
|
|
* Author: jief
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PLATFORM_POSIX_POSIX_ADDITIONS_H_
|
|
|
|
#define PLATFORM_POSIX_POSIX_ADDITIONS_H_
|
|
|
|
|
2021-05-05 12:20:40 +02:00
|
|
|
// This should probably no be here, in posix as it used EFI types
|
|
|
|
// This doesn't compile if compile under posix without all EFI sdk. It's the case for compiling the validator
|
|
|
|
// It's 2 EFI "utils" that probably shouldn't be here and
|
2021-02-06 18:16:46 +01:00
|
|
|
const char* efiStrError(EFI_STATUS errnum);
|
2022-04-26 00:55:56 +02:00
|
|
|
//const char* strguid(EFI_GUID* guid);
|
2021-02-06 18:16:46 +01:00
|
|
|
|
|
|
|
#endif /* PLATFORM_POSIX_POSIX_ADDITIONS_H_ */
|