Skip to content

Commit

Permalink
Removed changes from last commit that didn't belong
Browse files Browse the repository at this point in the history
  • Loading branch information
theraysmith committed Jul 14, 2017
1 parent 3ec11bd commit 7588540
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 0 additions & 1 deletion api/apitypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
#define TESSERACT_API_APITYPES_H_

#include "publictypes.h"
#include "version.h"

// The types used by the API and Page/ResultIterator can be found in:
// ccstruct/publictypes.h
Expand Down
4 changes: 4 additions & 0 deletions api/baseapi.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@
#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>
// To avoid collision with other typenames include the ABSOLUTE MINIMUM
// complexity of includes here. Use forward declarations wherever possible
Expand Down

0 comments on commit 7588540

Please sign in to comment.