mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-28 19:26:16 +00:00
Base is FreeLdr from trunk r25063. svn path=/branches/winldr/; revision=25066
44 lines
1.7 KiB
C
44 lines
1.7 KiB
C
/*
|
|
* FreeLoader
|
|
* Copyright (C) 1998-2003 Brian Palmer <[email protected]>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
|
|
#ifndef __DRIVEMAP_H
|
|
#define __DRIVEMAP_H
|
|
|
|
|
|
typedef struct
|
|
{
|
|
UCHAR DriveMapCount; // Count of drives currently mapped
|
|
|
|
CHAR DriveMap[8]; // Map of BIOS drives
|
|
|
|
} PACKED DRIVE_MAP_LIST, *PDRIVE_MAP_LIST;
|
|
|
|
VOID DriveMapMapDrivesInSection(PCSTR SectionName);
|
|
BOOLEAN DriveMapIsValidDriveString(PCSTR DriveString); // Checks the drive string ("hd0") for validity
|
|
ULONG DriveMapGetBiosDriveNumber(PCSTR DeviceName); // Returns a BIOS drive number for any given device name (e.g. 0x80 for 'hd0')
|
|
VOID DriveMapInstallInt13Handler(PDRIVE_MAP_LIST DriveMap); // Installs the int 13h handler for the drive mapper
|
|
VOID DriveMapRemoveInt13Handler(VOID); // Removes a previously installed int 13h drive map handler
|
|
|
|
extern PVOID DriveMapInt13HandlerStart;
|
|
extern PVOID DriveMapInt13HandlerEnd;
|
|
extern ULONG DriveMapOldInt13HandlerAddress;
|
|
extern DRIVE_MAP_LIST DriveMapInt13HandlerMapList;
|
|
|
|
#endif // #defined __DRIVEMAP_H
|