mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 22:00:55 +00:00
[FREELDR]
Correct the type of few variables. svn path=/trunk/; revision=57898
This commit is contained in:
parent
2bd370a435
commit
5b900194af
4 changed files with 6 additions and 6 deletions
|
@ -37,7 +37,7 @@ typedef struct tagDISKCONTEXT
|
|||
|
||||
extern ULONG reactos_disk_count;
|
||||
extern ARC_DISK_SIGNATURE reactos_arc_disk_info[];
|
||||
extern char reactos_arc_strings[32][256];
|
||||
extern CHAR reactos_arc_strings[32][256];
|
||||
|
||||
static CHAR Hex[] = "0123456789abcdef";
|
||||
UCHAR PcBiosDiskCount = 0;
|
||||
|
|
|
@ -28,7 +28,7 @@ static CHAR Hex[] = "0123456789ABCDEF";
|
|||
|
||||
extern ULONG reactos_disk_count;
|
||||
extern ARC_DISK_SIGNATURE reactos_arc_disk_info[];
|
||||
extern char reactos_arc_strings[32][256];
|
||||
extern CHAR reactos_arc_strings[32][256];
|
||||
|
||||
static PCM_PARTIAL_RESOURCE_LIST
|
||||
GetHarddiskConfigurationData(UCHAR DriveNumber, ULONG* pSize)
|
||||
|
|
|
@ -20,9 +20,9 @@
|
|||
#include <freeldr.h>
|
||||
|
||||
ARC_DISK_SIGNATURE reactos_arc_disk_info[32]; // ARC Disk Information
|
||||
unsigned long reactos_disk_count = 0;
|
||||
char reactos_arc_hardware_data[HW_MAX_ARC_HEAP_SIZE] = {0};
|
||||
char reactos_arc_strings[32][256];
|
||||
ULONG reactos_disk_count = 0;
|
||||
CHAR reactos_arc_hardware_data[HW_MAX_ARC_HEAP_SIZE] = {0};
|
||||
CHAR reactos_arc_strings[32][256];
|
||||
|
||||
ULONG GetDefaultOperatingSystem(OperatingSystemItem* OperatingSystemList, ULONG OperatingSystemCount)
|
||||
{
|
||||
|
|
|
@ -236,5 +236,5 @@ VOID LoadReactOSSetup(VOID)
|
|||
LoaderBlock,
|
||||
BootOptions,
|
||||
BootPath,
|
||||
1);
|
||||
TRUE);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue