7 lines
122 B
C
7 lines
122 B
C
#include <stdint.h>
|
|
#include <cstdlib>
|
|
|
|
struct BoxHeader {
|
|
uint32_t TotalSize;
|
|
uint32_t BoxType;
|
|
};//BoxHeader struct
|