sp_sps.h 598 B

12345678910111213141516171819202122232425262728293031
  1. /***********************************//**
  2. * @file sp_sps.h
  3. * @copyright China Merchants Bank Co.,Ltd All rights reserved
  4. *
  5. * @brief silverlight
  6. * @details
  7. **************************************/
  8. #ifndef __SP_SPS_H
  9. #define __SP_SPS_H
  10. #pragma once
  11. #ifdef __cplusplus
  12. extern "C"
  13. {
  14. #endif
  15. /** silver-light policy server */
  16. typedef struct sp_sps_t sp_sps_t;
  17. SPBASE_API int sp_sps_create(sp_sps_t **p_sps);
  18. SPBASE_API int sp_sps_start(sp_sps_t *sps);
  19. SPBASE_API void sp_sps_stop(sp_sps_t *sps);
  20. SPBASE_API void sp_sps_destroy(sp_sps_t *sps);
  21. #ifdef __cplusplus
  22. }
  23. #endif
  24. #endif // __SP_SPS_H