Create a branch for network fixes.
[reactos.git] / base / setup / usetup / chkdsk.c
1 /*
2 * ReactOS kernel
3 * Copyright (C) 2006 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 /* COPYRIGHT: See COPYING in the top level directory
20 * PROJECT: ReactOS text-mode setup
21 * FILE: subsys/system/usetup/chkdsk.c
22 * PURPOSE: Filesystem chkdsk support functions
23 * PROGRAMMER: Hervé Poussineau (hpoussin@reactos.org)
24 */
25
26 /* INCLUDES *****************************************************************/
27
28 #include "usetup.h"
29
30 #define NDEBUG
31 #include <debug.h>
32
33 static PPROGRESSBAR ChkdskProgressBar = NULL;
34
35 /* FUNCTIONS ****************************************************************/
36
37 static BOOLEAN NTAPI
38 ChkdskCallback(
39 IN CALLBACKCOMMAND Command,
40 IN ULONG Modifier,
41 IN PVOID Argument)
42 {
43 switch (Command)
44 {
45 default:
46 DPRINT("Unknown callback %lu\n", (ULONG)Command);
47 break;
48 }
49
50 return TRUE;
51 }
52
53 NTSTATUS
54 ChkdskPartition(
55 IN PUNICODE_STRING DriveRoot,
56 IN PFILE_SYSTEM_ITEM FileSystem)
57 {
58 NTSTATUS Status;
59
60 if (!FileSystem->ChkdskFunc)
61 return STATUS_NOT_SUPPORTED;
62
63 ChkdskProgressBar = CreateProgressBar(6,
64 yScreen - 14,
65 xScreen - 7,
66 yScreen - 10,
67 10,
68 24,
69 TRUE,
70 MUIGetString(STRING_CHECKINGDISK));
71
72 ProgressSetStepCount(ChkdskProgressBar, 100);
73
74 Status = FileSystem->ChkdskFunc(DriveRoot,
75 TRUE, /* FixErrors */
76 FALSE, /* Verbose */
77 FALSE, /* CheckOnlyIfDirty */
78 FALSE, /* ScanDrive */
79 ChkdskCallback); /* Callback */
80
81 DestroyProgressBar(ChkdskProgressBar);
82 ChkdskProgressBar = NULL;
83
84 DPRINT("ChkdskPartition() finished with status 0x%08lx\n", Status);
85
86 return Status;
87 }
88
89 /* EOF */