Revert, thx Thomas, wasnt sure.
[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 #define WIN32_NO_STATUS
37 #include <windows.h>
38 #include <fmifs/fmifs.h>
39 #define NTOS_MODE_USER
40 #include <ndk/ntndk.h>
41
42 /* VFAT */
43 #include <fslib/vfatlib.h>
44
45 /* DDK Disk Headers */
46 #include <ntddscsi.h>
47
48 /* Blue Driver Header */
49 #include <blue/ntddblue.h>
50
51 /* Helper Header */
52 #include <reactos/helper.h>
53
54 /* ReactOS Version */
55 #include <reactos/buildno.h>
56
57 #include <infros.h>
58
59 /* Internal Headers */
60 #include "console.h"
61 #include "partlist.h"
62 #include "inicache.h"
63 #include "filequeue.h"
64 #include "progress.h"
65 #include "bootsup.h"
66 #include "keytrans.h"
67 #include "registry.h"
68 #include "format.h"
69 #include "fslist.h"
70 #include "cabinet.h"
71 #include "filesup.h"
72 #include "drivesup.h"
73 #include "genlist.h"
74 #include "settings.h"
75
76 extern HANDLE ProcessHeap;
77 extern UNICODE_STRING SourceRootPath;
78
79 #endif /* __USETUP_H__*/
80
81 /* EOF */