Skip to content

Commit 7588540

Browse files
committed
Removed changes from last commit that didn't belong
1 parent 3ec11bd commit 7588540

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

api/apitypes.h

-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
#define TESSERACT_API_APITYPES_H_
2222

2323
#include "publictypes.h"
24-
#include "version.h"
2524

2625
// The types used by the API and Page/ResultIterator can be found in:
2726
// ccstruct/publictypes.h

api/baseapi.h

+4
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@
2020
#ifndef TESSERACT_API_BASEAPI_H_
2121
#define TESSERACT_API_BASEAPI_H_
2222

23+
#define TESSERACT_VERSION_STR "4.00.00alpha"
24+
#define TESSERACT_VERSION 0x040000
25+
#define MAKE_VERSION(major, minor, patch) (((major) << 16) | ((minor) << 8) | \
26+
(patch))
2327
#include <stdio.h>
2428
// To avoid collision with other typenames include the ABSOLUTE MINIMUM
2529
// complexity of includes here. Use forward declarations wherever possible

0 commit comments

Comments
 (0)