2003-08-11 Casper S. Hornstrup <chorns@users.sourceforge.net>
[reactos.git] / reactos / hal / halx86 / drive.c
1 /* $Id: drive.c,v 1.4 2003/02/26 14:14:03 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 #include <internal/debug.h>
16
17 /* FUNCTIONS *****************************************************************/
18
19 VOID STDCALL
20 IoAssignDriveLetters(IN PLOADER_PARAMETER_BLOCK LoaderBlock,
21 IN PSTRING NtDeviceName,
22 OUT PUCHAR NtSystemPath,
23 OUT PSTRING NtSystemPathString)
24 {
25 HalIoAssignDriveLetters(LoaderBlock,
26 NtDeviceName,
27 NtSystemPath,
28 NtSystemPathString);
29 }
30
31 /* EOF */