qsa_interface.h 468 B

123456789101112131415161718
  1. #ifndef __PA_QSA_INTERFACE_H
  2. #define __PA_QSA_INTERFACE_H
  3. int pa_qsa_interface_init();
  4. void pa_qsa_interface_destroy();
  5. #include "presentity.h"
  6. int notify_qsa_watchers(presentity_t *p);
  7. int notify_internal_watcher(presentity_t *p, internal_pa_subscription_t *ss);
  8. void free_internal_subscription(internal_pa_subscription_t *is);
  9. int subscribe_to_user(presentity_t *_p);
  10. int unsubscribe_to_user(presentity_t *_p);
  11. extern int accept_internal_subscriptions;
  12. #endif