mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-11-25 03:29:05 +08:00
35deb0e6e7
git-svn-id: https://tesseract-ocr.googlecode.com/svn/trunk@180 d0cd1f9f-072b-0410-8dd7-cf729c803f20
19 lines
299 B
C
19 lines
299 B
C
// Place holder
|
|
#define DLLSYM
|
|
#ifdef __MSW32__
|
|
#define SIGNED
|
|
#define snprintf _snprintf
|
|
#if (_MSC_VER <= 1400)
|
|
#define vsnprintf _vsnprintf
|
|
#endif
|
|
#else
|
|
#define __UNIX__
|
|
#include <limits.h>
|
|
#ifndef PATH_MAX
|
|
#define MAX_PATH 4096
|
|
#else
|
|
#define MAX_PATH PATH_MAX
|
|
#endif
|
|
#define SIGNED signed
|
|
#endif
|