You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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
|
||
|
|