Implement XenDiskGetPartitionEntry Modified: branches/xen/reactos/boot/freeldr/freeldr/arch/i386/machxen.c Modified: branches/xen/reactos/boot/freeldr/freeldr/arch/i386/xendisk.c _____
Modified: branches/xen/reactos/boot/freeldr/freeldr/arch/i386/machxen.c --- branches/xen/reactos/boot/freeldr/freeldr/arch/i386/machxen.c 2005-05-17 07:34:17 UTC (rev 15372) +++ branches/xen/reactos/boot/freeldr/freeldr/arch/i386/machxen.c 2005-05-17 07:35:14 UTC (rev 15373) @@ -234,14 +234,6 @@
XEN_UNIMPLEMENTED("XenVideoPrepareForReactOS"); }
-BOOL -XenDiskGetPartitionEntry(ULONG DriveNumber, ULONG PartitionNumber, - PPARTITION_TABLE_ENTRY PartitionTableEntry) - { - XEN_UNIMPLEMENTED("XenDiskGetPartitionEntry"); - return FALSE; - } - VOID XenHwDetect(VOID) { _____
Modified: branches/xen/reactos/boot/freeldr/freeldr/arch/i386/xendisk.c --- branches/xen/reactos/boot/freeldr/freeldr/arch/i386/xendisk.c 2005-05-17 07:34:17 UTC (rev 15372) +++ branches/xen/reactos/boot/freeldr/freeldr/arch/i386/xendisk.c 2005-05-17 07:35:14 UTC (rev 15373) @@ -572,4 +572,12 @@
return 64; }
+BOOL +XenDiskGetPartitionEntry(ULONG DriveNumber, ULONG PartitionNumber, + PPARTITION_TABLE_ENTRY PartitionTableEntry) +{ + /* Just use the standard routine */ + return DiskGetPartitionEntry(DriveNumber, PartitionNumber, PartitionTableEntry); +} + /* EOF */