libkovan  1
The kovan standard library
export.h
Go to the documentation of this file.
1 #ifndef __EXPORT_DLL_H__
2 #define __EXPORT_DLL_H__
3 
4 #ifdef WIN32
5 #define EXPORT_SYM __declspec(dllexport)
6 #else
7 #define EXPORT_SYM
8 #endif
9 
10 #endif