#ifndef _NTCON_COMPILER_H_ #define _NTCON_COMPILER_H_ #include "ntcon_abi.h" #ifndef _MIDIPIX_FREESTANDING #ifdef _MSC_VER /* visual studio: begin */ #ifndef __attr_export__ #define __attr_export__ __declspec(dllexport) #define __attr_import__ __declspec(dllimport) #endif /* visual studio: end */ #else /* all other compilers: begin */ #ifndef __attr_export__ #define __attr_export__ __attribute__((__dllexport__)) #define __attr_import__ __attribute__((__dllimport__)) #endif /* all other compilers: end */ #endif #endif #endif