1234567891011121314151617181920 |
- #pragma once
- #ifdef WIN_64BIT
- #ifdef _DEBUG
- #pragma comment(lib, "GetEXI.lib")
- #else
- #pragma comment(lib, "GetEXI.lib")
- #endif
- #else
- #ifdef _DEBUG
- #pragma comment(lib, "GetEXI.lib") //¶ÔµÄ
- #else
- #pragma comment(lib, "GetEXI.lib")
- #endif
- #endif
- #define HW_API typedef __declspec(dllimport)
- HW_API int GetEXI4Detector( WORD* pImage, BYTE* pMask, BYTE* pMask1,int nWidth, int nHeight, int ImageBit, int &EXI ) ;
- extern "C" int __declspec(dllimport) GetEXI4DetectorForV3P1( WORD* pImage, BYTE* pMask, BYTE* pMask1, int nWidth, int nHeight, int ImageBit, int &EXI );
|