1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
|
#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 */
|