mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-07-08 13:59:17 +00:00
Updated types
This commit is contained in:
@ -23,7 +23,7 @@ namespace FileSystem
|
||||
uint32_t length;
|
||||
};
|
||||
|
||||
Initrd(uint64_t Address);
|
||||
Initrd(uintptr_t Address);
|
||||
~Initrd();
|
||||
};
|
||||
}
|
||||
|
@ -88,7 +88,7 @@ namespace FileSystem
|
||||
class FB
|
||||
{
|
||||
public:
|
||||
void SetFrameBufferData(uint64_t Address, uint64_t Size, uint32_t Width, uint32_t Height, uint32_t PixelsPerScanLine);
|
||||
void SetFrameBufferData(uintptr_t Address, size_t Size, uint32_t Width, uint32_t Height, uint32_t PixelsPerScanLine);
|
||||
FB();
|
||||
~FB();
|
||||
};
|
||||
|
@ -44,7 +44,7 @@ namespace FileSystem
|
||||
private:
|
||||
uint32_t getsize(const char *s)
|
||||
{
|
||||
uint64_t ret = 0;
|
||||
uint32_t ret = 0;
|
||||
while (*s)
|
||||
{
|
||||
ret *= 8;
|
||||
@ -63,7 +63,7 @@ namespace FileSystem
|
||||
}
|
||||
|
||||
public:
|
||||
USTAR(uint64_t Address, Virtual *vfs);
|
||||
USTAR(uintptr_t Address, Virtual *vfs);
|
||||
~USTAR();
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user