This repository has been archived by the owner. It is now read-only.
Permalink
Cannot retrieve contributors at this time
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?
ImageIO/andor/AndorSIF/ATLibraryExport.h
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
19 lines (16 sloc)
395 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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 |