/usr/include/gwenhywfar4/gwenhywfar/url.h is in libgwenhywfar60-dev 4.10.0beta-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 | /* This file is auto-generated from "url.xml" by the typemaker
tool of Gwenhywfar.
Do not edit this file -- all changes will be lost! */
#ifndef URL_H
#define URL_H
/** @page P_GWEN_URL_PUBLIC GWEN_Url (public)
This page describes the properties of GWEN_URL
@anchor GWEN_URL_Protocol
<h3>Protocol</h3>
<p>
</p>
<p>
Set this property with @ref GWEN_Url_SetProtocol,
get it with @ref GWEN_Url_GetProtocol
</p>
@anchor GWEN_URL_Server
<h3>Server</h3>
<p>
</p>
<p>
Set this property with @ref GWEN_Url_SetServer,
get it with @ref GWEN_Url_GetServer
</p>
@anchor GWEN_URL_Port
<h3>Port</h3>
<p>
</p>
<p>
Set this property with @ref GWEN_Url_SetPort,
get it with @ref GWEN_Url_GetPort
</p>
@anchor GWEN_URL_Path
<h3>Path</h3>
<p>
</p>
<p>
Set this property with @ref GWEN_Url_SetPath,
get it with @ref GWEN_Url_GetPath
</p>
@anchor GWEN_URL_UserName
<h3>UserName</h3>
<p>
</p>
<p>
Set this property with @ref GWEN_Url_SetUserName,
get it with @ref GWEN_Url_GetUserName
</p>
@anchor GWEN_URL_Password
<h3>Password</h3>
<p>
</p>
<p>
Set this property with @ref GWEN_Url_SetPassword,
get it with @ref GWEN_Url_GetPassword
</p>
@anchor GWEN_URL_Vars
<h3>Vars</h3>
<p>
</p>
<p>
Set this property with @ref GWEN_Url_SetVars,
get it with @ref GWEN_Url_GetVars
</p>
*/
#ifdef __cplusplus
extern "C" {
#endif
typedef struct GWEN_URL GWEN_URL;
#ifdef __cplusplus
} /* __cplusplus */
#endif
#include <gwenhywfar/db.h>
#include <gwenhywfar/misc.h>
#include <gwenhywfar/list2.h>
/* headers */
#include <gwenhywfar/types.h>
#include <gwenhywfar/urlfns.h>
#ifdef __cplusplus
extern "C" {
#endif
GWEN_LIST_FUNCTION_LIB_DEFS(GWEN_URL, GWEN_Url, GWENHYWFAR_API)
GWENHYWFAR_API GWEN_URL_LIST *GWEN_Url_List_dup(const GWEN_URL_LIST *stl);
GWEN_LIST2_FUNCTION_LIB_DEFS(GWEN_URL, GWEN_Url, GWENHYWFAR_API)
/** Destroys all objects stored in the given LIST2 and the list itself
*/
GWENHYWFAR_API void GWEN_Url_List2_freeAll(GWEN_URL_LIST2 *stl);
/** Creates a new object.
*/
GWENHYWFAR_API GWEN_URL *GWEN_Url_new(void);
/** Creates an object from the data in the given GWEN_DB_NODE
*/
GWENHYWFAR_API GWEN_URL *GWEN_Url_fromDb(GWEN_DB_NODE *db);
/** Creates and returns a deep copy of thegiven object.
*/
GWENHYWFAR_API GWEN_URL *GWEN_Url_dup(const GWEN_URL*st);
/** Destroys the given object.
*/
GWENHYWFAR_API void GWEN_Url_free(GWEN_URL *st);
/** Increments the usage counter of the given object, so an additional free() is needed to destroy the object.
*/
GWENHYWFAR_API void GWEN_Url_Attach(GWEN_URL *st);
/** Reads data from a GWEN_DB.
*/
GWENHYWFAR_API int GWEN_Url_ReadDb(GWEN_URL *st, GWEN_DB_NODE *db);
/** Stores an object in the given GWEN_DB_NODE
*/
GWENHYWFAR_API int GWEN_Url_toDb(const GWEN_URL*st, GWEN_DB_NODE *db);
/** Returns 0 if this object has not been modified, !=0 otherwise
*/
GWENHYWFAR_API int GWEN_Url_IsModified(const GWEN_URL *st);
/** Sets the modified state of the given object
*/
GWENHYWFAR_API void GWEN_Url_SetModified(GWEN_URL *st, int i);
/**
* Returns the property @ref GWEN_URL_Protocol
*/
GWENHYWFAR_API const char *GWEN_Url_GetProtocol(const GWEN_URL *el);
/**
* Set the property @ref GWEN_URL_Protocol
*/
GWENHYWFAR_API void GWEN_Url_SetProtocol(GWEN_URL *el, const char *d);
/**
* Returns the property @ref GWEN_URL_Server
*/
GWENHYWFAR_API const char *GWEN_Url_GetServer(const GWEN_URL *el);
/**
* Set the property @ref GWEN_URL_Server
*/
GWENHYWFAR_API void GWEN_Url_SetServer(GWEN_URL *el, const char *d);
/**
* Returns the property @ref GWEN_URL_Port
*/
GWENHYWFAR_API int GWEN_Url_GetPort(const GWEN_URL *el);
/**
* Set the property @ref GWEN_URL_Port
*/
GWENHYWFAR_API void GWEN_Url_SetPort(GWEN_URL *el, int d);
/**
* Returns the property @ref GWEN_URL_Path
*/
GWENHYWFAR_API const char *GWEN_Url_GetPath(const GWEN_URL *el);
/**
* Set the property @ref GWEN_URL_Path
*/
GWENHYWFAR_API void GWEN_Url_SetPath(GWEN_URL *el, const char *d);
/**
* Returns the property @ref GWEN_URL_UserName
*/
GWENHYWFAR_API const char *GWEN_Url_GetUserName(const GWEN_URL *el);
/**
* Set the property @ref GWEN_URL_UserName
*/
GWENHYWFAR_API void GWEN_Url_SetUserName(GWEN_URL *el, const char *d);
/**
* Returns the property @ref GWEN_URL_Password
*/
GWENHYWFAR_API const char *GWEN_Url_GetPassword(const GWEN_URL *el);
/**
* Set the property @ref GWEN_URL_Password
*/
GWENHYWFAR_API void GWEN_Url_SetPassword(GWEN_URL *el, const char *d);
/**
* Returns the property @ref GWEN_URL_Vars
*/
GWENHYWFAR_API GWEN_DB_NODE *GWEN_Url_GetVars(const GWEN_URL *el);
/**
* Set the property @ref GWEN_URL_Vars
*/
GWENHYWFAR_API void GWEN_Url_SetVars(GWEN_URL *el, GWEN_DB_NODE *d);
#ifdef __cplusplus
} /* __cplusplus */
#endif
#endif /* URL_H */
|