2020-04-04 14:27:02 +02:00
|
|
|
/*
|
|
|
|
* 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;
|
|
|
|
|
2020-10-03 19:02:31 +02:00
|
|
|
void DecodeOptions(REFIT_MENU_ITEM_BOOTNUM *Entry);
|
2020-08-11 08:00:19 +02:00
|
|
|
UINT32 EncodeOptions(const XString8Array& Options);
|
2020-04-04 14:27:02 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* GUI_SHARED_WITH_MENU_H_ */
|