/usr/include/libgdome/gdome-xpath.h is in libgdome2-dev 0.8.1+debian-6.
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 | /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 2; tab-width: 2 -*- */
/* gdome-xpath.h
*
* CopyRight (C) 2002 T.J. Mather <tjmather@tjmather.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef GDOME_XPATH_H
#define GDOME_XPATH_H
#include <gdome.h>
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
/* error types for our xpath exception handling system. */
typedef enum {
GDOME_INVALID_EXPRESSION_ERR = 101,
GDOME_TYPE_ERR = 102
} GdomeXPathExceptionCode;
/* xpath types */
typedef enum {
GDOME_ANY_TYPE = 0,
GDOME_NUMBER_TYPE = 1,
GDOME_STRING_TYPE = 2,
GDOME_BOOLEAN_TYPE = 3,
GDOME_UNORDERED_NODE_ITERATOR_TYPE = 4,
GDOME_ORDERED_NODE_ITERATOR_TYPE = 5,
GDOME_UNORDERED_NODE_SNAPSHOT_TYPE = 6,
GDOME_ORDERED_NODE_SNAPSHOT_TYPE = 7,
GDOME_ANY_UNORDERED_NODE_TYPE = 8,
GDOME_FIRST_ORDERED_NODE_TYPE = 9
} GdomeXPathResultType;
typedef struct _GdomeXPathEvaluatorVtab GdomeXPathEvaluatorVtab;
typedef struct _GdomeXPathNSResolverVtab GdomeXPathNSResolverVtab;
typedef struct _GdomeXPathResultVtab GdomeXPathResultVtab;
struct _GdomeXPathEvaluator {
gpointer user_data;
};
struct _GdomeXPathNSResolver {
gpointer user_data;
};
struct _GdomeXPathResult {
gpointer user_data;
};
GdomeXPathEvaluator *gdome_xpeval_mkref (void);
void gdome_xpeval_ref (GdomeXPathEvaluator *self, GdomeException *exc);
void gdome_xpeval_unref (GdomeXPathEvaluator *self, GdomeException *exc);
GdomeXPathNSResolver * gdome_xpeval_createNSResolver (GdomeXPathEvaluator *self, GdomeNode *nodeResolver, GdomeException *exc);
GdomeXPathResult * gdome_xpeval_createResult (GdomeXPathEvaluator *self, GdomeException *exc);
GdomeXPathResult *gdome_xpeval_evaluate (GdomeXPathEvaluator *self, GdomeDOMString *expression, GdomeNode *contextNode, GdomeXPathNSResolver *resolver, unsigned int type, GdomeXPathResult *result, GdomeException *exc);
GdomeXPathNSResolver * gdome_xpnsresolv_mkref( GdomeNode *nodeResolver );
void gdome_xpnsresolv_ref (GdomeXPathNSResolver *self, GdomeException *exc);
void gdome_xpnsresolv_unref (GdomeXPathNSResolver *self, GdomeException *exc);
GdomeDOMString * gdome_xpnsresolv_lookupNamespaceURI( GdomeXPathNSResolver *self, GdomeDOMString *prefix, GdomeException *exc);
void gdome_xpresult_ref (GdomeXPathResult *self, GdomeException *exc);
void gdome_xpresult_unref (GdomeXPathResult *self, GdomeException *exc);
unsigned short gdome_xpresult_resultType (GdomeXPathResult *self, GdomeException *exc);
GdomeBoolean gdome_xpresult_booleanValue (GdomeXPathResult *self, GdomeException *exc);
double gdome_xpresult_numberValue (GdomeXPathResult *self, GdomeException *exc);
GdomeDOMString* gdome_xpresult_stringValue (GdomeXPathResult *self, GdomeException *exc);
GdomeNode * gdome_xpresult_singleNodeValue (GdomeXPathResult *self, GdomeException *exc);
GdomeNode * gdome_xpresult_iterateNext (GdomeXPathResult *self, GdomeException *exc);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* GDOME_XPATH_H */
|