Chameleon

Chameleon Svn Source Tree

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

Source at commit 1088 created 12 years 10 months ago.
By meklort, Fix compiling
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; };
21 virtual bool probe() { return isValid(); };
22 virtual UInt32 bytesPerSector() { return mBytesPerSector; };
23protected:
24 const char *mName;
25 const char *mBusType;
26
27 UInt32 mBytesPerSector;
28private:
29
30};
31
32#endif /* DISK_H */
33

Archive Download this file

Revision: 1088