Copy msimg32
[reactos.git] / reactos / boot / freeldr / freeldr / include / reactos.h
1 /*
2 * FreeLoader
3 * Copyright (C) 1998-2003 Brian Palmer <brianp@sginet.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20 #ifndef __REACTOS_H
21 #define __REACTOS_H
22
23
24 ///////////////////////////////////////////////////////////////////////////////////////
25 //
26 // ReactOS Loading Functions
27 //
28 ///////////////////////////////////////////////////////////////////////////////////////
29 void LoadAndBootReactOS(PUCHAR OperatingSystemName);
30
31 ///////////////////////////////////////////////////////////////////////////////////////
32 //
33 // ReactOS Setup Loader Functions
34 //
35 ///////////////////////////////////////////////////////////////////////////////////////
36 VOID ReactOSRunSetupLoader(VOID);
37
38 ///////////////////////////////////////////////////////////////////////////////////////
39 //
40 // ARC Path Functions
41 //
42 ///////////////////////////////////////////////////////////////////////////////////////
43 BOOL DissectArcPath(char *ArcPath, char *BootPath, U32* BootDrive, U32* BootPartition);
44 void ConstructArcPath(PUCHAR ArcPath, PUCHAR SystemFolder, U32 Disk, U32 Partition);
45 U32 ConvertArcNameToBiosDriveNumber(PUCHAR ArcPath);
46
47
48 #endif // defined __REACTOS_H