1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 13:17:35 +00:00

AK: Rename the common integer typedefs to make it obvious what they are.

These types can be picked up by including <AK/Types.h>:

* u8, u16, u32, u64 (unsigned)
* i8, i16, i32, i64 (signed)
This commit is contained in:
Andreas Kling 2019-07-03 21:17:35 +02:00
parent c4c4bbc5ba
commit 27f699ef0c
208 changed files with 1603 additions and 1621 deletions

View file

@ -8,23 +8,23 @@
#define MBR_SIGNATURE 0xaa55
struct MBRPartitionEntry {
byte status;
byte chs1[3];
byte type;
byte chs2[3];
dword offset;
dword length;
u8 status;
u8 chs1[3];
u8 type;
u8 chs2[3];
u32 offset;
u32 length;
} __attribute__((packed));
struct MBRPartitionHeader {
byte code1[218];
word ts_zero;
byte ts_drive, ts_seconds, ts_minutes, ts_hours;
byte code2[216];
dword disk_signature;
word disk_signature_zero;
u8 code1[218];
u16 ts_zero;
u8 ts_drive, ts_seconds, ts_minutes, ts_hours;
u8 code2[216];
u32 disk_signature;
u16 disk_signature_zero;
MBRPartitionEntry entry[4];
word mbr_signature;
u16 mbr_signature;
} __attribute__((packed));
class MBRPartitionTable {
@ -43,5 +43,5 @@ private:
ByteBuffer read_header() const;
const MBRPartitionHeader& header() const;
byte m_cached_header[512];
u8 m_cached_header[512];
};