c6b9039fd9
Approximate the Google style guide[1] so that that there's a written document to follow and tools to check compliance[2]. [1]: http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml [2]: http://google-styleguide.googlecode.com/svn/trunk/cpplint/cpplint.py Change-Id: Idf40e3d8dddcc72150f6af127b13e5dab838685f
20 lines
376 B
C
20 lines
376 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_StartSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc, unsigned long class_id);
|
|
void Ebml_EndSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc);
|
|
|
|
|
|
#endif
|