apngasm
 All Classes Namespaces Functions Variables
apngasm-conf.h
1 #ifndef _CONF_H_
2 #define _CONF_H_
3 
4 #define APNG_WRITE_SUPPORTED
5 #define APNG_READ_SUPPORTED
6 #define APNG_SPECS_SUPPORTED
7 
8 #ifndef APNGASM_DECLSPEC
9  #ifdef _WINDOWS
10  #ifdef apngasm_EXPORTS
11  #define APNGASM_DECLSPEC __declspec(dllexport)
12  #else
13  #define APNGASM_DECLSPEC __declspec(dllimport)
14  #endif
15  #else
16  #define APNGASM_DECLSPEC
17  #endif
18 #endif
19 
20 #endif
21