mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-10 09:40:53 +01:00
7babc6fe9b
Fix Disabled property in Smbios/Block config. Move flagstate in GlobalConfig. Remove gSettings.Smbios.REV, ECPI, RBr and RPlt. Create getRBr() and getRPlt(). Operator == and isEqual in XArray, XObjArray, SETTINGS_DATA. Rename equal to isEqual in XString and XStringArray. Operator == in INPUT_ITEM, undefinable, ABSTRACT_PATCH (and derived) and RAM_SLOT_INFO class. Clean b64cdecode.h.
29 lines
472 B
C
29 lines
472 B
C
/*
|
|
|
|
cdecode.h - c header for a base64 decoding algorithm
|
|
|
|
|
|
|
|
This is part of the libb64 project, and has been placed in the public domain.
|
|
|
|
For details, see http://sourceforge.net/projects/libb64
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef BASE64_CDECODE_H
|
|
|
|
#define BASE64_CDECODE_H
|
|
|
|
|
|
|
|
|
|
|
|
UINT8 *Base64DecodeClover(IN CONST CHAR8 *EncodedData, size_t EncodedSize, OUT UINTN *DecodedSize);
|
|
UINT8 *Base64DecodeClover(IN CONST CHAR8 *EncodedData, OUT UINTN *DecodedSize);
|
|
|
|
|
|
#endif /* BASE64_CDECODE_H */
|
|
|