Files
reactos/base/system/diskpart/active.c
Eric Kohl d2ae286c6b [DISKPART] Command function return EXIT_CODE instead of BOOL
This simplifies the implementation of the NOERR option.
2026-01-01 13:46:34 +01:00

64 lines
1.4 KiB
C

/*
* PROJECT: ReactOS DiskPart
* LICENSE: GPL - See COPYING in the top level directory
* FILE: base/system/diskpart/active.c
* PURPOSE: Manages all the partitions of the OS in an interactive way.
* PROGRAMMERS: Lee Schroeder
*/
#include "diskpart.h"
#define NDEBUG
#include <debug.h>
EXIT_CODE
active_main(
_In_ INT argc,
_In_ PWSTR *argv)
{
NTSTATUS Status;
DPRINT("Active()\n");
if (CurrentDisk == NULL)
{
ConResPuts(StdOut, IDS_SELECT_NO_DISK);
return EXIT_SUCCESS;
}
if (CurrentPartition == NULL)
{
ConResPuts(StdOut, IDS_SELECT_NO_PARTITION);
return EXIT_SUCCESS;
}
if (CurrentDisk->PartitionStyle == PARTITION_STYLE_MBR)
{
if (CurrentPartition->Mbr.BootIndicator)
{
ConResPuts(StdOut, IDS_ACTIVE_ALREADY);
return EXIT_SUCCESS;
}
CurrentPartition->Mbr.BootIndicator = TRUE;
CurrentDisk->Dirty = TRUE;
UpdateMbrDiskLayout(CurrentDisk);
Status = WriteMbrPartitions(CurrentDisk);
if (NT_SUCCESS(Status))
{
ConResPuts(StdOut, IDS_ACTIVE_SUCCESS);
}
else
{
ConResPuts(StdOut, IDS_ACTIVE_FAIL);
}
}
else
{
ConResPuts(StdOut, IDS_ACTIVE_NO_MBR);
}
return EXIT_SUCCESS;
}