windows-nt/Source/XPSP1/NT/base/ntsetup/syssetup/amd64/platform.c

19 lines
316 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
#include "setupp.h"
#pragma hdrstop
WCHAR x86SystemPartitionDrive;
WCHAR FloppylessBootPath[MAX_PATH];
UINT
PlatformSpecificInit(
VOID
)
{
//
// Determine x86 system partition (usually but not always C:).
//
x86SystemPartitionDrive = x86DetermineSystemPartition();
return(NO_ERROR);
}