00001
00002
00003
00004 #ifndef DVDID__EXPORT_H
00005 #define DVDID__EXPORT_H
00006
00007 #if defined(DVDID__NO_DLL) || !defined(_MSC_VER)
00008
00009 #define DVDID_API(type) type
00010 #define DVDID_CALLBACK
00011
00012 #else
00013
00014 #ifdef DVDID_API_EXPORTS
00015
00016 #define DVDID_API(type) type __stdcall
00017 #else
00018 #define DVDID_API(type) __declspec(dllimport) type __stdcall
00019 #endif
00020
00021 #define DVDID_CALLBACK __stdcall
00022
00023 #endif
00024
00028 #define DVDID_API_VERSION_CURRENT 0
00029 #define DVDID_API_VERSION_REVISION 0
00030 #define DVDID_API_VERSION_AGE 0
00031
00032 #endif