
object API As per email to pupnp-devel, this is the patch to add the _strget_ accessors for string-like objects in the interface. Will add a further patch shortly to udpate the sample programs. git-svn-id: https://pupnp.svn.sourceforge.net/svnroot/pupnp/trunk@488 119443c7-1b9e-41f8-b6fc-b9c35fce742c
75 lines
2.4 KiB
C
75 lines
2.4 KiB
C
|
|
|
|
#ifndef EVENTSUBSCRIBE_H
|
|
#define EVENTSUBSCRIBE_H
|
|
|
|
|
|
/*!
|
|
* \file
|
|
*
|
|
* \brief UpnpEventSubscribe object declararion.
|
|
*
|
|
* \author Marcelo Roberto Jimenez
|
|
*/
|
|
|
|
|
|
/*! Returned along with a \b UPNP_EVENT_SUBSCRIBE_COMPLETE or
|
|
* \b UPNP_EVENT_UNSUBSCRIBE_COMPLETE callback. */
|
|
typedef struct s_UpnpEventSubscribe UpnpEventSubscribe;
|
|
|
|
|
|
#include "UpnpGlobal.h" /* for EXPORT_SPEC */
|
|
#include "UpnpString.h"
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
/*! Constructor */
|
|
EXPORT_SPEC UpnpEventSubscribe *UpnpEventSubscribe_new();
|
|
|
|
/*! Destructor */
|
|
EXPORT_SPEC void UpnpEventSubscribe_delete(UpnpEventSubscribe *p);
|
|
|
|
/*! Copy Constructor */
|
|
EXPORT_SPEC UpnpEventSubscribe *UpnpEventSubscribe_dup(const UpnpEventSubscribe *p);
|
|
|
|
/*! Assignment operator */
|
|
EXPORT_SPEC void UpnpEventSubscribe_assign(UpnpEventSubscribe *p, const UpnpEventSubscribe *q);
|
|
|
|
/*! The result of the operation. */
|
|
EXPORT_SPEC int UpnpEventSubscribe_get_ErrCode(const UpnpEventSubscribe *p);
|
|
EXPORT_SPEC void UpnpEventSubscribe_set_ErrCode(UpnpEventSubscribe *p, int n);
|
|
|
|
/*! The actual subscription time (for subscriptions only). */
|
|
EXPORT_SPEC int UpnpEventSubscribe_get_TimeOut(const UpnpEventSubscribe *p);
|
|
EXPORT_SPEC 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 \b UPNP_E_SUCCESS result code. For unsubscriptions,
|
|
* this contains the SID from which the subscription is being
|
|
* unsubscribed. */
|
|
EXPORT_SPEC const UpnpString *UpnpEventSubscribe_get_SID(const UpnpEventSubscribe *p);
|
|
EXPORT_SPEC const char *UpnpEventSubscribe_get_SID_cstr(const UpnpEventSubscribe *p);
|
|
EXPORT_SPEC void UpnpEventSubscribe_set_SID(UpnpEventSubscribe *p, const UpnpString *s);
|
|
EXPORT_SPEC void UpnpEventSubscribe_strcpy_SID(UpnpEventSubscribe *p, const char *s);
|
|
|
|
|
|
/*! The event URL being subscribed to or removed from. */
|
|
EXPORT_SPEC const UpnpString *UpnpEventSubscribe_get_PublisherUrl(const UpnpEventSubscribe *p);
|
|
EXPORT_SPEC const char *UpnpEventSubscribe_get_PublisherUrl_cstr(const UpnpEventSubscribe *p);
|
|
EXPORT_SPEC void UpnpEventSubscribe_set_PublisherUrl(UpnpEventSubscribe *p, const UpnpString *s);
|
|
EXPORT_SPEC void UpnpEventSubscribe_strcpy_PublisherUrl(UpnpEventSubscribe *p, const char *s);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
#endif /* EVENTSUBSCRIBE_H */
|
|
|