mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-12-14 00:31:47 +08:00
15 lines
213 B
C
15 lines
213 B
C
|
// Place holder
|
||
|
#define DLLSYM
|
||
|
#ifdef __MSW32__
|
||
|
#define SIGNED
|
||
|
#else
|
||
|
#define __UNIX__
|
||
|
#include <limits.h>
|
||
|
#ifndef PATH_MAX
|
||
|
#define MAX_PATH 4096
|
||
|
#else
|
||
|
#define MAX_PATH PATH_MAX
|
||
|
#endif
|
||
|
#define SIGNED signed
|
||
|
#endif
|