Do not overwrite the disk signature, if we install the boot code into the mbr.
[reactos.git] / reactos / subsys / system / usetup / usetup.h
1 /*
2 * ReactOS kernel
3 * Copyright (C) 2002 ReactOS Team
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 * COPYRIGHT: See COPYING in the top level directory
21 * PROJECT: ReactOS text-mode setup
22 * FILE: subsys/system/usetup/usetup.h
23 * PURPOSE: Text-mode setup
24 * PROGRAMMER: Eric Kohl
25 */
26
27 #ifndef __USETUP_H__
28 #define __USETUP_H__
29
30 /* C Headers */
31 #include <ctype.h>
32 #include <stdio.h>
33 #include <stddef.h>
34
35 /* PSDK/NDK */
36 #include <windows.h>
37 #include <fmifs/fmifs.h>
38 #define NTOS_MODE_USER
39 #include <ndk/ntndk.h>
40
41 /* VFAT */
42 #include <fslib/vfatlib.h>
43
44 /* DDK Disk Headers */
45 #include <ddk/ntddscsi.h>
46
47 /* Blue Driver Header */
48 #include <blue/ntddblue.h>
49
50 /* Helper Header */
51 #include <reactos/helper.h>
52
53 /* ReactOS Version */
54 #include <reactos/buildno.h>
55
56 /* Internal Headers */
57 #include "console.h"
58 #include "partlist.h"
59 #include "inicache.h"
60 #include "infcache.h"
61 #include "filequeue.h"
62 #include "progress.h"
63 #include "bootsup.h"
64 #include "keytrans.h"
65 #include "registry.h"
66 #include "format.h"
67 #include "fslist.h"
68 #include "cabinet.h"
69 #include "filesup.h"
70 #include "drivesup.h"
71 #include "genlist.h"
72 #include "settings.h"
73
74 extern HANDLE ProcessHeap;
75 extern UNICODE_STRING SourceRootPath;
76
77 #endif /* __USETUP_H__*/
78
79 /* EOF */