]> code.delx.au - refind/blob - refind/global.h
Version 0.2.5 release. Additional icon-management changes.
[refind] / refind / global.h
1 /*
2 * refit/global.h
3 * Global header file
4 *
5 * Copyright (c) 2006-2009 Christoph Pfisterer
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are
10 * met:
11 *
12 * * Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 *
15 * * Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the
18 * distribution.
19 *
20 * * Neither the name of Christoph Pfisterer nor the names of the
21 * contributors may be used to endorse or promote products derived
22 * from this software without specific prior written permission.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
27 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
28 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
29 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
30 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
34 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 */
36 /*
37 * Modifications copyright (c) 2012 Roderick W. Smith
38 *
39 * Modifications distributed under the terms of the GNU General Public
40 * License (GPL) version 3 (GPLv3), a copy of which must be distributed
41 * with this source code or binaries made from it.
42 *
43 */
44
45 #ifndef __GLOBAL_H_
46 #define __GLOBAL_H_
47
48 #include "efi.h"
49 #include "efilib.h"
50
51 #include "libeg.h"
52
53 #define REFIT_DEBUG (0)
54
55 // Tag classifications; used in various ways.
56 #define TAG_ABOUT (1)
57 #define TAG_REBOOT (2)
58 #define TAG_SHUTDOWN (3)
59 #define TAG_TOOL (4)
60 #define TAG_LOADER (5)
61 #define TAG_LEGACY (6)
62 #define TAG_EXIT (7)
63 #define TAG_SHELL (8)
64 #define TAG_GPTSYNC (9)
65 #define NUM_TOOLS (9)
66
67 #define NUM_SCAN_OPTIONS 10
68
69
70 //
71 // global definitions
72 //
73
74 // global types
75
76 typedef struct {
77 UINT8 Flags;
78 UINT8 StartCHS1;
79 UINT8 StartCHS2;
80 UINT8 StartCHS3;
81 UINT8 Type;
82 UINT8 EndCHS1;
83 UINT8 EndCHS2;
84 UINT8 EndCHS3;
85 UINT32 StartLBA;
86 UINT32 Size;
87 } MBR_PARTITION_INFO;
88
89 typedef struct {
90 EFI_DEVICE_PATH *DevicePath;
91 EFI_HANDLE DeviceHandle;
92 EFI_FILE *RootDir;
93 CHAR16 *VolName;
94 EG_IMAGE *VolIconImage;
95 EG_IMAGE *VolBadgeImage;
96 UINTN DiskKind;
97 BOOLEAN IsAppleLegacy;
98 BOOLEAN HasBootCode;
99 CHAR16 *OSIconName;
100 CHAR16 *OSName;
101 BOOLEAN IsMbrPartition;
102 UINTN MbrPartitionIndex;
103 EFI_BLOCK_IO *BlockIO;
104 UINT64 BlockIOOffset;
105 EFI_BLOCK_IO *WholeDiskBlockIO;
106 EFI_DEVICE_PATH *WholeDiskDevicePath;
107 MBR_PARTITION_INFO *MbrPartitionTable;
108 } REFIT_VOLUME;
109
110 typedef struct _refit_menu_entry {
111 CHAR16 *Title;
112 UINTN Tag;
113 UINTN Row;
114 CHAR16 ShortcutDigit;
115 CHAR16 ShortcutLetter;
116 EG_IMAGE *Image;
117 EG_IMAGE *BadgeImage;
118 struct _refit_menu_screen *SubScreen;
119 } REFIT_MENU_ENTRY;
120
121 typedef struct _refit_menu_screen {
122 CHAR16 *Title;
123 EG_IMAGE *TitleImage;
124 UINTN InfoLineCount;
125 CHAR16 **InfoLines;
126 UINTN EntryCount; // total number of entries registered
127 REFIT_MENU_ENTRY **Entries;
128 UINTN TimeoutSeconds;
129 CHAR16 *TimeoutText;
130 } REFIT_MENU_SCREEN;
131
132 typedef struct {
133 REFIT_MENU_ENTRY me;
134 CHAR16 *Title;
135 CHAR16 *LoaderPath;
136 CHAR16 *VolName;
137 EFI_DEVICE_PATH *DevicePath;
138 BOOLEAN UseGraphicsMode;
139 BOOLEAN Enabled;
140 CHAR16 *LoadOptions;
141 CHAR16 *InitrdPath; // Linux stub loader only
142 CHAR8 OSType;
143 } LOADER_ENTRY;
144
145 typedef struct {
146 REFIT_MENU_ENTRY me;
147 REFIT_VOLUME *Volume;
148 CHAR16 *LoadOptions;
149 BOOLEAN Enabled;
150 } LEGACY_ENTRY;
151
152 typedef struct {
153 BOOLEAN TextOnly;
154 UINTN Timeout;
155 UINTN HideUIFlags;
156 UINTN MaxTags; // max. number of OS entries to show simultaneously in graphics mode
157 CHAR16 *BannerFileName;
158 CHAR16 *SelectionSmallFileName;
159 CHAR16 *SelectionBigFileName;
160 CHAR16 *DefaultSelection;
161 UINTN ShowTools[NUM_TOOLS];
162 CHAR8 ScanFor[NUM_SCAN_OPTIONS]; // codes of types of loaders for which to scan
163 } REFIT_CONFIG;
164
165 // Global variables
166
167 extern EFI_HANDLE SelfImageHandle;
168 extern EFI_LOADED_IMAGE *SelfLoadedImage;
169 extern EFI_FILE *SelfRootDir;
170 extern EFI_FILE *SelfDir;
171 extern CHAR16 *SelfDirPath;
172
173 extern REFIT_VOLUME *SelfVolume;
174 extern REFIT_VOLUME **Volumes;
175 extern UINTN VolumesCount;
176
177 extern REFIT_CONFIG GlobalConfig;
178
179 LOADER_ENTRY *InitializeLoaderEntry(IN LOADER_ENTRY *Entry);
180 REFIT_MENU_SCREEN *InitializeSubScreen(IN LOADER_ENTRY *Entry);
181 VOID GenerateSubScreen(LOADER_ENTRY *Entry, IN REFIT_VOLUME *Volume);
182 LOADER_ENTRY * MakeGenericLoaderEntry(VOID);
183 LOADER_ENTRY * AddLoaderEntry(IN CHAR16 *LoaderPath, IN CHAR16 *LoaderTitle, IN REFIT_VOLUME *Volume);
184 VOID SetLoaderDefaults(LOADER_ENTRY *Entry, CHAR16 *LoaderPath, IN REFIT_VOLUME *Volume);
185 LOADER_ENTRY * AddPreparedLoaderEntry(LOADER_ENTRY *Entry);
186
187 #endif
188
189 /* EOF */