Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
b2faf8451a
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
19 lines (16 sloc) 395 Bytes
#ifndef ATLIBRARYEXPORT_H
#define ATLIBRARYEXPORT_H
#ifdef __cplusplus
#define AT_EXTERN_MOD extern "C"
#else
#define AT_EXTERN_MOD
#endif
#if defined(__WIN32__) || defined(_WIN32)
#include <windows.h>
#define AT_EXP_MOD AT_EXTERN_MOD __declspec(dllexport)
#define AT_EXP_CONV WINAPI
#else
#define AT_EXP_MOD AT_EXTERN_MOD
#define AT_EXP_CONV
#endif
#endif