You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pEpEngine/src/dynamic_api.h

23 lines
379 B
C

/**
* @internal
* @file dynamic_api.h
* @brief defines for windows API export
* @license GNU General Public License 3.0 - see LICENSE.txt
*/
#ifndef DYNAMIC_API_H
#define DYNAMIC_API_H
#ifdef WIN32
#ifdef _EXPORT_PEP_ENGINE_DLL
#define DYNAMIC_API __declspec(dllexport)
#else
#define DYNAMIC_API __declspec(dllimport)
#endif
#else
#define DYNAMIC_API
#endif
#endif