atnds_cdecl.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031 #ifndef _ATNDS_CDECL_H
00032 #define _ATNDS_CDECL_H
00033
00034 #ifdef __cplusplus
00035
00036 #define ATNDS_CDECL extern "C"
00037 #define ATNDS_CSPEC extern "C"
00038 #define ATNDS_CTYPE "C"
00039
00040 #else
00041
00042 #define ATNDS_CDECL extern
00043 #define ATNDS_CSPEC
00044 #define ATNDS_CTYPE
00045
00046 #endif
00047
00048 #ifdef _WIN32
00049
00050 # ifdef ATNDS
00051 # define LIBATNDS_CDECL ATNDS_CSPEC __declspec(dllexport)
00052 # else
00053 # define LIBATNDS_CDECL ATNDS_CSPEC __declspec(dllimport)
00054 # endif
00055
00056 #else
00057
00058 # define LIBATNDS_CDECL extern ATNDS_CTYPE
00059
00060 #endif
00061
00062 #endif