1234567891011121314151617181920 |
- #ifndef __DETECTOR_API_H
- #define __DETECTOR_API_H
- #include "Detector.h"
- #include "Types.h"
- extern "C"
- {
- SDKAPI TZ_INT Initialize();
- SDKAPI TZ_INT Dispose();
- SDKAPI masd::Detector* BuildDetector();
- SDKAPI void DestroyDetector(masd::Detector * detector);
- SDKAPI TZ_INT GetInformation(TZ_CHAR * information);
- }
- #endif
|