Skip to content

Commit 2a4209f

Browse files
Fix archwsup
1 parent bc2ee14 commit 2a4209f

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

boot/freeldr/freeldr/arch/archwsup.c

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -243,3 +243,18 @@ FldrCreateComponentKey(
243243
/* Return the child */
244244
*ComponentKey = ComponentData;
245245
}
246+
247+
ULONG ArcGetDiskCount(VOID)
248+
{
249+
return reactos_disk_count;
250+
}
251+
252+
PARC_DISK_SIGNATURE_EX ArcGetDiskInfo(ULONG Index)
253+
{
254+
if (Index >= reactos_disk_count)
255+
{
256+
return NULL;
257+
}
258+
259+
return &reactos_arc_disk_info[Index];
260+
}

0 commit comments

Comments
 (0)