1234567891011121314151617181920212223242526272829303132 |
- /***********************************//**
- * @file sp_sps.h
- * @copyright China Merchants Bank Co.,Ltd All rights reserved
- *
- * @brief silverlight
- * @details
- **************************************/
- #ifndef __SP_SPS_H
- #define __SP_SPS_H
- #pragma once
- //TODO: CrossPlaform 评审是否需要移除,目前不走Slierlight这一套,直接用Websocket通讯 [Gifur@2025820]
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- /** silver-light policy server */
- typedef struct sp_sps_t sp_sps_t;
- SPBASE_API int sp_sps_create(sp_sps_t **p_sps);
- SPBASE_API int sp_sps_start(sp_sps_t *sps);
- SPBASE_API void sp_sps_stop(sp_sps_t *sps);
- SPBASE_API void sp_sps_destroy(sp_sps_t *sps);
- #ifdef __cplusplus
- }
- #endif
- #endif // __SP_SPS_H
|