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

LibGfx: Move MultiLocalizedUnicodeRawRecord to BinaryFormat.h

This commit is contained in:
Nico Weber 2023-02-17 20:29:02 -05:00 committed by Andreas Kling
parent 4e72a35398
commit 4a62cf35fc
2 changed files with 11 additions and 10 deletions

View file

@ -130,4 +130,13 @@ struct CLUTHeader {
};
static_assert(AssertSize<CLUTHeader, 20>());
// ICC v4, 10.15 multiLocalizedUnicodeType
struct MultiLocalizedUnicodeRawRecord {
BigEndian<u16> language_code;
BigEndian<u16> country_code;
BigEndian<u32> string_length_in_bytes;
BigEndian<u32> string_offset_in_bytes;
};
static_assert(AssertSize<MultiLocalizedUnicodeRawRecord, 12>());
}