[SETUP] Remove myself from the 1st stage setup code
[reactos.git] / base / setup / usetup / fslist.h
1 /*
2 * ReactOS kernel
3 * Copyright (C) 2003 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 along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19 /* COPYRIGHT: See COPYING in the top level directory
20 * PROJECT: ReactOS text-mode setup
21 * FILE: base/setup/usetup/fslist.h
22 * PURPOSE: Filesystem list functions
23 * PROGRAMMER: Casper S. Hornstrup (chorns@users.sourceforge.net)
24 */
25
26 #pragma once
27
28 #include <fmifs/fmifs.h>
29
30 typedef struct _FILE_SYSTEM_ITEM
31 {
32 LIST_ENTRY ListEntry;
33 PCWSTR FileSystemName; /* Not owned by the item */ // Redundant, I need to check whether this is reaaaaally needed....
34 PFILE_SYSTEM FileSystem;
35 BOOLEAN QuickFormat;
36 } FILE_SYSTEM_ITEM, *PFILE_SYSTEM_ITEM;
37
38 typedef struct _FILE_SYSTEM_LIST
39 {
40 SHORT Left;
41 SHORT Top;
42 PFILE_SYSTEM_ITEM Selected;
43 LIST_ENTRY ListHead; /* List of FILE_SYSTEM_ITEM */
44 } FILE_SYSTEM_LIST, *PFILE_SYSTEM_LIST;
45
46 PFILE_SYSTEM_LIST
47 CreateFileSystemList(
48 IN SHORT Left,
49 IN SHORT Top,
50 IN BOOLEAN ForceFormat,
51 IN PCWSTR SelectFileSystem);
52
53 VOID
54 DestroyFileSystemList(
55 IN PFILE_SYSTEM_LIST List);
56
57 VOID
58 DrawFileSystemList(
59 IN PFILE_SYSTEM_LIST List);
60
61 VOID
62 ScrollDownFileSystemList(
63 IN PFILE_SYSTEM_LIST List);
64
65 VOID
66 ScrollUpFileSystemList(
67 IN PFILE_SYSTEM_LIST List);
68
69 /* EOF */