This commit is contained in:
Alex 2022-11-02 17:13:11 +02:00
parent 83d5397584
commit 7e7e89342d
Signed by untrusted user who does not match committer: enderice2
GPG Key ID: EACC3AD603BAB4DD

View File

@ -94,8 +94,8 @@ namespace Disk
PartitionStyle Style = PartitionStyle::Unknown; PartitionStyle Style = PartitionStyle::Unknown;
size_t Index = 0; size_t Index = 0;
uint64_t Read(uint64_t Offset, uint64_t Count, uint8_t *Buffer) {return 0;} uint64_t Read(uint64_t Offset, uint64_t Count, uint8_t *Buffer) { return 0; }
uint64_t Write(uint64_t Offset, uint64_t Count, uint8_t *Buffer) {return 0;} uint64_t Write(uint64_t Offset, uint64_t Count, uint8_t *Buffer) { return 0; }
Partition() {} Partition() {}
~Partition() {} ~Partition() {}
}; };
@ -111,8 +111,8 @@ namespace Disk
bool MechanicalDisk = false; bool MechanicalDisk = false;
uint64_t UniqueIdentifier = 0xdeadbeef; uint64_t UniqueIdentifier = 0xdeadbeef;
uint64_t Read(uint64_t Offset, uint64_t Count, uint8_t *Buffer) {return 0;} uint64_t Read(uint64_t Offset, uint64_t Count, uint8_t *Buffer) { return 0; }
uint64_t Write(uint64_t Offset, uint64_t Count, uint8_t *Buffer) {return 0;} uint64_t Write(uint64_t Offset, uint64_t Count, uint8_t *Buffer) { return 0; }
Drive() Drive()
{ // TODO: Allocate buffer { // TODO: Allocate buffer
} }