diff options
| author | Amlal El Mahrouss <amlalelmahrouss@icloud.com> | 2024-03-01 17:48:59 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlalelmahrouss@icloud.com> | 2024-03-01 17:48:59 +0100 |
| commit | 018a48921cdae58d8dec9b06e63300952279c9b3 (patch) | |
| tree | 8e1bd72aa9f425b870427ef0eca23b0442d2e40f | |
| parent | d08c678da62fca6e13500037da5daf77e8cf0401 (diff) | |
XIFF: Update XIFF container.
Signed-off-by: Amlal El Mahrouss <amlalelmahrouss@icloud.com>
| -rw-r--r-- | Public/Kits/SystemKit/XIFF.hxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Public/Kits/SystemKit/XIFF.hxx b/Public/Kits/SystemKit/XIFF.hxx index acaf9103..29726a14 100644 --- a/Public/Kits/SystemKit/XIFF.hxx +++ b/Public/Kits/SystemKit/XIFF.hxx @@ -14,13 +14,16 @@ #include <SystemKit/CoreAPI.hxx> +/// @brief four-character code for XIFF. +#define kFourCCLength_XIFF 4 + /*** * @brief Generic XIFF header * Used by XIFF based containers. */ struct PACKED XiffHeader final { - BYTE f_Mag[5]; // XIFF string (includes \0) + BYTE f_Mag[kFourCCLength_XIFF]; // XIFF string (includes \0) DWORD f_Size; // overall size of header (XiffHeader) in bytes DWORD f_FormatType; // format type. generic BYTE f_SpecificMag[4]; // The sub header magic |
