1
0
mirror of synced 2024-11-24 15:50:16 +01:00

fix: Compile on MacOS

This commit is contained in:
WerWolv 2021-12-12 01:06:24 +01:00
parent 15e38e1012
commit 883207bc6b

View File

@ -5,7 +5,14 @@
#include <bitset> #include <bitset>
#include <filesystem> #include <filesystem>
#if defined (OS_LINUX) || defined (OS_MACOS) #if defined (OS_LINUX)
#include <sys/types.h>
#include <unistd.h>
#define lseek lseek64
#endif
#if defined (OS_MACOS)
#include <sys/types.h> #include <sys/types.h>
#include <unistd.h> #include <unistd.h>
#endif #endif
@ -167,7 +174,7 @@ namespace hex::plugin::builtin::prv {
u64 seekPosition = offset - (offset % this->m_sectorSize); u64 seekPosition = offset - (offset % this->m_sectorSize);
if (this->m_sectorBufferAddress != seekPosition) { if (this->m_sectorBufferAddress != seekPosition) {
::lseek64(this->m_diskHandle, seekPosition, SEEK_SET); ::lseek(this->m_diskHandle, seekPosition, SEEK_SET);
::read(this->m_diskHandle, buffer, size); ::read(this->m_diskHandle, buffer, size);
this->m_sectorBufferAddress = seekPosition; this->m_sectorBufferAddress = seekPosition;
} }
@ -221,7 +228,7 @@ namespace hex::plugin::builtin::prv {
this->readRaw(sectorBase, modifiedSectorBuffer.data(), modifiedSectorBuffer.size()); this->readRaw(sectorBase, modifiedSectorBuffer.data(), modifiedSectorBuffer.size());
std::memcpy(modifiedSectorBuffer.data() + ((offset - sectorBase) % this->m_sectorSize), reinterpret_cast<const u8*>(buffer) + (startOffset - offset), currSize); std::memcpy(modifiedSectorBuffer.data() + ((offset - sectorBase) % this->m_sectorSize), reinterpret_cast<const u8*>(buffer) + (startOffset - offset), currSize);
::lseek64(this->m_diskHandle, sectorBase, SEEK_SET); ::lseek(this->m_diskHandle, sectorBase, SEEK_SET);
::write(this->m_diskHandle, modifiedSectorBuffer.data(), modifiedSectorBuffer.size()); ::write(this->m_diskHandle, modifiedSectorBuffer.data(), modifiedSectorBuffer.size());
offset += currSize; offset += currSize;