add hmml_version variable
This commit is contained in:
parent
df5fe8de03
commit
c7d764c0a6
|
@ -95,4 +95,10 @@ HMML_Output hmml_parse_file (FILE* file);
|
||||||
void hmml_dump (HMML_Output* output);
|
void hmml_dump (HMML_Output* output);
|
||||||
void hmml_free (HMML_Output* output);
|
void hmml_free (HMML_Output* output);
|
||||||
|
|
||||||
|
// Version
|
||||||
|
|
||||||
|
extern const struct HMML_Version {
|
||||||
|
int Major, Minor, Patch;
|
||||||
|
} hmml_version;
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -5,6 +5,8 @@
|
||||||
#include "stb_sb.h"
|
#include "stb_sb.h"
|
||||||
#include "hmmlib.h"
|
#include "hmmlib.h"
|
||||||
|
|
||||||
|
const struct HMML_Version hmml_version = { 0, 1, 0 };
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
int line;
|
int line;
|
||||||
HMML_Annotation* annos;
|
HMML_Annotation* annos;
|
||||||
|
|
Loading…
Reference in New Issue