2020-09-30 16:53:49 +02:00

19 lines
334 B
C

#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);
}