You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
109 lines
3.5 KiB
109 lines
3.5 KiB
4 months ago
|
#ifndef UPNPEXTRAHEADERS_H
|
||
|
#define UPNPEXTRAHEADERS_H
|
||
|
|
||
|
/*!
|
||
|
* \file
|
||
|
*
|
||
|
* \brief Header file for UpnpExtraHeaders methods.
|
||
|
*
|
||
|
* Do not edit this file, it is automatically generated. Please look at
|
||
|
* generator.c.
|
||
|
*
|
||
|
* \author Marcelo Roberto Jimenez
|
||
|
*/
|
||
|
#include <stdlib.h> /* for size_t */
|
||
|
|
||
|
#include "UpnpGlobal.h" /* for UPNP_EXPORT_SPEC */
|
||
|
|
||
|
#include "UpnpString.h"
|
||
|
#include "ixml.h"
|
||
|
#include "list.h"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif /* __cplusplus */
|
||
|
|
||
|
/*!
|
||
|
* UpnpExtraHeaders
|
||
|
*/
|
||
|
typedef struct s_UpnpExtraHeaders UpnpExtraHeaders;
|
||
|
|
||
|
/*! Constructor */
|
||
|
UPNP_EXPORT_SPEC UpnpExtraHeaders *UpnpExtraHeaders_new();
|
||
|
/*! Destructor */
|
||
|
UPNP_EXPORT_SPEC void UpnpExtraHeaders_delete(UpnpExtraHeaders *p);
|
||
|
/*! Copy Constructor */
|
||
|
UPNP_EXPORT_SPEC UpnpExtraHeaders *UpnpExtraHeaders_dup(
|
||
|
const UpnpExtraHeaders *p);
|
||
|
/*! Assignment operator */
|
||
|
UPNP_EXPORT_SPEC int UpnpExtraHeaders_assign(
|
||
|
UpnpExtraHeaders *p, const UpnpExtraHeaders *q);
|
||
|
|
||
|
/*! UpnpExtraHeaders_get_node */
|
||
|
UPNP_EXPORT_SPEC const UpnpListHead *UpnpExtraHeaders_get_node(
|
||
|
const UpnpExtraHeaders *p);
|
||
|
/*! UpnpExtraHeaders_set_node */
|
||
|
UPNP_EXPORT_SPEC int UpnpExtraHeaders_set_node(
|
||
|
UpnpExtraHeaders *p, const UpnpListHead *q);
|
||
|
/*! UpnpExtraHeaders_add_to_list_node */
|
||
|
UPNP_EXPORT_SPEC void UpnpExtraHeaders_add_to_list_node(
|
||
|
UpnpExtraHeaders *p, UpnpListHead *head);
|
||
|
|
||
|
/*! UpnpExtraHeaders_get_name */
|
||
|
UPNP_EXPORT_SPEC const UpnpString *UpnpExtraHeaders_get_name(
|
||
|
const UpnpExtraHeaders *p);
|
||
|
/*! UpnpExtraHeaders_set_name */
|
||
|
UPNP_EXPORT_SPEC int UpnpExtraHeaders_set_name(
|
||
|
UpnpExtraHeaders *p, const UpnpString *s);
|
||
|
/*! UpnpExtraHeaders_get_name_Length */
|
||
|
UPNP_EXPORT_SPEC size_t UpnpExtraHeaders_get_name_Length(
|
||
|
const UpnpExtraHeaders *p);
|
||
|
/*! UpnpExtraHeaders_get_name_cstr */
|
||
|
UPNP_EXPORT_SPEC const char *UpnpExtraHeaders_get_name_cstr(
|
||
|
const UpnpExtraHeaders *p);
|
||
|
/*! UpnpExtraHeaders_strcpy_name */
|
||
|
UPNP_EXPORT_SPEC int UpnpExtraHeaders_strcpy_name(
|
||
|
UpnpExtraHeaders *p, const char *s);
|
||
|
/*! UpnpExtraHeaders_strncpy_name */
|
||
|
UPNP_EXPORT_SPEC int UpnpExtraHeaders_strncpy_name(
|
||
|
UpnpExtraHeaders *p, const char *s, size_t n);
|
||
|
/*! UpnpExtraHeaders_clear_name */
|
||
|
UPNP_EXPORT_SPEC void UpnpExtraHeaders_clear_name(UpnpExtraHeaders *p);
|
||
|
|
||
|
/*! UpnpExtraHeaders_get_value */
|
||
|
UPNP_EXPORT_SPEC const UpnpString *UpnpExtraHeaders_get_value(
|
||
|
const UpnpExtraHeaders *p);
|
||
|
/*! UpnpExtraHeaders_set_value */
|
||
|
UPNP_EXPORT_SPEC int UpnpExtraHeaders_set_value(
|
||
|
UpnpExtraHeaders *p, const UpnpString *s);
|
||
|
/*! UpnpExtraHeaders_get_value_Length */
|
||
|
UPNP_EXPORT_SPEC size_t UpnpExtraHeaders_get_value_Length(
|
||
|
const UpnpExtraHeaders *p);
|
||
|
/*! UpnpExtraHeaders_get_value_cstr */
|
||
|
UPNP_EXPORT_SPEC const char *UpnpExtraHeaders_get_value_cstr(
|
||
|
const UpnpExtraHeaders *p);
|
||
|
/*! UpnpExtraHeaders_strcpy_value */
|
||
|
UPNP_EXPORT_SPEC int UpnpExtraHeaders_strcpy_value(
|
||
|
UpnpExtraHeaders *p, const char *s);
|
||
|
/*! UpnpExtraHeaders_strncpy_value */
|
||
|
UPNP_EXPORT_SPEC int UpnpExtraHeaders_strncpy_value(
|
||
|
UpnpExtraHeaders *p, const char *s, size_t n);
|
||
|
/*! UpnpExtraHeaders_clear_value */
|
||
|
UPNP_EXPORT_SPEC void UpnpExtraHeaders_clear_value(UpnpExtraHeaders *p);
|
||
|
|
||
|
/*! UpnpExtraHeaders_get_resp */
|
||
|
UPNP_EXPORT_SPEC const DOMString UpnpExtraHeaders_get_resp(
|
||
|
const UpnpExtraHeaders *p);
|
||
|
/*! UpnpExtraHeaders_set_resp */
|
||
|
UPNP_EXPORT_SPEC int UpnpExtraHeaders_set_resp(
|
||
|
UpnpExtraHeaders *p, const DOMString s);
|
||
|
/*! UpnpExtraHeaders_get_resp_cstr */
|
||
|
UPNP_EXPORT_SPEC const char *UpnpExtraHeaders_get_resp_cstr(
|
||
|
const UpnpExtraHeaders *p);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif /* __cplusplus */
|
||
|
|
||
|
#endif /* UPNPEXTRAHEADERS_H */
|