1 /* This file is auto-generated from "url.xml" by the typemaker
2    tool of Gwenhywfar.
3    Do not edit this file -- all changes will be lost! */
4 #ifndef URL_P_H
5 #define URL_P_H
6 
7 #include "url_l.h"
8 
9 
10 struct GWEN_URL {
11   GWEN_LIST_ELEMENT(GWEN_URL)
12   int _usage;
13   int _modified;
14 
15   char *protocol;
16   char *server;
17   int port;
18   char *path;
19   char *userName;
20   char *password;
21   GWEN_DB_NODE *vars;
22   char *url;
23 };
24 
25 
26 
27 
28 
29 
30 
31 
32 
33 /**
34 * Returns the property @ref GWEN_URL_Url
35 */
36 GWENHYWFAR_API const char *GWEN_Url_GetUrl(const GWEN_URL *el);
37 /**
38 * Set the property @ref GWEN_URL_Url
39 */
40 GWENHYWFAR_API void GWEN_Url_SetUrl(GWEN_URL *el, const char *d);
41 
42 
43 #endif /* URL_P_H */
44