Version info

This commit is contained in:
Paul Hollinsky
2018-10-29 16:35:14 -04:00
parent 37ef932e03
commit 4f91d0775f
8 changed files with 80 additions and 2 deletions
+24
View File
@@ -0,0 +1,24 @@
#ifndef __ICSNEO_API_VERSION_H_
#define __ICSNEO_API_VERSION_H_
#include <stdint.h>
typedef struct {
uint16_t major;
uint16_t minor;
uint16_t patch;
const char* metadata;
const char* buildBranch;
const char* buildTag;
char reserved[32];
} neoversion_t;
#ifdef __cplusplus
namespace icsneo {
neoversion_t GetVersion(void);
}
#endif
#endif