mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-12-29 02:31:05 +00:00
21 lines
569 B
C
21 lines
569 B
C
#ifndef EBMLBUFFERWRITER_HPP
|
|
#define EBMLBUFFERWRITER_HPP
|
|
|
|
typedef struct {
|
|
unsigned long long offset;
|
|
} EbmlLoc;
|
|
|
|
typedef struct {
|
|
unsigned char *buf;
|
|
unsigned int length;
|
|
unsigned int offset;
|
|
} EbmlGlobal;
|
|
|
|
void Ebml_Write(EbmlGlobal *glob, const void *buffer_in, unsigned long len);
|
|
void Ebml_Serialize(EbmlGlobal *glob, const void *buffer_in,
|
|
int buffer_size, unsigned long len);
|
|
void Ebml_StartSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc, unsigned long class_id);
|
|
void Ebml_EndSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc);
|
|
|
|
#endif
|