~ubuntu-branches/ubuntu/hardy/lasso/hardy

« back to all changes in this revision

Viewing changes to lasso/xml/private.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Bienia
  • Date: 2007-07-31 21:35:26 UTC
  • mto: This revision was merged to the branch mainline in revision 10.
  • Revision ID: james.westby@ubuntu.com-20070731213526-5yf8k7sq7slsb450
Tags: upstream-2.0.0
ImportĀ upstreamĀ versionĀ 2.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: private.h,v 1.19 2005/11/21 18:51:52 fpeters Exp $ 
 
1
/* $Id: private.h,v 1.22 2006/12/16 09:47:15 fpeters Exp $ 
2
2
 *
3
3
 * Lasso - A free implementation of the Liberty Alliance specifications.
4
4
 *
44
44
        SNIPPET_EXTENSION,
45
45
        SNIPPET_SIGNATURE,
46
46
        SNIPPET_LIST_XMLNODES,
 
47
        SNIPPET_XMLNODE,
47
48
 
48
49
        /* transformers for content transformation */
49
50
        SNIPPET_STRING  = 1 << 0, /* default, can be omitted */
60
61
        SnippetType type;
61
62
        guint offset;
62
63
        char *class_name;
 
64
        char *ns_name;
 
65
        char *ns_uri;
63
66
};
64
67
 
65
68
struct QuerySnippet {
119
122
 
120
123
gboolean lasso_node_init_from_deflated_query_part(LassoNode *node, char *deflate_string);
121
124
 
 
125
char* lasso_concat_url_query(char *url, char *query);
 
126
 
122
127
void _debug(GLogLevelFlags level, const char *filename, int line,
123
128
                const char *function, const char *format, ...);
124
129