1234567891011121314151617181920212223 |
- // 下列 ifdef 块是创建使从 DLL 导出更简单的
- // 宏的标准方法。此 DLL 中的所有文件都是用命令行上定义的 FPDCALIBRATION_EXPORTS
- // 符号编译的。在使用此 DLL 的
- // 任何其他项目上不应定义此符号。这样,源文件中包含此文件的任何其他项目都会将
- // FPDCALIBRATION_API 函数视为是从 DLL 导入的,而此 DLL 则将用此宏定义的
- // 符号视为是被导出的。
- //#include<vld.h>
- #ifdef FPDCALIBRATION_EXPORTS
- #define FPDCALIBRATION_API __declspec(dllexport)
- #else
- #define FPDCALIBRATION_API __declspec(dllimport)
- #endif
- // 此类是从 FPDCalibration.dll 导出的
- class FPDCALIBRATION_API CFPDCalibration {
- public:
- CFPDCalibration(void);
- // TODO: 在此添加您的方法。
- };
- extern FPDCALIBRATION_API int nFPDCalibration;
- FPDCALIBRATION_API int fnFPDCalibration(void);
|