ReactOS 0.4.15-dev-7918-g2a2556c
custom.h File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define HAS_OPTION_MENU_EDIT_CMDLINE
 
#define HAS_OPTION_MENU_CUSTOM_BOOT
 
#define HAS_OPTION_MENU_REBOOT
 

Functions

VOID OptionMenuCustomBoot (VOID)
 
VOID EditCustomBootReactOS (IN OUT OperatingSystemItem *OperatingSystem, IN BOOLEAN IsSetup)
 
VOID OptionMenuReboot (VOID)
 

Macro Definition Documentation

◆ HAS_OPTION_MENU_CUSTOM_BOOT

#define HAS_OPTION_MENU_CUSTOM_BOOT

Definition at line 23 of file custom.h.

◆ HAS_OPTION_MENU_EDIT_CMDLINE

#define HAS_OPTION_MENU_EDIT_CMDLINE

Definition at line 22 of file custom.h.

◆ HAS_OPTION_MENU_REBOOT

#define HAS_OPTION_MENU_REBOOT

Definition at line 24 of file custom.h.

Function Documentation

◆ EditCustomBootReactOS()

VOID EditCustomBootReactOS ( IN OUT OperatingSystemItem OperatingSystem,
IN BOOLEAN  IsSetup 
)

Definition at line 682 of file custom.c.

685{
686 TIMEINFO* TimeInfo;
687 ULONG_PTR SectionId = OperatingSystem->SectionId;
688 CHAR SectionName[100];
689 CHAR BootDriveString[20];
690 CHAR BootPartitionString[20];
691 CHAR ReactOSSystemPath[200];
692 CHAR ReactOSARCPath[200];
693 CHAR ReactOSOptions[200];
694
695 RtlZeroMemory(SectionName, sizeof(SectionName));
696 RtlZeroMemory(BootDriveString, sizeof(BootDriveString));
697 RtlZeroMemory(BootPartitionString, sizeof(BootPartitionString));
698 RtlZeroMemory(ReactOSSystemPath, sizeof(ReactOSSystemPath));
699 RtlZeroMemory(ReactOSARCPath, sizeof(ReactOSARCPath));
700 RtlZeroMemory(ReactOSOptions, sizeof(ReactOSOptions));
701
702 if (SectionId != 0)
703 {
704 /* Load the settings */
705 IniReadSettingByName(SectionId, "SystemPath", ReactOSARCPath, sizeof(ReactOSARCPath));
706 IniReadSettingByName(SectionId, "Options", ReactOSOptions, sizeof(ReactOSOptions));
707 }
708
709 if (SectionId == 0)
710 {
711 if (!UiEditBox(BootDrivePrompt, BootDriveString, sizeof(BootDriveString)))
712 return;
713
714 if (!UiEditBox(BootPartitionPrompt, BootPartitionString, sizeof(BootPartitionString)))
715 return;
716
717 if (!UiEditBox(ReactOSSystemPathPrompt, ReactOSSystemPath, sizeof(ReactOSSystemPath)))
718 return;
719 }
720 else
721 {
722 if (!UiEditBox(ReactOSSystemPathPrompt, ReactOSARCPath, sizeof(ReactOSARCPath)))
723 return;
724 }
725
726 if (!UiEditBox(IsSetup ? ReactOSSetupOptionsPrompt : ReactOSOptionsPrompt, ReactOSOptions, sizeof(ReactOSOptions)))
727 return;
728
729 /* Modify the settings values and return if we were in edit mode */
730 if (SectionId != 0)
731 {
732 IniModifySettingValue(SectionId, "SystemPath", ReactOSARCPath);
733 IniModifySettingValue(SectionId, "Options", ReactOSOptions);
734 return;
735 }
736
737 /* Generate a unique section name */
738 TimeInfo = ArcGetTime();
739 RtlStringCbPrintfA(SectionName, sizeof(SectionName),
740 "CustomReactOS%u%u%u%u%u%u",
741 TimeInfo->Year, TimeInfo->Day, TimeInfo->Month,
742 TimeInfo->Hour, TimeInfo->Minute, TimeInfo->Second);
743
744 /* Add the section */
745 if (!IniAddSection(SectionName, &SectionId))
746 return;
747
748 /* Add the BootType */
749 if (!IniAddSettingValueToSection(SectionId, "BootType", IsSetup ? "ReactOSSetup" : "Windows2003"))
750 return;
751
752 /* Construct the ReactOS ARC system path */
753 ConstructArcPath(ReactOSARCPath, ReactOSSystemPath,
754 DriveMapGetBiosDriveNumber(BootDriveString),
755 atoi(BootPartitionString));
756
757 /* Add the system path */
758 if (!IniAddSettingValueToSection(SectionId, "SystemPath", ReactOSARCPath))
759 return;
760
761 /* Add the CommandLine */
762 if (!IniAddSettingValueToSection(SectionId, "Options", ReactOSOptions))
763 return;
764
765 OperatingSystem->SectionId = SectionId;
766 OperatingSystem->LoadIdentifier = NULL;
767}
TIMEINFO * ArcGetTime(VOID)
Definition: arcemul.c:27
VOID ConstructArcPath(PCHAR ArcPath, PCHAR SystemFolder, UCHAR Disk, ULONG Partition)
Definition: arcname.c:175
const PCSTR BootPartitionPrompt
Definition: custom.c:69
const PCSTR ReactOSSetupOptionsPrompt
Definition: custom.c:95
const PCSTR ReactOSSystemPathPrompt
Definition: custom.c:81
const PCSTR BootDrivePrompt
Definition: custom.c:56
const PCSTR ReactOSOptionsPrompt
Definition: custom.c:87
#define DriveMapGetBiosDriveNumber(DeviceName)
Definition: hardware.h:35
BOOLEAN UiEditBox(PCSTR MessageText, PCHAR EditTextBuffer, ULONG Length)
Definition: ui.c:634
#define NULL
Definition: types.h:112
_Check_return_ int __cdecl atoi(_In_z_ const char *_Str)
BOOLEAN IniAddSection(PCSTR SectionName, ULONG_PTR *SectionId)
Definition: inifile.c:182
BOOLEAN IniAddSettingValueToSection(ULONG_PTR SectionId, PCSTR SettingName, PCSTR SettingValue)
Definition: inifile.c:255
BOOLEAN IniModifySettingValue(ULONG_PTR SectionId, PCSTR SettingName, PCSTR SettingValue)
Definition: inifile.c:296
BOOLEAN IniReadSettingByName(ULONG_PTR SectionId, PCSTR SettingName, PCHAR Buffer, ULONG BufferSize)
Definition: inifile.c:149
NTSTRSAFEVAPI RtlStringCbPrintfA(_Out_writes_bytes_(cbDest) _Always_(_Post_z_) NTSTRSAFE_PSTR pszDest, _In_ size_t cbDest, _In_ _Printf_format_string_ NTSTRSAFE_PCSTR pszFormat,...)
Definition: ntstrsafe.h:1148
Definition: fw.h:10
USHORT Month
Definition: fw.h:12
USHORT Day
Definition: fw.h:13
USHORT Minute
Definition: fw.h:15
USHORT Hour
Definition: fw.h:14
USHORT Second
Definition: fw.h:16
USHORT Year
Definition: fw.h:11
#define RtlZeroMemory(Destination, Length)
Definition: typedefs.h:262
uint32_t ULONG_PTR
Definition: typedefs.h:65
char CHAR
Definition: xmlstorage.h:175

Referenced by EditCustomBootNTOS(), and EditCustomBootReactOSSetup().

◆ OptionMenuCustomBoot()

VOID OptionMenuCustomBoot ( VOID  )

Referenced by DoOptionsMenu().

◆ OptionMenuReboot()

VOID OptionMenuReboot ( VOID  )

Referenced by DoOptionsMenu().