094cedc807
git-svn-id: https://pupnp.svn.sourceforge.net/svnroot/pupnp/trunk@379 119443c7-1b9e-41f8-b6fc-b9c35fce742c
64 lines
1.9 KiB
C
64 lines
1.9 KiB
C
|
|
|
|
#ifndef EVENTSUBSCRIBE_H
|
|
#define EVENTSUBSCRIBE_H
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
/** Returned along with a \b UPNP_EVENT_SUBSCRIBE_COMPLETE or
|
|
* \b UPNP_EVENT_UNSUBSCRIBE_COMPLETE callback. */
|
|
typedef struct {} UpnpEventSubscribe;
|
|
|
|
|
|
#include "UpnpString.h"
|
|
|
|
|
|
/** Constructor */
|
|
UpnpEventSubscribe *UpnpEventSubscribe_new();
|
|
|
|
/** Destructor */
|
|
void UpnpEventSubscribe_delete(UpnpEventSubscribe *p);
|
|
|
|
/** Copy Constructor */
|
|
UpnpEventSubscribe *UpnpEventSubscribe_dup(const UpnpEventSubscribe *p);
|
|
|
|
/** Assignment operator */
|
|
void UpnpEventSubscribe_assign(UpnpEventSubscribe *q, const UpnpEventSubscribe *p);
|
|
|
|
/** The result of the operation. */
|
|
int UpnpEventSubscribe_get_ErrCode(const UpnpEventSubscribe *p);
|
|
void UpnpEventSubscribe_set_ErrCode(UpnpEventSubscribe *p, int n);
|
|
|
|
/** The actual subscription time (for subscriptions only). */
|
|
int UpnpEventSubscribe_get_TimeOut(const UpnpEventSubscribe *p);
|
|
void UpnpEventSubscribe_set_TimeOut(UpnpEventSubscribe *p, int n);
|
|
|
|
/** The SID for this subscription. For subscriptions, this only
|
|
* contains a valid SID if the \b Upnp_EventSubscribe.result field
|
|
* contains a {\tt UPNP_E_SUCCESS} result code. For unsubscriptions,
|
|
* this contains the SID from which the subscription is being
|
|
* unsubscribed. */
|
|
const UpnpString *UpnpEventSubscribe_get_SID(const UpnpEventSubscribe *p);
|
|
void UpnpEventSubscribe_set_SID(UpnpEventSubscribe *p, const UpnpString *s);
|
|
void UpnpEventSubscribe_strcpy_SID(UpnpEventSubscribe *p, const char *s);
|
|
|
|
|
|
/** The event URL being subscribed to or removed from. */
|
|
const UpnpString *UpnpEventSubscribe_get_PublisherUrl(const UpnpEventSubscribe *p);
|
|
void UpnpEventSubscribe_set_PublisherUrl(UpnpEventSubscribe *p, const UpnpString *s);
|
|
void UpnpEventSubscribe_strcpy_PublisherUrl(UpnpEventSubscribe *p, const char *s);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
#endif /* EVENTSUBSCRIBE_H */
|
|
|