libkipr  1.0.0
export.h
Go to the documentation of this file.
1 #ifndef _KIPR_EXPORT_EXPORT_H_
2 #define _KIPR_EXPORT_EXPORT_H_
3 
4 #ifdef WIN32
5 #define EXPORT_SYM __declspec(dllexport)
6 #else
7 #define EXPORT_SYM
8 #endif
9 
10 #endif