123456789101112131415161718192021 |
- #ifndef __STRATEGYAPI_H
- #define __STRATEGYAPI_H
- #include "Strategy.h"
- #include "Types.h"
- extern "C"
- {
- SDKAPI TZ_INT Initialize();
- SDKAPI TZ_INT Dispose();
- SDKAPI masd::Strategy * BuildStrategy();
- SDKAPI void DestroyStrategy(masd::Strategy * strategy);
- SDKAPI TZ_INT GetInformation(TZ_CHAR * informatrion);
- };
- #endif
|