18 lines
290 B
18 lines
290 B
14 years ago
|
/*
|
||
|
This file provides some common configuration definitions for PDF merge library
|
||
|
Is intended for multiplatform support
|
||
|
*/
|
||
|
#ifndef CONFIG_H_INCLUDE
|
||
|
#define CONFIG_H_INCLUDE
|
||
|
|
||
|
#ifdef WIN32
|
||
|
|
||
|
#define _CRT_SECURE_NO_WARNINGS
|
||
|
#define snprintf _snprintf
|
||
|
|
||
|
#endif
|
||
|
|
||
|
|
||
|
#endif // CONFIG_H_INCLUDE
|
||
|
|