mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-12 09:54:36 +01:00
32fbf76326
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.
28 lines
560 B
C
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_ */
|