CloverBootloader/rEFIt_UEFI/gui/shared_with_menu.h
jief 32fbf76326 Update BaseLib.h with macro BASE_LIST_FOR_EACH.
Introduce class apd (automatic pointer destruction)
Introduce MemoryTracker
Weak symbols in MemoryAllocationLib to be able to redefine them (see
MemoryTracker).
Embed LegacyOS instead of a pointer.
Fixed a lot of memory leaks.
2023-11-18 11:04:54 +01:00

28 lines
560 B
C

/*
* shared_with_menu.h
*
* Created on: 4 Apr 2020
* Author: jief
*
* THIS will most likely disappear soon !
*/
#ifndef GUI_SHARED_WITH_MENU_H_
#define GUI_SHARED_WITH_MENU_H_
// clovy - set row height based on text size
#define RowHeightFromTextHeight (1.35f)
extern INTN TextStyle; //why global? It will be class SCREEN member
extern CONST CHAR16 *VBIOS_BIN;
extern INPUT_ITEM InputItems[135];
void DecodeOptions(REFIT_MENU_ITEM_BOOTNUM *Entry);
UINT32 EncodeOptions(const XString8Array& Options);
#endif /* GUI_SHARED_WITH_MENU_H_ */