1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2025-11-12 19:38:26 -06:00

Windows: reduce size of MBR bootloader by removing unused functions in each build type.

This commit is contained in:
Mounir IDRASSI
2017-07-21 15:21:13 +02:00
parent 0fb2befe3a
commit ff871511af
8 changed files with 36 additions and 77 deletions

View File

@@ -43,17 +43,3 @@ uint64 MirrorBytes64 (uint64 x)
}
#endif
void
LongReverse (unsigned __int32 *buffer, unsigned byteCount)
{
unsigned __int32 value;
byteCount /= sizeof (unsigned __int32);
while (byteCount--)
{
value = *buffer;
value = ((value & 0xFF00FF00L) >> 8) | \
((value & 0x00FF00FFL) << 8);
*buffer++ = (value << 16) | (value >> 16);
}
}