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:
parent
4e72a35398
commit
4a62cf35fc
2 changed files with 11 additions and 10 deletions
|
@ -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>());
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue