Count each handle which has pending events only once, independent of the number
[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
34 /* PSDK/NDK */
35 #include <windows.h>
36 #include <fmifs/fmifs.h>
37 #define NTOS_MODE_USER
38 #include <ndk/ntndk.h>
39
40 /* VFAT */
41 #include <fslib/vfatlib.h>
42
43 /* DDK Disk Headers */
44 #include <ddk/ntddscsi.h>
45
46 /* Blue Driver Header */
47 #include <blue/ntddblue.h>
48
49 /* Helper Header */
50 #include <reactos/helper.h>
51
52 /* ReactOS Version */
53 #include <reactos/buildno.h>
54
55 /* Internal Headers */
56 #include "console.h"
57 #include "partlist.h"
58 #include "inicache.h"
59 #include "infcache.h"
60 #include "filequeue.h"
61 #include "progress.h"
62 #include "bootsup.h"
63 #include "keytrans.h"
64 #include "registry.h"
65 #include "format.h"
66 #include "fslist.h"
67 #include "cabinet.h"
68 #include "filesup.h"
69 #include "drivesup.h"
70 #include "genlist.h"
71 #include "settings.h"
72
73 extern HANDLE ProcessHeap;
74 extern UNICODE_STRING SourceRootPath;
75
76 #endif /* __USETUP_H__*/
77
78 /* EOF */