CalEXI.h 566 B

1234567891011121314151617181920
  1. #pragma once
  2. #ifdef WIN_64BIT
  3. #ifdef _DEBUG
  4. #pragma comment(lib, "GetEXI.lib")
  5. #else
  6. #pragma comment(lib, "GetEXI.lib")
  7. #endif
  8. #else
  9. #ifdef _DEBUG
  10. #pragma comment(lib, "GetEXI.lib") //¶ÔµÄ
  11. #else
  12. #pragma comment(lib, "GetEXI.lib")
  13. #endif
  14. #endif
  15. #define HW_API typedef __declspec(dllimport)
  16. HW_API int GetEXI4Detector( WORD* pImage, BYTE* pMask, BYTE* pMask1,int nWidth, int nHeight, int ImageBit, int &EXI ) ;
  17. extern "C" int __declspec(dllimport) GetEXI4DetectorForV3P1( WORD* pImage, BYTE* pMask, BYTE* pMask1, int nWidth, int nHeight, int ImageBit, int &EXI );