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
|
# tdom.decls --
#
# This file contains the declarations for all supported public
# functions that are exported by the tDOM library via the stubs table.
#
# Copyright (c) 2002 Rolf Ade.
library tdom
interface tdom
#hooks {}
declare 0 generic {
int TclExpatObjCmd (ClientData dummy, Tcl_Interp *interp,
int objc, Tcl_Obj *const objv[])
}
declare 1 generic {
int CheckExpatParserObj (Tcl_Interp *interp, Tcl_Obj *const nameObj)
}
declare 2 generic {
int CHandlerSetInstall (Tcl_Interp *interp, Tcl_Obj *const expatObj,
CHandlerSet *handlerSet)
}
declare 3 generic {
int CHandlerSetRemove (Tcl_Interp *interp, Tcl_Obj *const expatObj,
char *handlerSetName)
}
declare 4 generic {
CHandlerSet * CHandlerSetCreate (char *name)
}
declare 5 generic {
CHandlerSet * CHandlerSetGet (Tcl_Interp *interp, Tcl_Obj *const expatObj,
char *handlerSetName)
}
declare 6 generic {
void * CHandlerSetGetUserData (Tcl_Interp *interp,
Tcl_Obj *const expatObj,
char *handlerSetName)
}
declare 7 generic {
TclGenExpatInfo * GetExpatInfo (Tcl_Interp *interp,
Tcl_Obj *const expatObj)
}
declare 8 generic {
XML_Size XML_GetCurrentLineNumber(XML_Parser parser)
}
declare 9 generic {
XML_Size XML_GetCurrentColumnNumber(XML_Parser parser)
}
declare 10 generic {
XML_Index XML_GetCurrentByteIndex(XML_Parser parser)
}
declare 11 generic {
int XML_GetCurrentByteCount(XML_Parser parser)
}
declare 12 generic {
enum XML_Status XML_SetBase(XML_Parser parser, const XML_Char *base)
}
declare 13 generic {
const XML_Char * XML_GetBase(XML_Parser parser)
}
declare 14 generic {
int XML_GetSpecifiedAttributeCount(XML_Parser parser)
}
declare 15 generic {
int XML_GetIdAttributeIndex(XML_Parser parser)
}
declare 16 generic {
domNode * tcldom_getNodeFromName(Tcl_Interp *interp, char *nodeName,
char **errMsg)
}
declare 17 generic {
domDocument * tcldom_getDocumentFromName (Tcl_Interp *interp,
char *docName, char **errMsg)
}
declare 18 generic {
SchemaData * tdomGetSchemadata (void)
}
|