CalWindow.h 477 B

123456789101112
  1. #ifndef FREFILTER_H
  2. #define FREFILTER_H
  3. #ifdef _EXPORTING
  4. #define FUNC_DECLSPEC __declspec(dllexport)
  5. #else
  6. #define FUNC_DECLSPEC __declspec(dllimport)
  7. #endif
  8. extern "C" int __declspec(dllexport) GetEXI4Detector( WORD* pImage, BYTE* pMask, BYTE* pMask1,int nWidth, int nHeight, int ImageBit, int &EXI ) ;
  9. extern "C" int __declspec(dllimport) GetEXI4DetectorForV3P1( WORD* pImage, BYTE* pMask, BYTE* pMask1, int nWidth, int nHeight, int ImageBit, int &EXI );
  10. #endif