[trunk] Quick fix for MS compilers which do not ship inttypes.h
This commit is contained in:
parent
811c01cc2e
commit
96d4d3f3be
|
@ -36,6 +36,8 @@
|
|||
#include "opj_includes.h"
|
||||
#ifdef HAVE_INTTYPES_H
|
||||
#include <inttypes.h> /* PRIi64 */
|
||||
#else
|
||||
#define PRIi64 "I64i"
|
||||
#endif
|
||||
|
||||
/** @defgroup J2K J2K - JPEG-2000 codestream reader/writer */
|
||||
|
|
Loading…
Reference in New Issue