We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ec11bd commit 7588540Copy full SHA for 7588540
api/apitypes.h
@@ -21,7 +21,6 @@
21
#define TESSERACT_API_APITYPES_H_
22
23
#include "publictypes.h"
24
-#include "version.h"
25
26
// The types used by the API and Page/ResultIterator can be found in:
27
// ccstruct/publictypes.h
api/baseapi.h
@@ -20,6 +20,10 @@
20
#ifndef TESSERACT_API_BASEAPI_H_
#define TESSERACT_API_BASEAPI_H_
+#define TESSERACT_VERSION_STR "4.00.00alpha"
+#define TESSERACT_VERSION 0x040000
+#define MAKE_VERSION(major, minor, patch) (((major) << 16) | ((minor) << 8) | \
+ (patch))
#include <stdio.h>
28
// To avoid collision with other typenames include the ABSOLUTE MINIMUM
29
// complexity of includes here. Use forward declarations wherever possible
0 commit comments