12345678910111213141516171819202122232425262728293031 |
- /***********************************//**
- * @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
- #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
|