DetectorAPI.h 342 B

1234567891011121314151617181920
  1. #ifndef __DETECTOR_API_H
  2. #define __DETECTOR_API_H
  3. #include "Detector.h"
  4. #include "Types.h"
  5. extern "C"
  6. {
  7. SDKAPI TZ_INT Initialize();
  8. SDKAPI TZ_INT Dispose();
  9. SDKAPI masd::Detector* BuildDetector();
  10. SDKAPI void DestroyDetector(masd::Detector * detector);
  11. SDKAPI TZ_INT GetInformation(TZ_CHAR * information);
  12. }
  13. #endif