Move freeldr to reactos\boot\freeldr.
[reactos.git] / freeldr / freeldr / include / drivemap.h
diff --git a/freeldr/freeldr/include/drivemap.h b/freeldr/freeldr/include/drivemap.h
deleted file mode 100644 (file)
index af4b1c9..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-/*
- *  FreeLoader
- *  Copyright (C) 1998-2003  Brian Palmer  <brianp@sginet.com>
- *
- *  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
-{
-       U8              DriveMapCount;          // Count of drives currently mapped
-
-       U8              DriveMap[8];            // Map of BIOS drives
-
-} PACKED DRIVE_MAP_LIST, *PDRIVE_MAP_LIST;
-
-VOID   DriveMapMapDrivesInSection(PUCHAR SectionName);
-BOOL   DriveMapIsValidDriveString(PUCHAR DriveString);                 // Checks the drive string ("hd0") for validity
-U32            DriveMapGetBiosDriveNumber(PUCHAR 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 U32                             DriveMapOldInt13HandlerAddress;
-extern DRIVE_MAP_LIST  DriveMapInt13HandlerMapList;
-
-#endif // #defined __DRIVEMAP_H