Chameleon

Chameleon Svn Source Tree

Root/branches/rewrite/i386/modules/BiosDisk/include/Disk.hpp

Source at commit 1079 created 12 years 9 months ago.
By meklort, began implimenting Bios disk changes. Code taken from biosfn.c
1/*
2 * Copyright (c) 2011 Evan Lojewski. All rights reserved.
3 *
4 */
5#ifndef DISK_H
6#define DISK_H
7
8#include <IOKit/IOTypes.h>
9
10class Disk
11{
12public:
13 Disk();
14 Disk(const char* name);
15 ~Disk();
16
17 virtual IOReturn Read(UInt64 sector, UInt64 size, UInt8* buffer) = 0;
18 virtual IOReturn Write(UInt64 sector, UInt64 size, UInt8* buffer) = 0;
19
20 virtual bool isValid() { return mName != NULL && mBytesPerSector; };
21protected:
22 const char *mName;
23 const char *mBusType;
24
25 UInt32 mBytesPerSector;
26private:
27
28};
29
30#endif /* DISK_H */
31

Archive Download this file

Revision: 1079