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 /* 20 * COPYRIGHT: See COPYING in the top level directory 21 * PROJECT: ReactOS text-mode setup 22 * FILE: base/setup/usetup/fslist.h 23 * PURPOSE: Filesystem list functions 24 * PROGRAMMER: Casper S. Hornstrup (chorns@users.sourceforge.net) 25 */ 26 27 #pragma once 28 29 #include <fmifs/fmifs.h> 30 31 typedef struct _FILE_SYSTEM_ITEM 32 { 33 LIST_ENTRY ListEntry; 34 PCWSTR 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 */ 70