12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #ifndef _GENCAP_API_H_
- #define _GENCAP_API_H_
- #ifdef DEVICECAPACITY_EXPORTS
- #define DEVICECAP_API extern "C" __declspec(dllexport)
- #else
- #define DEVICECAP_API extern "C" __declspec(dllimport)
- #endif
- //////GEN CAPACITY BEGIN////////////////////////////////////////////////////////////////////
- typedef struct GenTechMode
- {
- bool bGenAEC;
- bool bGenTIME;
- bool bGenMAS;
- };
- typedef struct GENCAP
- {
- bool bDemo; //ÊÇ·ñÕæÊµÁ¬½Ó
- bool bGenBattery;
- bool bGenHU;
- bool bGenDose;
- GenTechMode genTechMode;
- GENCAP()
- {
- bDemo = 0;
- bGenBattery = 0;
- bGenHU = 0;
- bGenDose = 0;
- genTechMode.bGenMAS = 0;
- genTechMode.bGenAEC = 0;
- genTechMode.bGenTIME = 0;
- }
- };
- //////GEN CAPACITY END////////////////////////////////////////////////////////////////////
- DEVICECAP_API bool GENCapEncode( GENCAP genCap,wchar_t *strGENCap);
- #endif
|