Added stubs for missing partition functions
[reactos.git] / reactos / ntoskrnl / hal / x86 / drive.c
1 /* $Id: drive.c,v 1.3 2001/06/08 15:08:36 ekohl Exp $
2 *
3 * COPYRIGHT: See COPYING in the top level directory
4 * PROJECT: ReactOS kernel
5 * FILE: hal/x86/drive.c
6 * PURPOSE: Drive letter assignment
7 * PROGRAMMER:
8 * UPDATE HISTORY:
9 * 2000-03-25
10 */
11
12 /* INCLUDES *****************************************************************/
13
14 #include <ddk/ntddk.h>
15
16 #include <internal/debug.h>
17
18 /* FUNCTIONS *****************************************************************/
19
20 VOID STDCALL
21 IoAssignDriveLetters(IN PLOADER_PARAMETER_BLOCK LoaderBlock,
22 IN PSTRING NtDeviceName,
23 OUT PUCHAR NtSystemPath,
24 OUT PSTRING NtSystemPathString)
25 {
26 #ifdef __NTOSKRNL__
27 HalDispatchTable.HalIoAssignDriveLetters(LoaderBlock,
28 NtDeviceName,
29 NtSystemPath,
30 NtSystemPathString);
31 #else
32 HalDispatchTable->HalIoAssignDriveLetters(LoaderBlock,
33 NtDeviceName,
34 NtSystemPath,
35 NtSystemPathString);
36 #endif
37 }
38
39 /* EOF */