4bd5981ff24a05c1e994d7c820d3b680ad2f04fa
[reactos.git] / base / setup / lib / setuplib.h
1 /*
2 * PROJECT: ReactOS Setup Library
3 * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
4 * PURPOSE: Public header
5 * COPYRIGHT: Copyright 2017-2018 Hermes Belusca-Maito
6 */
7
8 #pragma once
9
10 /* INCLUDES *****************************************************************/
11
12 /* Needed PSDK headers when using this library */
13 #if 0
14
15 #define WIN32_NO_STATUS
16 #define _INC_WINDOWS
17 #define COM_NO_WINDOWS_H
18
19 #include <winxxx.h>
20
21 #endif
22
23 /* NOTE: Please keep the header inclusion order! */
24
25 extern HANDLE ProcessHeap;
26
27 #include "errorcode.h"
28 #include "spapisup/fileqsup.h"
29 #include "spapisup/infsupp.h"
30 #include "utils/linklist.h"
31 #include "utils/ntverrsrc.h"
32 // #include "utils/arcname.h"
33 #include "utils/bldrsup.h"
34 #include "bootsup.h"
35 #include "utils/filesup.h"
36 #include "fsutil.h"
37 #include "utils/genlist.h"
38 #include "utils/inicache.h"
39 #include "utils/partlist.h"
40 #include "utils/arcname.h"
41 #include "utils/osdetect.h"
42 #include "utils/regutil.h"
43 #include "registry.h"
44 #include "mui.h"
45 #include "settings.h"
46
47 // #include "install.h" // See at the end...
48
49
50 /* DEFINES ******************************************************************/
51
52 #define KB ((ULONGLONG)1024)
53 #define MB (KB*KB)
54 #define GB (KB*KB*KB)
55 // #define TB (KB*KB*KB*KB)
56 // #define PB (KB*KB*KB*KB*KB)
57
58
59 /* TYPEDEFS *****************************************************************/
60
61 struct _USETUP_DATA;
62
63 typedef VOID
64 (__cdecl *PSETUP_ERROR_ROUTINE)(IN struct _USETUP_DATA*, ...);
65
66 typedef struct _USETUP_DATA
67 {
68 /* Error handling *****/
69 ERROR_NUMBER LastErrorNumber;
70 PSETUP_ERROR_ROUTINE ErrorRoutine;
71
72 /* Setup INFs *****/
73 HINF SetupInf;
74
75 /* Installation *****/
76 PVOID SetupFileQueue; // HSPFILEQ
77
78 /* SOURCE Paths *****/
79 UNICODE_STRING SourceRootPath;
80 UNICODE_STRING SourceRootDir;
81 UNICODE_STRING SourcePath;
82
83 /* DESTINATION Paths *****/
84 /*
85 * Path to the system partition, where the boot manager resides.
86 * On x86 PCs, this is usually the active partition.
87 * On ARC, (u)EFI, ... platforms, this is a dedicated partition.
88 *
89 * For more information, see:
90 * https://en.wikipedia.org/wiki/System_partition_and_boot_partition
91 * http://homepage.ntlworld.com/jonathan.deboynepollard/FGA/boot-and-system-volumes.html
92 * http://homepage.ntlworld.com/jonathan.deboynepollard/FGA/arc-boot-process.html
93 * http://homepage.ntlworld.com/jonathan.deboynepollard/FGA/efi-boot-process.html
94 * http://homepage.ntlworld.com/jonathan.deboynepollard/FGA/determining-system-volume.html
95 * http://homepage.ntlworld.com/jonathan.deboynepollard/FGA/determining-boot-volume.html
96 */
97 UNICODE_STRING SystemRootPath;
98
99 /* Path to the installation directory inside the ReactOS boot partition */
100 UNICODE_STRING DestinationArcPath; /** Equivalent of 'NTOS_INSTALLATION::SystemArcPath' **/
101 UNICODE_STRING DestinationPath; /** Equivalent of 'NTOS_INSTALLATION::SystemNtPath' **/
102 UNICODE_STRING DestinationRootPath;
103
104 // FIXME: This is only temporary!! Must be removed later!
105 UNICODE_STRING InstallPath;
106
107 LONG DestinationDiskNumber;
108 LONG DestinationPartitionNumber;
109
110 LONG MBRInstallType;
111 LONG FormatPartition;
112 LONG AutoPartition;
113
114 /* Settings lists *****/
115 PGENERIC_LIST ComputerList;
116 PGENERIC_LIST DisplayList;
117 PGENERIC_LIST KeyboardList;
118 PGENERIC_LIST LayoutList;
119 PGENERIC_LIST LanguageList;
120
121 /* Other stuff *****/
122 WCHAR LocaleID[9];
123 LANGID LanguageId;
124
125 ULONG RequiredPartitionDiskSpace;
126 WCHAR InstallationDirectory[MAX_PATH];
127 } USETUP_DATA, *PUSETUP_DATA;
128
129
130 #include "install.h"
131
132
133 // HACK!!
134 extern BOOLEAN IsUnattendedSetup;
135
136
137 /* FUNCTIONS ****************************************************************/
138
139 VOID
140 CheckUnattendedSetup(
141 IN OUT PUSETUP_DATA pSetupData);
142
143 VOID
144 InstallSetupInfFile(
145 IN OUT PUSETUP_DATA pSetupData);
146
147 NTSTATUS
148 GetSourcePaths(
149 OUT PUNICODE_STRING SourcePath,
150 OUT PUNICODE_STRING SourceRootPath,
151 OUT PUNICODE_STRING SourceRootDir);
152
153 ERROR_NUMBER
154 LoadSetupInf(
155 IN OUT PUSETUP_DATA pSetupData);
156
157 NTSTATUS
158 InitDestinationPaths(
159 IN OUT PUSETUP_DATA pSetupData,
160 IN PCWSTR InstallationDir,
161 IN PDISKENTRY DiskEntry, // FIXME: HACK!
162 IN PPARTENTRY PartEntry); // FIXME: HACK!
163
164 // NTSTATUS
165 ERROR_NUMBER
166 InitializeSetup(
167 IN OUT PUSETUP_DATA pSetupData,
168 IN ULONG InitPhase);
169
170 VOID
171 FinishSetup(
172 IN OUT PUSETUP_DATA pSetupData);
173
174
175 typedef enum _REGISTRY_STATUS
176 {
177 Success = 0,
178 RegHiveUpdate,
179 ImportRegHive,
180 DisplaySettingsUpdate,
181 LocaleSettingsUpdate,
182 KeybLayouts,
183 KeybSettingsUpdate,
184 CodePageInfoUpdate,
185 } REGISTRY_STATUS;
186
187 typedef VOID
188 (__cdecl *PREGISTRY_STATUS_ROUTINE)(IN REGISTRY_STATUS, ...);
189
190 ERROR_NUMBER
191 UpdateRegistry(
192 IN OUT PUSETUP_DATA pSetupData,
193 /**/IN BOOLEAN RepairUpdateFlag, /* HACK HACK! */
194 /**/IN PPARTLIST PartitionList, /* HACK HACK! */
195 /**/IN WCHAR DestinationDriveLetter, /* HACK HACK! */
196 /**/IN PCWSTR SelectedLanguageId, /* HACK HACK! */
197 IN PREGISTRY_STATUS_ROUTINE StatusRoutine OPTIONAL);
198
199 /* EOF */