19 lines
299 B
C
19 lines
299 B
C
#ifndef RT_PACKAGES_H
|
|
#define RT_PACKAGES_H
|
|
|
|
#ifdef RT_DEFINE_PACKAGE_FILE_STRUCTURES
|
|
|
|
#include <stdint.h>
|
|
#include "xxhash/xxhash.h"
|
|
|
|
#pragma pack(push, 1)
|
|
typedef struct {
|
|
XXH64_canonical_t checksum;
|
|
uint32_t decompressed_size;
|
|
} rt_package_asset_header;
|
|
#pragma pack(pop)
|
|
|
|
#endif
|
|
|
|
#endif
|