Merging trunk to branch 1.4.x
git-svn-id: https://pupnp.svn.sourceforge.net/svnroot/pupnp/branches/branch-1.4.x@49 119443c7-1b9e-41f8-b6fc-b9c35fce742c
This commit is contained in:
parent
062d62bbc4
commit
522dee807f
16
ChangeLog
16
ChangeLog
@ -1,3 +1,14 @@
|
||||
2006-07-07 Oxy <virtual_worlds@gmx.de>
|
||||
|
||||
* full support for Windows added, static library and DLL are fully
|
||||
working, code compiles with Borland Builder C++ and MS Visual
|
||||
C/C++
|
||||
|
||||
2006-07-05 Nektarios K. Papadopoulos <npapadop@inaccessnetworks.com>
|
||||
|
||||
* Include prebuilt documentation (html,pdf), dropping doc++
|
||||
dependancy.
|
||||
|
||||
2006-07-03 Marcelo Jimenez <mroberto@users.sourceforge.net>
|
||||
|
||||
* Patch for FreeBSD, thanks to Markus Strobl.
|
||||
@ -11,11 +22,6 @@
|
||||
|
||||
* Fix for va_list initialization in x86_64 architectures.
|
||||
|
||||
2006-06-12 Oxy <virtual_worlds@gmx.de>
|
||||
|
||||
* Windows support added, it compiles and exports DLL-symbols but
|
||||
it is not fully tested yet
|
||||
|
||||
2006-06-08 Oxy <virtual_worlds@gmx.de>
|
||||
|
||||
* Patch to fix memory leaks and reasons for crashes added (thanks
|
||||
|
@ -9,7 +9,7 @@ ACLOCAL_AMFLAGS = -I m4
|
||||
|
||||
DISTCHECK_CONFIGURE_FLAGS = --enable-debug --enable-samples
|
||||
|
||||
SUBDIRS = ixml threadutil upnp
|
||||
SUBDIRS = ixml threadutil upnp docs/dist
|
||||
|
||||
|
||||
EXTRA_DIST = libupnp.pc.in LICENSE THANKS
|
||||
|
17
THANKS
17
THANKS
@ -6,8 +6,15 @@ suggesting various improvements or submitting actual code.
|
||||
Here is a list of these people. Help us keep it complete and
|
||||
exempt of errors.
|
||||
|
||||
Patches: Loigu, Arno Willig, Oskar Liljeblad, Chaos,
|
||||
Nektarios K. Papadopoulos, John Dennis, Jiri Zouhar,
|
||||
Marcelo Jimenez
|
||||
Solaris Port: Oxy
|
||||
Hints and useful bugreports: Siva Chandran
|
||||
- Markus Strobl
|
||||
- Loigu
|
||||
- Arno Willig
|
||||
- Oskar Liljeblad
|
||||
- Chaos
|
||||
- Nektarios K. Papadopoulos
|
||||
- John Dennis
|
||||
- Jiri Zouhar
|
||||
- Marcelo Jimenez
|
||||
- Oxy
|
||||
- Siva Chandran
|
||||
|
||||
|
@ -294,7 +294,7 @@
|
||||
|
||||
|
||||
/** @name DBGONLY
|
||||
The {\bf DBGONLY} macro allows code to be marked so that it
|
||||
The {\bf DBGONLY} macro allows code to be marked so that it
|
||||
is only included in the DEBUG build and not the release. To
|
||||
use this macro, put the code inside of the parentheses:
|
||||
|
||||
@ -305,55 +305,53 @@
|
||||
*/
|
||||
|
||||
//@{
|
||||
#ifndef WIN32
|
||||
#ifdef DEBUG
|
||||
# define DBGONLY(x) x
|
||||
#else
|
||||
# define DBGONLY(x)
|
||||
#endif
|
||||
#endif
|
||||
#ifdef DEBUG
|
||||
#define DBGONLY(x) x
|
||||
#else
|
||||
#define DBGONLY(x)
|
||||
#endif
|
||||
//@}
|
||||
|
||||
|
||||
|
||||
#undef EXCLUDE_WEB_SERVER
|
||||
#undef EXCLUDE_MINISERVER
|
||||
#undef EXCLUDE_WEB_SERVER
|
||||
#undef EXCLUDE_MINISERVER
|
||||
#ifdef INTERNAL_WEB_SERVER
|
||||
# define EXCLUDE_WEB_SERVER 0
|
||||
# define EXCLUDE_MINISERVER 0
|
||||
#define EXCLUDE_WEB_SERVER 0
|
||||
#define EXCLUDE_MINISERVER 0
|
||||
#else
|
||||
# define EXCLUDE_WEB_SERVER 1
|
||||
# define EXCLUDE_MINISERVER 1
|
||||
#define EXCLUDE_WEB_SERVER 1
|
||||
#define EXCLUDE_MINISERVER 1
|
||||
#endif
|
||||
|
||||
#if EXCLUDE_GENA == 1 && EXCLUDE_SOAP == 1 && EXCLUDE_WEB_SERVER == 1
|
||||
# undef EXCLUDE_MINISERVER
|
||||
# define EXCLUDE_MINISERVER 1
|
||||
# if INTERNAL_WEB_SERVER
|
||||
# error "conflicting settings: use configure --disable-webserver"
|
||||
# endif
|
||||
#undef EXCLUDE_MINISERVER
|
||||
#define EXCLUDE_MINISERVER 1
|
||||
#if INTERNAL_WEB_SERVER
|
||||
# error "conflicting settings: use configure --disable-webserver"
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if EXCLUDE_GENA == 0 || EXCLUDE_SOAP == 0 || EXCLUDE_WEB_SERVER == 0
|
||||
# undef EXCLUDE_MINISERVER
|
||||
# define EXCLUDE_MINISERVER 0
|
||||
# if EXCLUDE_WEB_SERVER == 0 && !defined INTERNAL_WEB_SERVER
|
||||
# error "conflicting settings : use configure --enable-webserver"
|
||||
# endif
|
||||
#undef EXCLUDE_MINISERVER
|
||||
#define EXCLUDE_MINISERVER 0
|
||||
#if EXCLUDE_WEB_SERVER == 0 && !defined INTERNAL_WEB_SERVER
|
||||
#error "conflicting settings : use configure --enable-webserver"
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
#ifdef INCLUDE_CLIENT_APIS
|
||||
# define CLIENTONLY(x) x
|
||||
#else
|
||||
# define CLIENTONLY(x)
|
||||
#define CLIENTONLY(x) x
|
||||
#else
|
||||
#define CLIENTONLY(x)
|
||||
#endif
|
||||
|
||||
#ifdef INCLUDE_DEVICE_APIS
|
||||
# define DEVICEONLY(x) x
|
||||
#else
|
||||
# define DEVICEONLY(x)
|
||||
#define DEVICEONLY(x) x
|
||||
#else
|
||||
#define DEVICEONLY(x)
|
||||
#endif
|
||||
|
||||
//@}
|
||||
|
50
build/libupnp.bpf
Normal file
50
build/libupnp.bpf
Normal file
@ -0,0 +1,50 @@
|
||||
USEUNIT("..\ixml\src\nodeList.c");
|
||||
USEUNIT("..\ixml\src\attr.c");
|
||||
USEUNIT("..\ixml\src\document.c");
|
||||
USEUNIT("..\ixml\src\element.c");
|
||||
USEUNIT("..\ixml\src\ixml.c");
|
||||
USEUNIT("..\ixml\src\ixmlmembuf.c");
|
||||
USEUNIT("..\ixml\src\ixmlparser.c");
|
||||
USEUNIT("..\ixml\src\namedNodeMap.c");
|
||||
USEUNIT("..\ixml\src\node.c");
|
||||
USEUNIT("..\threadutil\src\TimerThread.c");
|
||||
USEUNIT("..\threadutil\src\FreeList.c");
|
||||
USEUNIT("..\threadutil\src\iasnprintf.c");
|
||||
USEUNIT("..\threadutil\src\LinkedList.c");
|
||||
USEUNIT("..\threadutil\src\ThreadPool.c");
|
||||
USEUNIT("..\upnp\src\win_dll.c");
|
||||
USEUNIT("..\upnp\src\inet_pton.c");
|
||||
USEUNIT("..\upnp\src\api\upnptools.c");
|
||||
USEUNIT("..\upnp\src\api\upnpapi.c");
|
||||
USEUNIT("..\upnp\src\gena\gena_device.c");
|
||||
USEUNIT("..\upnp\src\gena\gena_callback2.c");
|
||||
USEUNIT("..\upnp\src\gena\gena_ctrlpt.c");
|
||||
USEUNIT("..\upnp\src\genlib\client_table\client_table.c");
|
||||
USEUNIT("..\upnp\src\genlib\miniserver\miniserver.c");
|
||||
USEUNIT("..\upnp\src\genlib\net\sock.c");
|
||||
USEUNIT("..\upnp\src\genlib\net\http\webserver.c");
|
||||
USEUNIT("..\upnp\src\genlib\net\http\httpparser.c");
|
||||
USEUNIT("..\upnp\src\genlib\net\http\httpreadwrite.c");
|
||||
USEUNIT("..\upnp\src\genlib\net\http\parsetools.c");
|
||||
USEUNIT("..\upnp\src\genlib\net\http\statcodes.c");
|
||||
USEUNIT("..\upnp\src\genlib\net\uri\uri.c");
|
||||
USEUNIT("..\upnp\src\genlib\service_table\service_table.c");
|
||||
USEUNIT("..\upnp\src\genlib\util\util.c");
|
||||
USEUNIT("..\upnp\src\genlib\util\membuffer.c");
|
||||
USEUNIT("..\upnp\src\genlib\util\strintmap.c");
|
||||
USEUNIT("..\upnp\src\genlib\util\upnp_timeout.c");
|
||||
USEUNIT("..\upnp\src\soap\soap_device.c");
|
||||
USEUNIT("..\upnp\src\soap\soap_common.c");
|
||||
USEUNIT("..\upnp\src\soap\soap_ctrlpt.c");
|
||||
USEUNIT("..\upnp\src\ssdp\ssdp_server.c");
|
||||
USEUNIT("..\upnp\src\ssdp\ssdp_ctrlpt.c");
|
||||
USEUNIT("..\upnp\src\ssdp\ssdp_device.c");
|
||||
USEUNIT("..\upnp\src\urlconfig\urlconfig.c");
|
||||
USEUNIT("..\upnp\src\uuid\uuid.c");
|
||||
USEUNIT("..\upnp\src\uuid\md5.c");
|
||||
USEUNIT("..\upnp\src\uuid\sysdep.c");
|
||||
USELIB("..\..\..\pthreads-w32-1-10-0-release\pthreadBC1.lib");
|
||||
//---------------------------------------------------------------------------
|
||||
This file is used by the project manager only and should be treated like the project file
|
||||
|
||||
DllEntryPoint
|
128
build/libupnp.bpr
Normal file
128
build/libupnp.bpr
Normal file
@ -0,0 +1,128 @@
|
||||
<?xml version='1.0' encoding='utf-8' ?>
|
||||
<!-- C++Builder XML Project -->
|
||||
<PROJECT>
|
||||
<MACROS>
|
||||
<VERSION value="BCB.05.03"/>
|
||||
<PROJECT value="libupnp.dll"/>
|
||||
<OBJFILES value="..\ixml\src\nodeList.obj ..\ixml\src\attr.obj ..\ixml\src\document.obj
|
||||
..\ixml\src\element.obj ..\ixml\src\ixml.obj ..\ixml\src\ixmlmembuf.obj
|
||||
..\ixml\src\ixmlparser.obj ..\ixml\src\namedNodeMap.obj
|
||||
..\ixml\src\node.obj ..\threadutil\src\TimerThread.obj
|
||||
..\threadutil\src\FreeList.obj ..\threadutil\src\iasnprintf.obj
|
||||
..\threadutil\src\LinkedList.obj ..\threadutil\src\ThreadPool.obj
|
||||
..\upnp\src\win_dll.obj ..\upnp\src\inet_pton.obj
|
||||
..\upnp\src\api\upnptools.obj ..\upnp\src\api\upnpapi.obj
|
||||
..\upnp\src\gena\gena_device.obj ..\upnp\src\gena\gena_callback2.obj
|
||||
..\upnp\src\gena\gena_ctrlpt.obj
|
||||
..\upnp\src\genlib\client_table\client_table.obj
|
||||
..\upnp\src\genlib\miniserver\miniserver.obj
|
||||
..\upnp\src\genlib\net\sock.obj ..\upnp\src\genlib\net\http\webserver.obj
|
||||
..\upnp\src\genlib\net\http\httpparser.obj
|
||||
..\upnp\src\genlib\net\http\httpreadwrite.obj
|
||||
..\upnp\src\genlib\net\http\parsetools.obj
|
||||
..\upnp\src\genlib\net\http\statcodes.obj
|
||||
..\upnp\src\genlib\net\uri\uri.obj
|
||||
..\upnp\src\genlib\service_table\service_table.obj
|
||||
..\upnp\src\genlib\util\util.obj ..\upnp\src\genlib\util\membuffer.obj
|
||||
..\upnp\src\genlib\util\strintmap.obj
|
||||
..\upnp\src\genlib\util\upnp_timeout.obj ..\upnp\src\soap\soap_device.obj
|
||||
..\upnp\src\soap\soap_common.obj ..\upnp\src\soap\soap_ctrlpt.obj
|
||||
..\upnp\src\ssdp\ssdp_server.obj ..\upnp\src\ssdp\ssdp_ctrlpt.obj
|
||||
..\upnp\src\ssdp\ssdp_device.obj ..\upnp\src\urlconfig\urlconfig.obj
|
||||
..\upnp\src\uuid\uuid.obj ..\upnp\src\uuid\md5.obj
|
||||
..\upnp\src\uuid\sysdep.obj"/>
|
||||
<RESFILES value=""/>
|
||||
<DEFFILE value=""/>
|
||||
<RESDEPEN value="$(RESFILES)"/>
|
||||
<LIBFILES value="..\..\..\pthreads-w32-1-10-0-release\pthreadBC1.lib"/>
|
||||
<LIBRARIES value=""/>
|
||||
<SPARELIBS value=""/>
|
||||
<PACKAGES value=""/>
|
||||
<PATHCPP value=".;..\ixml\src;..\threadutil\src;..\upnp\src;..\upnp\src\api;..\upnp\src\gena;..\upnp\src\genlib\client_table;..\upnp\src\genlib\miniserver;..\upnp\src\genlib\net;..\upnp\src\genlib\net\http;..\upnp\src\genlib\net\uri;..\upnp\src\genlib\service_table;..\upnp\src\genlib\util;..\upnp\src\soap;..\upnp\src\ssdp;..\upnp\src\urlconfig;..\upnp\src\uuid"/>
|
||||
<PATHPAS value=".;"/>
|
||||
<PATHRC value=".;"/>
|
||||
<PATHASM value=".;"/>
|
||||
<DEBUGLIBPATH value="$(BCB)\lib\debug"/>
|
||||
<RELEASELIBPATH value="$(BCB)\lib\release"/>
|
||||
<LINKER value="tlink32"/>
|
||||
<USERDEFINES value="WIN32;LIBUPNP_EXPORTS"/>
|
||||
<SYSDEFINES value="NO_STRICT;_NO_VCL"/>
|
||||
<MAINSOURCE value="libupnp.bpf"/>
|
||||
<INCLUDEPATH value="..\upnp\src\genlib\util;..\upnp\src;..\upnp\src\uuid;..\upnp\src\urlconfig;..\upnp\src\ssdp;..\upnp\src\soap;..\upnp\src\genlib\service_table;..\upnp\src\genlib\net;..\upnp\src\genlib\net\uri;..\upnp\src\genlib\net\http;..\upnp\src\genlib\miniserver;..\upnp\src\genlib\client_table;..\upnp\src\gena;..\upnp\src\api;..\threadutil\src;..\ixml\src;$(BCB)\include;$(BCB)\include\vcl;..\ixml\inc;..\threadutil\inc;..\upnp\inc;inc;..\ixml\src\inc;..\upnp\src\inc"/>
|
||||
<LIBPATH value="..\upnp\src\uuid;..\upnp\src\urlconfig;..\upnp\src\ssdp;..\upnp\src\soap;..\upnp\src\genlib\util;..\upnp\src\genlib\service_table;..\upnp\src\genlib\net\uri;..\upnp\src\genlib\net\http;..\upnp\src\genlib\net;..\upnp\src\genlib\miniserver;..\upnp\src\genlib\client_table;..\upnp\src\gena;..\upnp\src\api;..\upnp\src;..\threadutil\src;..\ixml\src;$(BCB)\lib\obj;$(BCB)\lib"/>
|
||||
<WARNINGS value="-w-par"/>
|
||||
</MACROS>
|
||||
<OPTIONS>
|
||||
<CFLAG1 value="-WD -O2 -H=$(BCB)\lib\vcl50.csm -Hc -Vx -Ve -fp -ff -X- -a4 -6 -b- -k- -vi
|
||||
-tWD -tWM -c"/>
|
||||
<PFLAGS value="-$Y- -$L- -$D- -v -JPHNE -M"/>
|
||||
<RFLAGS value=""/>
|
||||
<AFLAGS value="/mx /w2 /zd"/>
|
||||
<LFLAGS value="-D"" -aa -Tpd -x -Gn -Gi"/>
|
||||
</OPTIONS>
|
||||
<LINKER>
|
||||
<ALLOBJ value="c0d32.obj $(OBJFILES)"/>
|
||||
<ALLRES value="$(RESFILES)"/>
|
||||
<ALLLIB value="$(LIBFILES) $(LIBRARIES) import32.lib cw32mt.lib"/>
|
||||
</LINKER>
|
||||
<IDEOPTIONS>
|
||||
[Version Info]
|
||||
IncludeVerInfo=0
|
||||
AutoIncBuild=0
|
||||
MajorVer=1
|
||||
MinorVer=0
|
||||
Release=0
|
||||
Build=0
|
||||
Debug=0
|
||||
PreRelease=0
|
||||
Special=0
|
||||
Private=0
|
||||
DLL=0
|
||||
Locale=1031
|
||||
CodePage=1252
|
||||
|
||||
[Version Info Keys]
|
||||
CompanyName=
|
||||
FileDescription=
|
||||
FileVersion=1.0.0.0
|
||||
InternalName=
|
||||
LegalCopyright=
|
||||
LegalTrademarks=
|
||||
OriginalFilename=
|
||||
ProductName=
|
||||
ProductVersion=1.0.0.0
|
||||
Comments=
|
||||
|
||||
[HistoryLists\hlIncludePath]
|
||||
Count=1
|
||||
Item0=..\upnp\src\genlib\util;..\upnp\src;..\upnp\src\uuid;..\upnp\src\urlconfig;..\upnp\src\ssdp;..\upnp\src\soap;..\upnp\src\genlib\service_table;..\upnp\src\genlib\net;..\upnp\src\genlib\net\uri;..\upnp\src\genlib\net\http;..\upnp\src\genlib\miniserver;..\upnp\src\genlib\client_table;..\upnp\src\gena;..\upnp\src\api;..\threadutil\src;..\ixml\src;$(BCB)\include;$(BCB)\include\vcl;..\ixml\inc;..\threadutil\inc;..\upnp\inc;inc;..\ixml\src\inc;..\upnp\src\inc
|
||||
|
||||
[HistoryLists\hlLibraryPath]
|
||||
Count=1
|
||||
Item0=..\upnp\src\uuid;..\upnp\src\urlconfig;..\upnp\src\ssdp;..\upnp\src\soap;..\upnp\src\genlib\util;..\upnp\src\genlib\service_table;..\upnp\src\genlib\net\uri;..\upnp\src\genlib\net\http;..\upnp\src\genlib\net;..\upnp\src\genlib\miniserver;..\upnp\src\genlib\client_table;..\upnp\src\gena;..\upnp\src\api;..\upnp\src;..\threadutil\src;..\ixml\src;$(BCB)\lib\obj;$(BCB)\lib
|
||||
|
||||
[HistoryLists\hlDebugSourcePath]
|
||||
Count=1
|
||||
Item0=$(BCB)\source\vcl
|
||||
|
||||
[HistoryLists\hlConditionals]
|
||||
Count=3
|
||||
Item0=WIN32;LIBUPNP_EXPORTS
|
||||
Item1=WIN32;EXPORT_SPEC
|
||||
Item2=WIN32
|
||||
|
||||
[Debugging]
|
||||
DebugSourceDirs=$(BCB)\source\vcl
|
||||
|
||||
[Parameters]
|
||||
RunParams=
|
||||
HostApplication=
|
||||
RemoteHost=
|
||||
RemotePath=
|
||||
RemoteDebug=0
|
||||
|
||||
[Compiler]
|
||||
ShowInfoMsgs=0
|
||||
LinkDebugVcl=0
|
||||
</IDEOPTIONS>
|
||||
</PROJECT>
|
287
build/libupnp.dsp
Normal file
287
build/libupnp.dsp
Normal file
@ -0,0 +1,287 @@
|
||||
# Microsoft Developer Studio Project File - Name="libupnp" - Package Owner=<4>
|
||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
||||
# ** NICHT BEARBEITEN **
|
||||
|
||||
# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102
|
||||
|
||||
CFG=libupnp - Win32 Debug
|
||||
!MESSAGE Dies ist kein gültiges Makefile. Zum Erstellen dieses Projekts mit NMAKE
|
||||
!MESSAGE verwenden Sie den Befehl "Makefile exportieren" und führen Sie den Befehl
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "libupnp.mak".
|
||||
!MESSAGE
|
||||
!MESSAGE Sie können beim Ausführen von NMAKE eine Konfiguration angeben
|
||||
!MESSAGE durch Definieren des Makros CFG in der Befehlszeile. Zum Beispiel:
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "libupnp.mak" CFG="libupnp - Win32 Debug"
|
||||
!MESSAGE
|
||||
!MESSAGE Für die Konfiguration stehen zur Auswahl:
|
||||
!MESSAGE
|
||||
!MESSAGE "libupnp - Win32 Release" (basierend auf "Win32 (x86) Dynamic-Link Library")
|
||||
!MESSAGE "libupnp - Win32 Debug" (basierend auf "Win32 (x86) Dynamic-Link Library")
|
||||
!MESSAGE
|
||||
|
||||
# Begin Project
|
||||
# PROP AllowPerConfigDependencies 0
|
||||
# PROP Scc_ProjName ""
|
||||
# PROP Scc_LocalPath ""
|
||||
CPP=cl.exe
|
||||
MTL=midl.exe
|
||||
RSC=rc.exe
|
||||
|
||||
!IF "$(CFG)" == "libupnp - Win32 Release"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "Release"
|
||||
# PROP BASE Intermediate_Dir "Release"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "Release"
|
||||
# PROP Intermediate_Dir "Release"
|
||||
# PROP Ignore_Export_Lib 0
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBUPNP_EXPORTS" /YX /FD /c
|
||||
# ADD CPP /nologo /MT /W3 /GX /O2 /I "E:\svnupnp\trunk\ixml\src\inc" /I "E:\svnupnp\trunk\ixml\inc" /I "E:\svnupnp\trunk\threadutil\inc" /I "E:\svnupnp\trunk\upnp\inc" /I "E:\svnupnp\trunk\upnp\src\inc" /I "E:\svnupnp\trunk\build\inc" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBUPNP_EXPORTS" /FR /YX /FD /c
|
||||
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32
|
||||
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32
|
||||
# ADD BASE RSC /l 0x407 /d "NDEBUG"
|
||||
# ADD RSC /l 0x407 /d "NDEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386
|
||||
# ADD LINK32 kernel32.lib user32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib E:\svnupnp\trunk\libupnp\build\bin\pthreadvc2.lib ws2_32.lib /nologo /dll /machine:I386
|
||||
|
||||
!ELSEIF "$(CFG)" == "libupnp - Win32 Debug"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "Debug"
|
||||
# PROP BASE Intermediate_Dir "Debug"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "Debug"
|
||||
# PROP Intermediate_Dir "Debug"
|
||||
# PROP Ignore_Export_Lib 0
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBUPNP_EXPORTS" /YX /FD /GZ /c
|
||||
# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "E:\svnupnp\trunk\ixml\src\inc" /I "E:\svnupnp\trunk\ixml\inc" /I "E:\svnupnp\trunk\threadutil\inc" /I "E:\svnupnp\trunk\upnp\inc" /I "E:\svnupnp\trunk\upnp\src\inc" /I "E:\svnupnp\trunk\build\inc" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "LIBUPNP_EXPORTS" /FR /YX /FD /GZ /c
|
||||
# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32
|
||||
# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32
|
||||
# ADD BASE RSC /l 0x407 /d "_DEBUG"
|
||||
# ADD RSC /l 0x407 /d "_DEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept
|
||||
# ADD LINK32 kernel32.lib user32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib E:\svnupnp\trunk\libupnp\build\bin\pthreadvc2.lib ws2_32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept
|
||||
|
||||
!ENDIF
|
||||
|
||||
# Begin Target
|
||||
|
||||
# Name "libupnp - Win32 Release"
|
||||
# Name "libupnp - Win32 Debug"
|
||||
# Begin Group "Quellcodedateien"
|
||||
|
||||
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\ixml\src\attr.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\upnp\src\genlib\client_table\client_table.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\ixml\src\document.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\ixml\src\element.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\threadutil\src\FreeList.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\upnp\src\gena\gena_callback2.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\upnp\src\gena\gena_ctrlpt.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\upnp\src\gena\gena_device.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\upnp\src\genlib\net\http\httpparser.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\upnp\src\genlib\net\http\httpreadwrite.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\threadutil\src\iasnprintf.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\upnp\src\inet_pton.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\ixml\src\ixml.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\ixml\src\ixmlmembuf.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\ixml\src\ixmlparser.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\threadutil\src\LinkedList.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\upnp\src\uuid\md5.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\upnp\src\genlib\util\membuffer.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\upnp\src\genlib\miniserver\miniserver.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\ixml\src\namedNodeMap.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\ixml\src\node.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\ixml\src\nodeList.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\upnp\src\genlib\net\http\parsetools.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\upnp\src\genlib\service_table\service_table.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\upnp\src\soap\soap_common.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\upnp\src\soap\soap_ctrlpt.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\upnp\src\soap\soap_device.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\upnp\src\genlib\net\sock.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\upnp\src\ssdp\ssdp_ctrlpt.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\upnp\src\ssdp\ssdp_device.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\upnp\src\ssdp\ssdp_server.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\upnp\src\genlib\net\http\statcodes.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\upnp\src\genlib\util\strintmap.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\upnp\src\uuid\sysdep.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\threadutil\src\ThreadPool.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\threadutil\src\TimerThread.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\upnp\src\genlib\util\upnp_timeout.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\upnp\src\api\upnpapi.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\upnp\src\api\upnptools.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\upnp\src\genlib\net\uri\uri.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\upnp\src\urlconfig\urlconfig.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\upnp\src\genlib\util\util.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\upnp\src\uuid\uuid.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\upnp\src\genlib\net\http\webserver.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\upnp\src\win_dll.c
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Group "Header-Dateien"
|
||||
|
||||
# PROP Default_Filter "h;hpp;hxx;hm;inl"
|
||||
# End Group
|
||||
# Begin Group "Ressourcendateien"
|
||||
|
||||
# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
|
||||
# End Group
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=..\..\..\..\libupnp_win32.patch
|
||||
# End Source File
|
||||
# End Target
|
||||
# End Project
|
29
build/libupnp.dsw
Normal file
29
build/libupnp.dsw
Normal file
@ -0,0 +1,29 @@
|
||||
Microsoft Developer Studio Workspace File, Format Version 6.00
|
||||
# WARNUNG: DIESE ARBEITSBEREICHSDATEI DARF NICHT BEARBEITET ODER GELÖSCHT WERDEN!
|
||||
|
||||
###############################################################################
|
||||
|
||||
Project: "libupnp"=.\libupnp.dsp - Package Owner=<4>
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
Package=<4>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
###############################################################################
|
||||
|
||||
Global:
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
Package=<3>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
###############################################################################
|
||||
|
10
configure.ac
10
configure.ac
@ -10,7 +10,7 @@
|
||||
|
||||
AC_PREREQ(2.59)
|
||||
|
||||
AC_INIT([libupnp], [1.4.0], [virtual_worlds@gmx.de])
|
||||
AC_INIT([libupnp], [1.4.1], [virtual_worlds@gmx.de])
|
||||
# *Independently* of the above libupnp package version, the libtool version
|
||||
# of the 3 libraries need to be updated whenever there is a change released :
|
||||
# "current:revision:age" (this is NOT the same as the package version), where:
|
||||
@ -19,9 +19,9 @@ AC_INIT([libupnp], [1.4.0], [virtual_worlds@gmx.de])
|
||||
# - interfaces added: age++
|
||||
# - interfaces removed: age=0
|
||||
# *please update only once, before a formal release, not for each change*
|
||||
AC_SUBST([LT_VERSION_IXML], [2:1:0])
|
||||
AC_SUBST([LT_VERSION_THREADUTIL], [2:1:0])
|
||||
AC_SUBST([LT_VERSION_UPNP], [2:1:0])
|
||||
AC_SUBST([LT_VERSION_IXML], [2:2:0])
|
||||
AC_SUBST([LT_VERSION_THREADUTIL], [2:2:0])
|
||||
AC_SUBST([LT_VERSION_UPNP], [2:2:0])
|
||||
|
||||
|
||||
AC_CONFIG_AUX_DIR(config.aux)
|
||||
@ -129,6 +129,7 @@ AM_PROG_CC_C_O
|
||||
AC_PROG_LIBTOOL
|
||||
AC_PROG_INSTALL
|
||||
AC_PROG_MAKE_SET
|
||||
AC_PROG_EGREP
|
||||
|
||||
|
||||
#
|
||||
@ -186,6 +187,7 @@ AC_CONFIG_FILES([Makefile
|
||||
threadutil/Makefile
|
||||
upnp/Makefile
|
||||
upnp/doc/Makefile
|
||||
docs/dist/Makefile
|
||||
libupnp.pc
|
||||
])
|
||||
|
||||
|
BIN
docs/dist/IXML_Programming_Guide.pdf
vendored
Normal file
BIN
docs/dist/IXML_Programming_Guide.pdf
vendored
Normal file
Binary file not shown.
508
docs/dist/Makefile.am
vendored
Normal file
508
docs/dist/Makefile.am
vendored
Normal file
@ -0,0 +1,508 @@
|
||||
EXTRA_DIST = ./UPnP_Programming_Guide.pdf \
|
||||
./IXML_Programming_Guide.pdf \
|
||||
./html/upnp/icon1.gif \
|
||||
./html/upnp/icon2.gif \
|
||||
./html/upnp/toc.html \
|
||||
./html/upnp/General.html \
|
||||
./html/upnp/index.html \
|
||||
./html/upnp/Introduction.html \
|
||||
./html/upnp/License.html \
|
||||
./html/upnp/AboutCallbacks.html \
|
||||
./html/upnp/TheAPI.html \
|
||||
./html/upnp/Errorcodes.html \
|
||||
./html/upnp/UPNP_E_SUCCESS0.html \
|
||||
./html/upnp/UPNP_E_INVALID_HANDLE-100.html \
|
||||
./html/upnp/UPNP_E_INVALID_PARAM-101.html \
|
||||
./html/upnp/UPNP_E_OUTOF_HANDLE-102.html \
|
||||
./html/upnp/UPNP_E_OUTOF_MEMORY-104.html \
|
||||
./html/upnp/UPNP_E_INIT-105.html \
|
||||
./html/upnp/UPNP_E_INVALID_DESC-107.html \
|
||||
./html/upnp/UPNP_E_INVALID_URL-108.html \
|
||||
./html/upnp/UPNP_E_INVALID_SERVICE-111.html \
|
||||
./html/upnp/UPNP_E_BAD_RESPONSE-113.html \
|
||||
./html/upnp/UPNP_E_INVALID_ACTION-115.html \
|
||||
./html/upnp/UPNP_E_FINISH-116.html \
|
||||
./html/upnp/UPNP_E_INIT_FAILED-117.html \
|
||||
./html/upnp/UPNP_E_BAD_HTTPMSG-119.html \
|
||||
./html/upnp/UPNP_E_ALREADY_REGISTERED-120.html \
|
||||
./html/upnp/UPNP_E_NETWORK_ERROR-200.html \
|
||||
./html/upnp/UPNP_E_SOCKET_WRITE-201.html \
|
||||
./html/upnp/UPNP_E_SOCKET_READ-202.html \
|
||||
./html/upnp/UPNP_E_SOCKET_BIND-203.html \
|
||||
./html/upnp/UPNP_E_SOCKET_CONNECT-204.html \
|
||||
./html/upnp/UPNP_E_OUTOF_SOCKET-205.html \
|
||||
./html/upnp/UPNP_E_LISTEN-206.html \
|
||||
./html/upnp/UPNP_E_TIMEDOUT-207.html \
|
||||
./html/upnp/UPNP_E_SOCKET_ERROR-208.html \
|
||||
./html/upnp/UPNP_E_CANCELED-210.html \
|
||||
./html/upnp/UPNP_E_SUBSCRIBE_UNACCEPTED-301.html \
|
||||
./html/upnp/UPNP_E_UNSUBSCRIBE_UNACCAPTED-302.html \
|
||||
./html/upnp/UPNP_E_NOTIFY_UNACCEPTED-303.html \
|
||||
./html/upnp/UPNP_E_INVALID_ARGUMENT-501.html \
|
||||
./html/upnp/UPNP_E_FILE_NOT_FOUND-502.html \
|
||||
./html/upnp/UPNP_E_FILE_READ_ERROR-503.html \
|
||||
./html/upnp/UPNP_E_EXT_NOT_XML-504.html \
|
||||
./html/upnp/UPNP_E_NOT_FOUND-507.html \
|
||||
./html/upnp/UPNP_E_INTERNAL_ERROR-911.html \
|
||||
./html/upnp/ConstantsStructuresandTypes.html \
|
||||
./html/upnp/UpnpClient_Handle.html \
|
||||
./html/upnp/UpnpDevice_Handle.html \
|
||||
./html/upnp/UPnP_EventType.html \
|
||||
./html/upnp/UPNP_CONTROL_ACTION_REQUEST.html \
|
||||
./html/upnp/UPNP_CONTROL_ACTION_COMPLETE.html \
|
||||
./html/upnp/UPNP_CONTROL_GET_VAR_REQUEST.html \
|
||||
./html/upnp/UPNP_CONTROL_GET_VAR_COMPLETE.html \
|
||||
./html/upnp/UPNP_DISCOVERY_ADVERTISEMENT_ALIVE.html \
|
||||
./html/upnp/UPNP_DISCOVERY_ADVERTISEMENT_BYEBYE.html \
|
||||
./html/upnp/UPNP_DISCOVERY_SEARCH_RESULT.html \
|
||||
./html/upnp/UPNP_DISCOVERY_SEARCH_TIMEOUT.html \
|
||||
./html/upnp/UPNP_EVENT_SUBSCRIPTION_REQUEST.html \
|
||||
./html/upnp/UPNP_EVENT_RECEIVED.html \
|
||||
./html/upnp/UPNP_EVENT_RENEWAL_COMPLETE.html \
|
||||
./html/upnp/UPNP_EVENT_SUBSCRIBE_COMPLETE.html \
|
||||
./html/upnp/UPNP_EVENT_UNSUBSCRIBE_COMPLETE.html \
|
||||
./html/upnp/UPNP_EVENT_AUTORENEWAL_FAILED.html \
|
||||
./html/upnp/UPNP_EVENT_SUBSCRIPTION_EXPIRED.html \
|
||||
./html/upnp/Upnp_SID44.html \
|
||||
./html/upnp/Upnp_SType.html \
|
||||
./html/upnp/UPNP_S_ALL.html \
|
||||
./html/upnp/UPNP_S_ROOT.html \
|
||||
./html/upnp/UPNP_S_DEVICE.html \
|
||||
./html/upnp/UPNP_S_SERVICE.html \
|
||||
./html/upnp/Upnp_DescType.html \
|
||||
./html/upnp/UPNPREG_URL_DESC.html \
|
||||
./html/upnp/UPNPREG_FILENAME_DESC.html \
|
||||
./html/upnp/UPNPREG_BUF_DESC.html \
|
||||
./html/upnp/Upnp_Action_Request.html \
|
||||
./html/upnp/Upnp_State_Var_Request.html \
|
||||
./html/upnp/Upnp_State_Var_Complete.html \
|
||||
./html/upnp/Upnp_Event.html \
|
||||
./html/upnp/Upnp_Discovery.html \
|
||||
./html/upnp/Upnp_Event_Subscribe.html \
|
||||
./html/upnp/Upnp_Subscription_Request.html \
|
||||
./html/upnp/UpnpVirtualDirCallbacks.html \
|
||||
./html/upnp/Upnp_FunPtr.html \
|
||||
./html/upnp/InitializationandRegistration.html \
|
||||
./html/upnp/UpnpInit.html \
|
||||
./html/upnp/UpnpFinish.html \
|
||||
./html/upnp/UpnpGetServerPort.html \
|
||||
./html/upnp/UpnpGetServerIpAddress.html \
|
||||
./html/upnp/UpnpRegisterClient.html \
|
||||
./html/upnp/UpnpRegisterRootDevice.html \
|
||||
./html/upnp/UpnpRegisterRootDevice2.html \
|
||||
./html/upnp/UpnpUnRegisterClient.html \
|
||||
./html/upnp/UpnpUnRegisterRootDevice.html \
|
||||
./html/upnp/UpnpSetContentLength.html \
|
||||
./html/upnp/UpnpSetMaxContentLength.html \
|
||||
./html/upnp/Discovery.html \
|
||||
./html/upnp/UpnpSearchAsync.html \
|
||||
./html/upnp/UpnpSendAdvertisement.html \
|
||||
./html/upnp/Control.html \
|
||||
./html/upnp/UpnpGetServiceVarStatus.html \
|
||||
./html/upnp/UpnpGetServiceVarStatusAsync.html \
|
||||
./html/upnp/UpnpSendAction.html \
|
||||
./html/upnp/UpnpSendActionEx.html \
|
||||
./html/upnp/UpnpSendActionAsync.html \
|
||||
./html/upnp/UpnpSendActionExAsync.html \
|
||||
./html/upnp/Eventing.html \
|
||||
./html/upnp/UpnpAcceptSubscription.html \
|
||||
./html/upnp/UpnpAcceptSubscriptionExt.html \
|
||||
./html/upnp/UpnpNotify.html \
|
||||
./html/upnp/UpnpNotifyExt.html \
|
||||
./html/upnp/UpnpRenewSubscription.html \
|
||||
./html/upnp/UpnpRenewSubscriptionAsync.html \
|
||||
./html/upnp/UpnpSetMaxSubscriptions.html \
|
||||
./html/upnp/UpnpSetMaxSubscriptionTimeOut.html \
|
||||
./html/upnp/UpnpSubscribe.html \
|
||||
./html/upnp/UpnpSubscribeAsync.html \
|
||||
./html/upnp/UpnpUnSubscribe.html \
|
||||
./html/upnp/UpnpUnSubscribeAsync.html \
|
||||
./html/upnp/ControlPointHTTPAPI.html \
|
||||
./html/upnp/UpnpDownloadUrlItem.html \
|
||||
./html/upnp/UpnpOpenHttpGet.html \
|
||||
./html/upnp/UpnpOpenHttpGetProxy.html \
|
||||
./html/upnp/UpnpOpenHttpGetEx.html \
|
||||
./html/upnp/UpnpReadHttpGet.html \
|
||||
./html/upnp/UpnpHttpGetProgress.html \
|
||||
./html/upnp/UpnpCancelHttpGet.html \
|
||||
./html/upnp/UpnpCloseHttpGet.html \
|
||||
./html/upnp/UpnpOpenHttpPost.html \
|
||||
./html/upnp/UpnpWriteHttpPost.html \
|
||||
./html/upnp/UpnpCloseHttpPost.html \
|
||||
./html/upnp/UpnpDownloadXmlDoc.html \
|
||||
./html/upnp/WebServerAPI.html \
|
||||
./html/upnp/UpnpSetWebServerRootDir.html \
|
||||
./html/upnp/UpnpSetVirtualDirCallbacks.html \
|
||||
./html/upnp/UpnpEnableWebserver.html \
|
||||
./html/upnp/UpnpIsWebserverEnabled.html \
|
||||
./html/upnp/UpnpAddVirtualDir.html \
|
||||
./html/upnp/UpnpRemoveVirtualDir.html \
|
||||
./html/upnp/UpnpRemoveAllVirtualDirs.html \
|
||||
./html/upnp/OptionalToolAPIs.html \
|
||||
./html/upnp/UpnpResolveURL.html \
|
||||
./html/upnp/UpnpMakeAction.html \
|
||||
./html/upnp/UpnpAddToAction.html \
|
||||
./html/upnp/UpnpMakeActionResponse.html \
|
||||
./html/upnp/UpnpAddToActionResponse.html \
|
||||
./html/upnp/UpnpAddToPropertySet.html \
|
||||
./html/upnp/UpnpCreatePropertySet.html \
|
||||
./html/upnp/UpnpGetErrorMessage.html \
|
||||
./html/ixml/icon1.gif \
|
||||
./html/ixml/icon2.gif \
|
||||
./html/ixml/toc.html \
|
||||
./html/ixml/General.html \
|
||||
./html/ixml/index.html \
|
||||
./html/ixml/Introduction.html \
|
||||
./html/ixml/License.html \
|
||||
./html/ixml/DOMInterfaces.html \
|
||||
./html/ixml/InterfaceitNode.html \
|
||||
./html/ixml/ixmlNode_getNodeName.html \
|
||||
./html/ixml/ixmlNode_getNodeValue.html \
|
||||
./html/ixml/ixmlNode_setNodeValue.html \
|
||||
./html/ixml/ixmlNode_getNodeType.html \
|
||||
./html/ixml/ixmlNode_getParentNode.html \
|
||||
./html/ixml/ixmlNode_getChildNodes.html \
|
||||
./html/ixml/ixmlNode_getFirstChild.html \
|
||||
./html/ixml/ixmlNode_getLastChild.html \
|
||||
./html/ixml/ixmlNode_getPreviousSibling.html \
|
||||
./html/ixml/ixmlNode_getNextSibling.html \
|
||||
./html/ixml/ixmlNode_getAttributes.html \
|
||||
./html/ixml/ixmlNode_getOwnerDocument.html \
|
||||
./html/ixml/ixmlNode_getNamespaceURI.html \
|
||||
./html/ixml/ixmlNode_getPrefix.html \
|
||||
./html/ixml/ixmlNode_getLocalName.html \
|
||||
./html/ixml/ixmlNode_insertBefore.html \
|
||||
./html/ixml/ixmlNode_replaceChild.html \
|
||||
./html/ixml/ixmlNode_removeChild.html \
|
||||
./html/ixml/ixmlNode_appendChild.html \
|
||||
./html/ixml/ixmlNode_hasChildNodes.html \
|
||||
./html/ixml/ixmlNode_cloneNode.html \
|
||||
./html/ixml/ixmlNode_hasAttributes.html \
|
||||
./html/ixml/ixmlNode_free.html \
|
||||
./html/ixml/InterfaceitAttr.html \
|
||||
./html/ixml/ixmlAttr_free.html \
|
||||
./html/ixml/InterfaceitCDATASection.html \
|
||||
./html/ixml/ixmlCDATASection_init.html \
|
||||
./html/ixml/ixmlCDATASection_free.html \
|
||||
./html/ixml/InterfaceitDocument.html \
|
||||
./html/ixml/ixmlDocument_init.html \
|
||||
./html/ixml/ixmlDocument_createDocumentEx.html \
|
||||
./html/ixml/ixmlDocument_createDocument.html \
|
||||
./html/ixml/ixmlDocument_createElementEx.html \
|
||||
./html/ixml/ixmlDocument_createElement.html \
|
||||
./html/ixml/ixmlDocument_createTextNodeEx.html \
|
||||
./html/ixml/ixmlDocument_createTextNode.html \
|
||||
./html/ixml/ixmlDocument_createCDATASectionEx.html \
|
||||
./html/ixml/ixmlDocument_createCDATASection.html \
|
||||
./html/ixml/ixmlDocument_createAttribute.html \
|
||||
./html/ixml/ixmlDocument_createAttributeEx.html \
|
||||
./html/ixml/ixmlDocument_getElementsByTagName.html \
|
||||
./html/ixml/ixmlDocument_createElementNSEx.html \
|
||||
./html/ixml/ixmlDocument_createElementNS.html \
|
||||
./html/ixml/ixmlDocument_createAttributeNSEx.html \
|
||||
./html/ixml/ixmlDocument_createAttributeNS.html \
|
||||
./html/ixml/ixmlDocument_getElementsByTagNameNS.html \
|
||||
./html/ixml/ixmlDocument_getElementById.html \
|
||||
./html/ixml/ixmlDocument_free.html \
|
||||
./html/ixml/ixmlDocument_importNode.html \
|
||||
./html/ixml/InterfaceitElement.html \
|
||||
./html/ixml/ixmlElement_init.html \
|
||||
./html/ixml/ixmlElement_getTagName.html \
|
||||
./html/ixml/ixmlElement_getAttribute.html \
|
||||
./html/ixml/ixmlElement_setAttribute.html \
|
||||
./html/ixml/ixmlElement_removeAttribute.html \
|
||||
./html/ixml/ixmlElement_getAttributeNode.html \
|
||||
./html/ixml/ixmlElement_setAttributeNode.html \
|
||||
./html/ixml/ixmlElement_removeAttributeNode.html \
|
||||
./html/ixml/ixmlElement_getElementsByTagName.html \
|
||||
./html/ixml/ixmlElement_getAttributeNS.html \
|
||||
./html/ixml/ixmlElement_setAttributeNS.html \
|
||||
./html/ixml/ixmlElement_removeAttributeNS.html \
|
||||
./html/ixml/ixmlElement_getAttributeNodeNS.html \
|
||||
./html/ixml/ixmlElement_setAttributeNodeNS.html \
|
||||
./html/ixml/ixmlElement_getElementsByTagNameNS.html \
|
||||
./html/ixml/ixmlElement_hasAttribute.html \
|
||||
./html/ixml/ixmlElement_hasAttributeNS.html \
|
||||
./html/ixml/ixmlElement_free.html \
|
||||
./html/ixml/InterfaceitNamedNodeMap.html \
|
||||
./html/ixml/ixmlNamedNodeMap_getLength.html \
|
||||
./html/ixml/ixmlNamedNodeMap_getNamedItem.html \
|
||||
./html/ixml/ixmlNamedNodeMap_setNamedItem.html \
|
||||
./html/ixml/ixmlNamedNodeMap_removeNamedItem.html \
|
||||
./html/ixml/ixmlNamedNodeMap_item.html \
|
||||
./html/ixml/ixmlNamedNodeMap_getNamedItemNS.html \
|
||||
./html/ixml/ixmlNamedNodeMap_setNamedItemNS.html \
|
||||
./html/ixml/ixmlNamedNodeMap_removeNamedItemNS.html \
|
||||
./html/ixml/ixmlNamedNodeMap_free.html \
|
||||
./html/ixml/InterfaceitNodeList.html \
|
||||
./html/ixml/ixmlNodeList_item.html \
|
||||
./html/ixml/ixmlNodeList_length.html \
|
||||
./html/ixml/ixmlNodeList_free.html \
|
||||
./html/ixml/IXMLAPI.html \
|
||||
./html/ixml/ixmlPrintDocument.html \
|
||||
./html/ixml/ixmlPrintNode.html \
|
||||
./html/ixml/ixmlDocumenttoString.html \
|
||||
./html/ixml/ixmlNodetoString.html \
|
||||
./html/ixml/ixmlRelaxParser.html \
|
||||
./html/ixml/ixmlParseBuffer.html \
|
||||
./html/ixml/ixmlParseBufferEx.html \
|
||||
./html/ixml/ixmlLoadDocument.html \
|
||||
./html/ixml/ixmlLoadDocumentEx.html \
|
||||
./html/ixml/ixmlCloneDOMString.html \
|
||||
./html/ixml/ixmlFreeDOMString.html
|
||||
|
||||
if WITH_DOCDIR
|
||||
docsdir = @DOCDIR@
|
||||
nobase_docs_DATA = ./UPnP_Programming_Guide.pdf \
|
||||
./IXML_Programming_Guide.pdf \
|
||||
./html/upnp/icon1.gif \
|
||||
./html/upnp/icon2.gif \
|
||||
./html/upnp/toc.html \
|
||||
./html/upnp/General.html \
|
||||
./html/upnp/index.html \
|
||||
./html/upnp/Introduction.html \
|
||||
./html/upnp/License.html \
|
||||
./html/upnp/AboutCallbacks.html \
|
||||
./html/upnp/TheAPI.html \
|
||||
./html/upnp/Errorcodes.html \
|
||||
./html/upnp/UPNP_E_SUCCESS0.html \
|
||||
./html/upnp/UPNP_E_INVALID_HANDLE-100.html \
|
||||
./html/upnp/UPNP_E_INVALID_PARAM-101.html \
|
||||
./html/upnp/UPNP_E_OUTOF_HANDLE-102.html \
|
||||
./html/upnp/UPNP_E_OUTOF_MEMORY-104.html \
|
||||
./html/upnp/UPNP_E_INIT-105.html \
|
||||
./html/upnp/UPNP_E_INVALID_DESC-107.html \
|
||||
./html/upnp/UPNP_E_INVALID_URL-108.html \
|
||||
./html/upnp/UPNP_E_INVALID_SERVICE-111.html \
|
||||
./html/upnp/UPNP_E_BAD_RESPONSE-113.html \
|
||||
./html/upnp/UPNP_E_INVALID_ACTION-115.html \
|
||||
./html/upnp/UPNP_E_FINISH-116.html \
|
||||
./html/upnp/UPNP_E_INIT_FAILED-117.html \
|
||||
./html/upnp/UPNP_E_BAD_HTTPMSG-119.html \
|
||||
./html/upnp/UPNP_E_ALREADY_REGISTERED-120.html \
|
||||
./html/upnp/UPNP_E_NETWORK_ERROR-200.html \
|
||||
./html/upnp/UPNP_E_SOCKET_WRITE-201.html \
|
||||
./html/upnp/UPNP_E_SOCKET_READ-202.html \
|
||||
./html/upnp/UPNP_E_SOCKET_BIND-203.html \
|
||||
./html/upnp/UPNP_E_SOCKET_CONNECT-204.html \
|
||||
./html/upnp/UPNP_E_OUTOF_SOCKET-205.html \
|
||||
./html/upnp/UPNP_E_LISTEN-206.html \
|
||||
./html/upnp/UPNP_E_TIMEDOUT-207.html \
|
||||
./html/upnp/UPNP_E_SOCKET_ERROR-208.html \
|
||||
./html/upnp/UPNP_E_CANCELED-210.html \
|
||||
./html/upnp/UPNP_E_SUBSCRIBE_UNACCEPTED-301.html \
|
||||
./html/upnp/UPNP_E_UNSUBSCRIBE_UNACCAPTED-302.html \
|
||||
./html/upnp/UPNP_E_NOTIFY_UNACCEPTED-303.html \
|
||||
./html/upnp/UPNP_E_INVALID_ARGUMENT-501.html \
|
||||
./html/upnp/UPNP_E_FILE_NOT_FOUND-502.html \
|
||||
./html/upnp/UPNP_E_FILE_READ_ERROR-503.html \
|
||||
./html/upnp/UPNP_E_EXT_NOT_XML-504.html \
|
||||
./html/upnp/UPNP_E_NOT_FOUND-507.html \
|
||||
./html/upnp/UPNP_E_INTERNAL_ERROR-911.html \
|
||||
./html/upnp/ConstantsStructuresandTypes.html \
|
||||
./html/upnp/UpnpClient_Handle.html \
|
||||
./html/upnp/UpnpDevice_Handle.html \
|
||||
./html/upnp/UPnP_EventType.html \
|
||||
./html/upnp/UPNP_CONTROL_ACTION_REQUEST.html \
|
||||
./html/upnp/UPNP_CONTROL_ACTION_COMPLETE.html \
|
||||
./html/upnp/UPNP_CONTROL_GET_VAR_REQUEST.html \
|
||||
./html/upnp/UPNP_CONTROL_GET_VAR_COMPLETE.html \
|
||||
./html/upnp/UPNP_DISCOVERY_ADVERTISEMENT_ALIVE.html \
|
||||
./html/upnp/UPNP_DISCOVERY_ADVERTISEMENT_BYEBYE.html \
|
||||
./html/upnp/UPNP_DISCOVERY_SEARCH_RESULT.html \
|
||||
./html/upnp/UPNP_DISCOVERY_SEARCH_TIMEOUT.html \
|
||||
./html/upnp/UPNP_EVENT_SUBSCRIPTION_REQUEST.html \
|
||||
./html/upnp/UPNP_EVENT_RECEIVED.html \
|
||||
./html/upnp/UPNP_EVENT_RENEWAL_COMPLETE.html \
|
||||
./html/upnp/UPNP_EVENT_SUBSCRIBE_COMPLETE.html \
|
||||
./html/upnp/UPNP_EVENT_UNSUBSCRIBE_COMPLETE.html \
|
||||
./html/upnp/UPNP_EVENT_AUTORENEWAL_FAILED.html \
|
||||
./html/upnp/UPNP_EVENT_SUBSCRIPTION_EXPIRED.html \
|
||||
./html/upnp/Upnp_SID44.html \
|
||||
./html/upnp/Upnp_SType.html \
|
||||
./html/upnp/UPNP_S_ALL.html \
|
||||
./html/upnp/UPNP_S_ROOT.html \
|
||||
./html/upnp/UPNP_S_DEVICE.html \
|
||||
./html/upnp/UPNP_S_SERVICE.html \
|
||||
./html/upnp/Upnp_DescType.html \
|
||||
./html/upnp/UPNPREG_URL_DESC.html \
|
||||
./html/upnp/UPNPREG_FILENAME_DESC.html \
|
||||
./html/upnp/UPNPREG_BUF_DESC.html \
|
||||
./html/upnp/Upnp_Action_Request.html \
|
||||
./html/upnp/Upnp_State_Var_Request.html \
|
||||
./html/upnp/Upnp_State_Var_Complete.html \
|
||||
./html/upnp/Upnp_Event.html \
|
||||
./html/upnp/Upnp_Discovery.html \
|
||||
./html/upnp/Upnp_Event_Subscribe.html \
|
||||
./html/upnp/Upnp_Subscription_Request.html \
|
||||
./html/upnp/UpnpVirtualDirCallbacks.html \
|
||||
./html/upnp/Upnp_FunPtr.html \
|
||||
./html/upnp/InitializationandRegistration.html \
|
||||
./html/upnp/UpnpInit.html \
|
||||
./html/upnp/UpnpFinish.html \
|
||||
./html/upnp/UpnpGetServerPort.html \
|
||||
./html/upnp/UpnpGetServerIpAddress.html \
|
||||
./html/upnp/UpnpRegisterClient.html \
|
||||
./html/upnp/UpnpRegisterRootDevice.html \
|
||||
./html/upnp/UpnpRegisterRootDevice2.html \
|
||||
./html/upnp/UpnpUnRegisterClient.html \
|
||||
./html/upnp/UpnpUnRegisterRootDevice.html \
|
||||
./html/upnp/UpnpSetContentLength.html \
|
||||
./html/upnp/UpnpSetMaxContentLength.html \
|
||||
./html/upnp/Discovery.html \
|
||||
./html/upnp/UpnpSearchAsync.html \
|
||||
./html/upnp/UpnpSendAdvertisement.html \
|
||||
./html/upnp/Control.html \
|
||||
./html/upnp/UpnpGetServiceVarStatus.html \
|
||||
./html/upnp/UpnpGetServiceVarStatusAsync.html \
|
||||
./html/upnp/UpnpSendAction.html \
|
||||
./html/upnp/UpnpSendActionEx.html \
|
||||
./html/upnp/UpnpSendActionAsync.html \
|
||||
./html/upnp/UpnpSendActionExAsync.html \
|
||||
./html/upnp/Eventing.html \
|
||||
./html/upnp/UpnpAcceptSubscription.html \
|
||||
./html/upnp/UpnpAcceptSubscriptionExt.html \
|
||||
./html/upnp/UpnpNotify.html \
|
||||
./html/upnp/UpnpNotifyExt.html \
|
||||
./html/upnp/UpnpRenewSubscription.html \
|
||||
./html/upnp/UpnpRenewSubscriptionAsync.html \
|
||||
./html/upnp/UpnpSetMaxSubscriptions.html \
|
||||
./html/upnp/UpnpSetMaxSubscriptionTimeOut.html \
|
||||
./html/upnp/UpnpSubscribe.html \
|
||||
./html/upnp/UpnpSubscribeAsync.html \
|
||||
./html/upnp/UpnpUnSubscribe.html \
|
||||
./html/upnp/UpnpUnSubscribeAsync.html \
|
||||
./html/upnp/ControlPointHTTPAPI.html \
|
||||
./html/upnp/UpnpDownloadUrlItem.html \
|
||||
./html/upnp/UpnpOpenHttpGet.html \
|
||||
./html/upnp/UpnpOpenHttpGetProxy.html \
|
||||
./html/upnp/UpnpOpenHttpGetEx.html \
|
||||
./html/upnp/UpnpReadHttpGet.html \
|
||||
./html/upnp/UpnpHttpGetProgress.html \
|
||||
./html/upnp/UpnpCancelHttpGet.html \
|
||||
./html/upnp/UpnpCloseHttpGet.html \
|
||||
./html/upnp/UpnpOpenHttpPost.html \
|
||||
./html/upnp/UpnpWriteHttpPost.html \
|
||||
./html/upnp/UpnpCloseHttpPost.html \
|
||||
./html/upnp/UpnpDownloadXmlDoc.html \
|
||||
./html/upnp/WebServerAPI.html \
|
||||
./html/upnp/UpnpSetWebServerRootDir.html \
|
||||
./html/upnp/UpnpSetVirtualDirCallbacks.html \
|
||||
./html/upnp/UpnpEnableWebserver.html \
|
||||
./html/upnp/UpnpIsWebserverEnabled.html \
|
||||
./html/upnp/UpnpAddVirtualDir.html \
|
||||
./html/upnp/UpnpRemoveVirtualDir.html \
|
||||
./html/upnp/UpnpRemoveAllVirtualDirs.html \
|
||||
./html/upnp/OptionalToolAPIs.html \
|
||||
./html/upnp/UpnpResolveURL.html \
|
||||
./html/upnp/UpnpMakeAction.html \
|
||||
./html/upnp/UpnpAddToAction.html \
|
||||
./html/upnp/UpnpMakeActionResponse.html \
|
||||
./html/upnp/UpnpAddToActionResponse.html \
|
||||
./html/upnp/UpnpAddToPropertySet.html \
|
||||
./html/upnp/UpnpCreatePropertySet.html \
|
||||
./html/upnp/UpnpGetErrorMessage.html \
|
||||
./html/ixml/icon1.gif \
|
||||
./html/ixml/icon2.gif \
|
||||
./html/ixml/toc.html \
|
||||
./html/ixml/General.html \
|
||||
./html/ixml/index.html \
|
||||
./html/ixml/Introduction.html \
|
||||
./html/ixml/License.html \
|
||||
./html/ixml/DOMInterfaces.html \
|
||||
./html/ixml/InterfaceitNode.html \
|
||||
./html/ixml/ixmlNode_getNodeName.html \
|
||||
./html/ixml/ixmlNode_getNodeValue.html \
|
||||
./html/ixml/ixmlNode_setNodeValue.html \
|
||||
./html/ixml/ixmlNode_getNodeType.html \
|
||||
./html/ixml/ixmlNode_getParentNode.html \
|
||||
./html/ixml/ixmlNode_getChildNodes.html \
|
||||
./html/ixml/ixmlNode_getFirstChild.html \
|
||||
./html/ixml/ixmlNode_getLastChild.html \
|
||||
./html/ixml/ixmlNode_getPreviousSibling.html \
|
||||
./html/ixml/ixmlNode_getNextSibling.html \
|
||||
./html/ixml/ixmlNode_getAttributes.html \
|
||||
./html/ixml/ixmlNode_getOwnerDocument.html \
|
||||
./html/ixml/ixmlNode_getNamespaceURI.html \
|
||||
./html/ixml/ixmlNode_getPrefix.html \
|
||||
./html/ixml/ixmlNode_getLocalName.html \
|
||||
./html/ixml/ixmlNode_insertBefore.html \
|
||||
./html/ixml/ixmlNode_replaceChild.html \
|
||||
./html/ixml/ixmlNode_removeChild.html \
|
||||
./html/ixml/ixmlNode_appendChild.html \
|
||||
./html/ixml/ixmlNode_hasChildNodes.html \
|
||||
./html/ixml/ixmlNode_cloneNode.html \
|
||||
./html/ixml/ixmlNode_hasAttributes.html \
|
||||
./html/ixml/ixmlNode_free.html \
|
||||
./html/ixml/InterfaceitAttr.html \
|
||||
./html/ixml/ixmlAttr_free.html \
|
||||
./html/ixml/InterfaceitCDATASection.html \
|
||||
./html/ixml/ixmlCDATASection_init.html \
|
||||
./html/ixml/ixmlCDATASection_free.html \
|
||||
./html/ixml/InterfaceitDocument.html \
|
||||
./html/ixml/ixmlDocument_init.html \
|
||||
./html/ixml/ixmlDocument_createDocumentEx.html \
|
||||
./html/ixml/ixmlDocument_createDocument.html \
|
||||
./html/ixml/ixmlDocument_createElementEx.html \
|
||||
./html/ixml/ixmlDocument_createElement.html \
|
||||
./html/ixml/ixmlDocument_createTextNodeEx.html \
|
||||
./html/ixml/ixmlDocument_createTextNode.html \
|
||||
./html/ixml/ixmlDocument_createCDATASectionEx.html \
|
||||
./html/ixml/ixmlDocument_createCDATASection.html \
|
||||
./html/ixml/ixmlDocument_createAttribute.html \
|
||||
./html/ixml/ixmlDocument_createAttributeEx.html \
|
||||
./html/ixml/ixmlDocument_getElementsByTagName.html \
|
||||
./html/ixml/ixmlDocument_createElementNSEx.html \
|
||||
./html/ixml/ixmlDocument_createElementNS.html \
|
||||
./html/ixml/ixmlDocument_createAttributeNSEx.html \
|
||||
./html/ixml/ixmlDocument_createAttributeNS.html \
|
||||
./html/ixml/ixmlDocument_getElementsByTagNameNS.html \
|
||||
./html/ixml/ixmlDocument_getElementById.html \
|
||||
./html/ixml/ixmlDocument_free.html \
|
||||
./html/ixml/ixmlDocument_importNode.html \
|
||||
./html/ixml/InterfaceitElement.html \
|
||||
./html/ixml/ixmlElement_init.html \
|
||||
./html/ixml/ixmlElement_getTagName.html \
|
||||
./html/ixml/ixmlElement_getAttribute.html \
|
||||
./html/ixml/ixmlElement_setAttribute.html \
|
||||
./html/ixml/ixmlElement_removeAttribute.html \
|
||||
./html/ixml/ixmlElement_getAttributeNode.html \
|
||||
./html/ixml/ixmlElement_setAttributeNode.html \
|
||||
./html/ixml/ixmlElement_removeAttributeNode.html \
|
||||
./html/ixml/ixmlElement_getElementsByTagName.html \
|
||||
./html/ixml/ixmlElement_getAttributeNS.html \
|
||||
./html/ixml/ixmlElement_setAttributeNS.html \
|
||||
./html/ixml/ixmlElement_removeAttributeNS.html \
|
||||
./html/ixml/ixmlElement_getAttributeNodeNS.html \
|
||||
./html/ixml/ixmlElement_setAttributeNodeNS.html \
|
||||
./html/ixml/ixmlElement_getElementsByTagNameNS.html \
|
||||
./html/ixml/ixmlElement_hasAttribute.html \
|
||||
./html/ixml/ixmlElement_hasAttributeNS.html \
|
||||
./html/ixml/ixmlElement_free.html \
|
||||
./html/ixml/InterfaceitNamedNodeMap.html \
|
||||
./html/ixml/ixmlNamedNodeMap_getLength.html \
|
||||
./html/ixml/ixmlNamedNodeMap_getNamedItem.html \
|
||||
./html/ixml/ixmlNamedNodeMap_setNamedItem.html \
|
||||
./html/ixml/ixmlNamedNodeMap_removeNamedItem.html \
|
||||
./html/ixml/ixmlNamedNodeMap_item.html \
|
||||
./html/ixml/ixmlNamedNodeMap_getNamedItemNS.html \
|
||||
./html/ixml/ixmlNamedNodeMap_setNamedItemNS.html \
|
||||
./html/ixml/ixmlNamedNodeMap_removeNamedItemNS.html \
|
||||
./html/ixml/ixmlNamedNodeMap_free.html \
|
||||
./html/ixml/InterfaceitNodeList.html \
|
||||
./html/ixml/ixmlNodeList_item.html \
|
||||
./html/ixml/ixmlNodeList_length.html \
|
||||
./html/ixml/ixmlNodeList_free.html \
|
||||
./html/ixml/IXMLAPI.html \
|
||||
./html/ixml/ixmlPrintDocument.html \
|
||||
./html/ixml/ixmlPrintNode.html \
|
||||
./html/ixml/ixmlDocumenttoString.html \
|
||||
./html/ixml/ixmlNodetoString.html \
|
||||
./html/ixml/ixmlRelaxParser.html \
|
||||
./html/ixml/ixmlParseBuffer.html \
|
||||
./html/ixml/ixmlParseBufferEx.html \
|
||||
./html/ixml/ixmlLoadDocument.html \
|
||||
./html/ixml/ixmlLoadDocumentEx.html \
|
||||
./html/ixml/ixmlCloneDOMString.html \
|
||||
./html/ixml/ixmlFreeDOMString.html
|
||||
endif
|
BIN
docs/dist/UPnP_Programming_Guide.pdf
vendored
Normal file
BIN
docs/dist/UPnP_Programming_Guide.pdf
vendored
Normal file
Binary file not shown.
48
docs/dist/html/ixml/DOMInterfaces.html
vendored
Normal file
48
docs/dist/html/ixml/DOMInterfaces.html
vendored
Normal file
@ -0,0 +1,48 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> DOM Interfaces </TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2> <A HREF="#DOC.DOCU">DOM Interfaces </A></H2></H2><A NAME="DOC.DOCU"></A>
|
||||
<BLOCKQUOTE>The Document Object Model consists of a set of objects and interfaces
|
||||
for accessing and manipulating documents. IXML does not implement all
|
||||
the interfaces documented in the DOM2-Core recommendation but defines
|
||||
a subset of the most useful interfaces. A description of the supported
|
||||
interfaces and methods is presented in this section.
|
||||
|
||||
<P>For a complete discussion on the object model, the object hierarchy,
|
||||
etc., refer to section 1.1 of the DOM2-Core recommendation.</BLOCKQUOTE>
|
||||
|
||||
<HR>
|
||||
<DL>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="Interface {\it Node}"></A>
|
||||
<A HREF=InterfaceitNode.html><B>Interface <I>Node</I></B></A><DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="Interface {\it Attr}"></A>
|
||||
<A HREF=InterfaceitAttr.html><B>Interface <I>Attr</I></B></A><DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="Interface {\it CDATASection}"></A>
|
||||
<A HREF=InterfaceitCDATASection.html><B>Interface <I>CDATASection</I></B></A><DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="Interface {\it Document}"></A>
|
||||
<A HREF=InterfaceitDocument.html><B>Interface <I>Document</I></B></A><DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="Interface {\it Element}"></A>
|
||||
<A HREF=InterfaceitElement.html><B>Interface <I>Element</I></B></A><DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="Interface {\it NamedNodeMap}"></A>
|
||||
<A HREF=InterfaceitNamedNodeMap.html><B>Interface <I>NamedNodeMap</I></B></A><DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="Interface {\it NodeList}"></A>
|
||||
<A HREF=InterfaceitNodeList.html><B>Interface <I>NodeList</I></B></A></DL>
|
||||
<DL><DT><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
16
docs/dist/html/ixml/General.html
vendored
Normal file
16
docs/dist/html/ixml/General.html
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>General Bits</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<DL>
|
||||
</DL>
|
||||
<P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
67
docs/dist/html/ixml/IXMLAPI.html
vendored
Normal file
67
docs/dist/html/ixml/IXMLAPI.html
vendored
Normal file
@ -0,0 +1,67 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> IXML API</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2> <A HREF="#DOC.DOCU">IXML API</A></H2></H2><A NAME="DOC.DOCU"></A>
|
||||
<BLOCKQUOTE>The IXML API contains utility functions that are not part of the standard
|
||||
DOM interfaces. They include functions to create a DOM structure from a
|
||||
file or buffer, create an XML file from a DOM structure, and manipulate
|
||||
DOMString objects.</BLOCKQUOTE>
|
||||
|
||||
<HR>
|
||||
<DL>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlPrintDocument"></A>
|
||||
<A HREF=ixmlPrintDocument.html><B>ixmlPrintDocument</B></A><DD><I>Renders a <B>Node</B> and all sub-elements into an XML document representation.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlPrintNode"></A>
|
||||
<A HREF=ixmlPrintNode.html><B>ixmlPrintNode</B></A><DD><I>Renders a <B>Node</B> and all sub-elements into an XML text representation.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlDocumenttoString"></A>
|
||||
<A HREF=ixmlDocumenttoString.html><B>ixmlDocumenttoString</B></A><DD><I>Renders a <B>Node</B> and all sub-elements into an XML document representation.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlNodetoString"></A>
|
||||
<A HREF=ixmlNodetoString.html><B>ixmlNodetoString</B></A><DD><I>Renders a <B>Node</B> and all sub-elements into an XML text representation.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlRelaxParser"></A>
|
||||
<A HREF=ixmlRelaxParser.html><B>ixmlRelaxParser</B></A><DD><I>Makes the XML parser more tolerant to malformed text.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlParseBuffer"></A>
|
||||
<A HREF=ixmlParseBuffer.html><B>ixmlParseBuffer</B></A><DD><I>Parses an XML text buffer converting it into an IXML DOM representation.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlParseBufferEx"></A>
|
||||
<A HREF=ixmlParseBufferEx.html><B>ixmlParseBufferEx</B></A><DD><I>Parses an XML text buffer converting it into an IXML DOM representation.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlLoadDocument"></A>
|
||||
<A HREF=ixmlLoadDocument.html><B>ixmlLoadDocument</B></A><DD><I>Parses an XML text file converting it into an IXML DOM representation.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlLoadDocumentEx"></A>
|
||||
<A HREF=ixmlLoadDocumentEx.html><B>ixmlLoadDocumentEx</B></A><DD><I>Parses an XML text file converting it into an IXML DOM representation.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlCloneDOMString"></A>
|
||||
<A HREF=ixmlCloneDOMString.html><B>ixmlCloneDOMString</B></A><DD><I>Clones an existing <B>DOMString</B>.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlFreeDOMString"></A>
|
||||
<A HREF=ixmlFreeDOMString.html><B>ixmlFreeDOMString</B></A><DD><I>Frees a <B>DOMString</B>.</I>
|
||||
</DL>
|
||||
<DL><DT><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
27
docs/dist/html/ixml/InterfaceitAttr.html
vendored
Normal file
27
docs/dist/html/ixml/InterfaceitAttr.html
vendored
Normal file
@ -0,0 +1,27 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> Interface <I>Attr</I></TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2> <A HREF="#DOC.DOCU">Interface <I>Attr</I></A></H2></H2><A NAME="DOC.DOCU"></A>
|
||||
<BLOCKQUOTE>The <B>Attr</B> interface represents an attribute of an <B>Element</B>.
|
||||
The document type definition (DTD) or schema usually dictate the
|
||||
allowable attributes and values for a particular element. For more
|
||||
information, refer to the <I>Interface Attr</I> section in the DOM2-Core.</BLOCKQUOTE>
|
||||
|
||||
<HR>
|
||||
<DL>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlAttr_free"></A>
|
||||
<A HREF=ixmlAttr_free.html><B>ixmlAttr_free</B></A><DD><I>Frees an <B>Attr</B> node.</I>
|
||||
</DL>
|
||||
<DL><DT><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
33
docs/dist/html/ixml/InterfaceitCDATASection.html
vendored
Normal file
33
docs/dist/html/ixml/InterfaceitCDATASection.html
vendored
Normal file
@ -0,0 +1,33 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> Interface <I>CDATASection</I></TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2> <A HREF="#DOC.DOCU">Interface <I>CDATASection</I></A></H2></H2><A NAME="DOC.DOCU"></A>
|
||||
<BLOCKQUOTE>The <B>CDATASection</B> is used to escape blocks of text containing
|
||||
characters that would otherwise be regarded as markup. CDATA sections
|
||||
cannot be nested. Their primary purpose is for including material such
|
||||
XML fragments, without needing to escape all the delimiters. For more
|
||||
information, refer to the <I>Interface CDATASection</I> section in the
|
||||
DOM2-Core.</BLOCKQUOTE>
|
||||
|
||||
<HR>
|
||||
<DL>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlCDATASection_init"></A>
|
||||
<A HREF=ixmlCDATASection_init.html><B>ixmlCDATASection_init</B></A><DD><I>Initializes a <B>CDATASection</B> node.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlCDATASection_free"></A>
|
||||
<A HREF=ixmlCDATASection_free.html><B>ixmlCDATASection_free</B></A><DD><I>Frees a <B>CDATASection</B> node.</I>
|
||||
</DL>
|
||||
<DL><DT><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
103
docs/dist/html/ixml/InterfaceitDocument.html
vendored
Normal file
103
docs/dist/html/ixml/InterfaceitDocument.html
vendored
Normal file
@ -0,0 +1,103 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> Interface <I>Document</I></TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2> <A HREF="#DOC.DOCU">Interface <I>Document</I></A></H2></H2><A NAME="DOC.DOCU"></A>
|
||||
<BLOCKQUOTE>The <B>Document</B> interface represents the entire XML document.
|
||||
In essence, it is the root of the document tree and provides the
|
||||
primary interface to the elements of the document. For more information,
|
||||
refer to the <I>Interface Document</I> section in the DOM2Core.</BLOCKQUOTE>
|
||||
|
||||
<HR>
|
||||
<DL>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlDocument_init"></A>
|
||||
<A HREF=ixmlDocument_init.html><B>ixmlDocument_init</B></A><DD><I>Initializes a <B>Document</B> node.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlDocument_createDocumentEx"></A>
|
||||
<A HREF=ixmlDocument_createDocumentEx.html><B>ixmlDocument_createDocumentEx</B></A><DD><I>Creates a new empty <B>Document</B> node.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlDocument_createDocument"></A>
|
||||
<A HREF=ixmlDocument_createDocument.html><B>ixmlDocument_createDocument</B></A><DD><I>Creates a new empty <B>Document</B> node.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlDocument_createElementEx"></A>
|
||||
<A HREF=ixmlDocument_createElementEx.html><B>ixmlDocument_createElementEx</B></A><DD><I>Creates a new <B>Element</B> node with the given tag name.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlDocument_createElement"></A>
|
||||
<A HREF=ixmlDocument_createElement.html><B>ixmlDocument_createElement</B></A><DD><I>Creates a new <B>Element</B> node with the given tag name.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlDocument_createTextNodeEx"></A>
|
||||
<A HREF=ixmlDocument_createTextNodeEx.html><B>ixmlDocument_createTextNodeEx</B></A><DD><I>Creates a new <B>Text</B> node with the given data.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlDocument_createTextNode"></A>
|
||||
<A HREF=ixmlDocument_createTextNode.html><B>ixmlDocument_createTextNode</B></A><DD><I>Creates a new <B>Text</B> node with the given data.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlDocument_createCDATASectionEx"></A>
|
||||
<A HREF=ixmlDocument_createCDATASectionEx.html><B>ixmlDocument_createCDATASectionEx</B></A><DD><I>Creates a new <B>CDATASection</B> node with given data.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlDocument_createCDATASection"></A>
|
||||
<A HREF=ixmlDocument_createCDATASection.html><B>ixmlDocument_createCDATASection</B></A><DD><I>Creates a new <B>CDATASection</B> node with given data.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlDocument_createAttribute"></A>
|
||||
<A HREF=ixmlDocument_createAttribute.html><B>ixmlDocument_createAttribute</B></A><DD><I>Creates a new <B>Attr</B> node with the given name.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlDocument_createAttributeEx"></A>
|
||||
<A HREF=ixmlDocument_createAttributeEx.html><B>ixmlDocument_createAttributeEx</B></A><DD><I>Creates a new <B>Attr</B> node with the given name.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlDocument_getElementsByTagName"></A>
|
||||
<A HREF=ixmlDocument_getElementsByTagName.html><B>ixmlDocument_getElementsByTagName</B></A><DD><I>Returns a <B>NodeList</B> of all <B>Elements</B> that match the given tag name in the order in which they were encountered in a preorder traversal of the <B>Document</B> tree.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlDocument_createElementNSEx"></A>
|
||||
<A HREF=ixmlDocument_createElementNSEx.html><B>ixmlDocument_createElementNSEx</B></A><DD><I>Creates a new <B>Element</B> node in the given qualified name and namespace URI.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlDocument_createElementNS"></A>
|
||||
<A HREF=ixmlDocument_createElementNS.html><B>ixmlDocument_createElementNS</B></A><DD><I>Creates a new <B>Element</B> node in the given qualified name and namespace URI.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlDocument_createAttributeNSEx"></A>
|
||||
<A HREF=ixmlDocument_createAttributeNSEx.html><B>ixmlDocument_createAttributeNSEx</B></A><DD><I>Creates a new <B>Attr</B> node with the given qualified name and namespace URI.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlDocument_createAttributeNS"></A>
|
||||
<A HREF=ixmlDocument_createAttributeNS.html><B>ixmlDocument_createAttributeNS</B></A><DD><I>Creates a new <B>Attr</B> node with the given qualified name and namespace URI.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlDocument_getElementsByTagNameNS"></A>
|
||||
<A HREF=ixmlDocument_getElementsByTagNameNS.html><B>ixmlDocument_getElementsByTagNameNS</B></A><DD><I>Returns a <B>NodeList</B> of <B>Elements</B> that match the given local name and namespace URI in the order they are encountered in a preorder traversal of the <B>Document</B> tree.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlDocument_getElementById"></A>
|
||||
<A HREF=ixmlDocument_getElementById.html><B>ixmlDocument_getElementById</B></A><DD><I>Returns the <B>Element</B> whose <TT>ID</TT> matches that given id.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlDocument_free"></A>
|
||||
<A HREF=ixmlDocument_free.html><B>ixmlDocument_free</B></A><DD><I>Frees a <B>Document</B> object and all <B>Node</B>s associated with it.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlDocument_importNode"></A>
|
||||
<A HREF=ixmlDocument_importNode.html><B>ixmlDocument_importNode</B></A><DD><I>Imports a <B>Node</B> from another <B>Document</B> into this <B>Document</B>.</I>
|
||||
</DL>
|
||||
<DL><DT><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
96
docs/dist/html/ixml/InterfaceitElement.html
vendored
Normal file
96
docs/dist/html/ixml/InterfaceitElement.html
vendored
Normal file
@ -0,0 +1,96 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> Interface <I>Element</I></TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2> <A HREF="#DOC.DOCU">Interface <I>Element</I></A></H2></H2><A NAME="DOC.DOCU"></A>
|
||||
<BLOCKQUOTE>The <B>Element</B> interface represents an element in an XML document.
|
||||
Only <B>Element</B>s are allowed to have attributes, which are stored in the
|
||||
<TT>attributes</TT> member of a <B>Node</B>. The <B>Element</B> interface
|
||||
extends the <B>Node</B> interface and adds more operations to manipulate
|
||||
attributes.</BLOCKQUOTE>
|
||||
|
||||
<HR>
|
||||
<DL>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlElement_init"></A>
|
||||
<A HREF=ixmlElement_init.html><B>ixmlElement_init</B></A><DD><I>Initializes a <B>IXML_Element</B> node.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlElement_getTagName"></A>
|
||||
<A HREF=ixmlElement_getTagName.html><B>ixmlElement_getTagName</B></A><DD><I>Returns the name of the tag as a constant string.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlElement_getAttribute"></A>
|
||||
<A HREF=ixmlElement_getAttribute.html><B>ixmlElement_getAttribute</B></A><DD><I>Retrieves an attribute of an <B>Element</B> by name.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlElement_setAttribute"></A>
|
||||
<A HREF=ixmlElement_setAttribute.html><B>ixmlElement_setAttribute</B></A><DD><I>Adds a new attribute to an <B>Element</B>.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlElement_removeAttribute"></A>
|
||||
<A HREF=ixmlElement_removeAttribute.html><B>ixmlElement_removeAttribute</B></A><DD><I>Removes an attribute by name.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlElement_getAttributeNode"></A>
|
||||
<A HREF=ixmlElement_getAttributeNode.html><B>ixmlElement_getAttributeNode</B></A><DD><I>Retrieves an attribute node by name.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlElement_setAttributeNode"></A>
|
||||
<A HREF=ixmlElement_setAttributeNode.html><B>ixmlElement_setAttributeNode</B></A><DD><I>Adds a new attribute node to an <B>Element</B>.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlElement_removeAttributeNode"></A>
|
||||
<A HREF=ixmlElement_removeAttributeNode.html><B>ixmlElement_removeAttributeNode</B></A><DD><I>Removes the specified attribute node from an <B>Element</B>.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlElement_getElementsByTagName"></A>
|
||||
<A HREF=ixmlElement_getElementsByTagName.html><B>ixmlElement_getElementsByTagName</B></A><DD><I>Returns a <B>NodeList</B> of all <I>descendant</I> <B>Elements</B> with a given tag name, in the order in which they are encountered in a pre-order traversal of this <B>Element</B> tree.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlElement_getAttributeNS"></A>
|
||||
<A HREF=ixmlElement_getAttributeNS.html><B>ixmlElement_getAttributeNS</B></A><DD><I>Retrieves an attribute value using the local name and namespace URI.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlElement_setAttributeNS"></A>
|
||||
<A HREF=ixmlElement_setAttributeNS.html><B>ixmlElement_setAttributeNS</B></A><DD><I>Adds a new attribute to an <B>Element</B> using the local name and namespace URI.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlElement_removeAttributeNS"></A>
|
||||
<A HREF=ixmlElement_removeAttributeNS.html><B>ixmlElement_removeAttributeNS</B></A><DD><I>Removes an attribute using the namespace URI and local name.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlElement_getAttributeNodeNS"></A>
|
||||
<A HREF=ixmlElement_getAttributeNodeNS.html><B>ixmlElement_getAttributeNodeNS</B></A><DD><I>Retrieves an <B>Attr</B> node by local name and namespace URI.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlElement_setAttributeNodeNS"></A>
|
||||
<A HREF=ixmlElement_setAttributeNodeNS.html><B>ixmlElement_setAttributeNodeNS</B></A><DD><I>Adds a new attribute node.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlElement_getElementsByTagNameNS"></A>
|
||||
<A HREF=ixmlElement_getElementsByTagNameNS.html><B>ixmlElement_getElementsByTagNameNS</B></A><DD><I>Returns a <B>NodeList</B> of all <I>descendant</I> <B>Elements</B> with a given tag name, in the order in which they are encountered in the pre-order traversal of the <B>Element</B> tree.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlElement_hasAttribute"></A>
|
||||
<A HREF=ixmlElement_hasAttribute.html><B>ixmlElement_hasAttribute</B></A><DD><I>Queries whether the <B>Element</B> has an attribute with the given name or a default value.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlElement_hasAttributeNS"></A>
|
||||
<A HREF=ixmlElement_hasAttributeNS.html><B>ixmlElement_hasAttributeNS</B></A><DD><I>Queries whether the <B>Element</B> has an attribute with the given local name and namespace URI or has a default value for that attribute.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlElement_free"></A>
|
||||
<A HREF=ixmlElement_free.html><B>ixmlElement_free</B></A><DD><I>Frees the given <B>Element</B> and any subtree of the <B>Element</B>.</I>
|
||||
</DL>
|
||||
<DL><DT><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
59
docs/dist/html/ixml/InterfaceitNamedNodeMap.html
vendored
Normal file
59
docs/dist/html/ixml/InterfaceitNamedNodeMap.html
vendored
Normal file
@ -0,0 +1,59 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> Interface <I>NamedNodeMap</I></TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2> <A HREF="#DOC.DOCU">Interface <I>NamedNodeMap</I></A></H2></H2><A NAME="DOC.DOCU"></A>
|
||||
<BLOCKQUOTE>A <B>NamedNodeMap</B> object represents a list of objects that can be
|
||||
accessed by name. A <B>NamedNodeMap</B> maintains the objects in
|
||||
no particular order. The <B>Node</B> interface uses a <B>NamedNodeMap</B>
|
||||
to maintain the attributes of a node.</BLOCKQUOTE>
|
||||
|
||||
<HR>
|
||||
<DL>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlNamedNodeMap_getLength"></A>
|
||||
<A HREF=ixmlNamedNodeMap_getLength.html><B>ixmlNamedNodeMap_getLength</B></A><DD><I>Returns the number of items contained in this <B>NamedNodeMap</B>.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlNamedNodeMap_getNamedItem"></A>
|
||||
<A HREF=ixmlNamedNodeMap_getNamedItem.html><B>ixmlNamedNodeMap_getNamedItem</B></A><DD><I>Retrieves a <B>Node</B> from the <B>NamedNodeMap</B> by name.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlNamedNodeMap_setNamedItem"></A>
|
||||
<A HREF=ixmlNamedNodeMap_setNamedItem.html><B>ixmlNamedNodeMap_setNamedItem</B></A><DD><I>Adds a new <B>Node</B> to the <B>NamedNodeMap</B> using the <B>Node</B> name attribute.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlNamedNodeMap_removeNamedItem"></A>
|
||||
<A HREF=ixmlNamedNodeMap_removeNamedItem.html><B>ixmlNamedNodeMap_removeNamedItem</B></A><DD><I>Removes a <B>Node</B> from a <B>NamedNodeMap</B> specified by name.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlNamedNodeMap_item"></A>
|
||||
<A HREF=ixmlNamedNodeMap_item.html><B>ixmlNamedNodeMap_item</B></A><DD><I>Retrieves a <B>Node</B> from a <B>NamedNodeMap</B> specified by a numerical index.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlNamedNodeMap_getNamedItemNS"></A>
|
||||
<A HREF=ixmlNamedNodeMap_getNamedItemNS.html><B>ixmlNamedNodeMap_getNamedItemNS</B></A><DD><I>Retrieves a <B>Node</B> from a <B>NamedNodeMap</B> specified by namespace URI and local name.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlNamedNodeMap_setNamedItemNS"></A>
|
||||
<A HREF=ixmlNamedNodeMap_setNamedItemNS.html><B>ixmlNamedNodeMap_setNamedItemNS</B></A><DD><I>Adds a new <B>Node</B> to the <B>NamedNodeMap</B> using the <B>Node</B> local name and namespace URI attributes.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlNamedNodeMap_removeNamedItemNS"></A>
|
||||
<A HREF=ixmlNamedNodeMap_removeNamedItemNS.html><B>ixmlNamedNodeMap_removeNamedItemNS</B></A><DD><I>Removes a <B>Node</B> from a <B>NamedNodeMap</B> specified by namespace URI and local name.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlNamedNodeMap_free"></A>
|
||||
<A HREF=ixmlNamedNodeMap_free.html><B>ixmlNamedNodeMap_free</B></A><DD><I>Frees a <B>NamedNodeMap</B>.</I>
|
||||
</DL>
|
||||
<DL><DT><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
114
docs/dist/html/ixml/InterfaceitNode.html
vendored
Normal file
114
docs/dist/html/ixml/InterfaceitNode.html
vendored
Normal file
@ -0,0 +1,114 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> Interface <I>Node</I></TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2> <A HREF="#DOC.DOCU">Interface <I>Node</I></A></H2></H2><A NAME="DOC.DOCU"></A>
|
||||
<BLOCKQUOTE>The <B>Node</B> interface forms the primary datatype for all other DOM
|
||||
objects. Every other interface is derived from this interface, inheriting
|
||||
its functionality. For more information, refer to DOM2-Core page 34.</BLOCKQUOTE>
|
||||
|
||||
<HR>
|
||||
<DL>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlNode_getNodeName"></A>
|
||||
<A HREF=ixmlNode_getNodeName.html><B>ixmlNode_getNodeName</B></A><DD><I>Returns the name of the <B>Node</B>, depending on what type of <B>Node</B> it is, in a read-only string.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlNode_getNodeValue"></A>
|
||||
<A HREF=ixmlNode_getNodeValue.html><B>ixmlNode_getNodeValue</B></A><DD><I>Returns the value of the <B>Node</B> as a string.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlNode_setNodeValue"></A>
|
||||
<A HREF=ixmlNode_setNodeValue.html><B>ixmlNode_setNodeValue</B></A><DD><I>Assigns a new value to a <B>Node</B>.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlNode_getNodeType"></A>
|
||||
<A HREF=ixmlNode_getNodeType.html><B>ixmlNode_getNodeType</B></A><DD><I>Retrieves the type of a <B>Node</B>.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlNode_getParentNode"></A>
|
||||
<A HREF=ixmlNode_getParentNode.html><B>ixmlNode_getParentNode</B></A><DD><I>Retrieves the parent <B>Node</B> for a <B>Node</B>.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlNode_getChildNodes"></A>
|
||||
<A HREF=ixmlNode_getChildNodes.html><B>ixmlNode_getChildNodes</B></A><DD><I>Retrieves the list of children of a <B>Node</B> in a <B>NodeList</B> structure.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlNode_getFirstChild"></A>
|
||||
<A HREF=ixmlNode_getFirstChild.html><B>ixmlNode_getFirstChild</B></A><DD><I>Retrieves the first child <B>Node</B> of a <B>Node</B>.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlNode_getLastChild"></A>
|
||||
<A HREF=ixmlNode_getLastChild.html><B>ixmlNode_getLastChild</B></A><DD><I>Retrieves the last child <B>Node</B> of a <B>Node</B>.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlNode_getPreviousSibling"></A>
|
||||
<A HREF=ixmlNode_getPreviousSibling.html><B>ixmlNode_getPreviousSibling</B></A><DD><I>Retrieves the sibling <B>Node</B> immediately preceding this <B>Node</B>.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlNode_getNextSibling"></A>
|
||||
<A HREF=ixmlNode_getNextSibling.html><B>ixmlNode_getNextSibling</B></A><DD><I>Retrieves the sibling <B>Node</B> immediately following this <B>Node</B>.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlNode_getAttributes"></A>
|
||||
<A HREF=ixmlNode_getAttributes.html><B>ixmlNode_getAttributes</B></A><DD><I>Retrieves the attributes of a <B>Node</B>, if it is an <B>Element</B> node, in a <B>NamedNodeMap</B> structure.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlNode_getOwnerDocument"></A>
|
||||
<A HREF=ixmlNode_getOwnerDocument.html><B>ixmlNode_getOwnerDocument</B></A><DD><I>Retrieves the document object associated with this <B>Node</B>.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlNode_getNamespaceURI"></A>
|
||||
<A HREF=ixmlNode_getNamespaceURI.html><B>ixmlNode_getNamespaceURI</B></A><DD><I>Retrieves the namespace URI for a <B>Node</B> as a <B>DOMString</B>.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlNode_getPrefix"></A>
|
||||
<A HREF=ixmlNode_getPrefix.html><B>ixmlNode_getPrefix</B></A><DD><I>Retrieves the namespace prefix, if present.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlNode_getLocalName"></A>
|
||||
<A HREF=ixmlNode_getLocalName.html><B>ixmlNode_getLocalName</B></A><DD><I>Retrieves the local name of a <B>Node</B>, if present.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlNode_insertBefore"></A>
|
||||
<A HREF=ixmlNode_insertBefore.html><B>ixmlNode_insertBefore</B></A><DD><I>Inserts a new child <B>Node</B> before the existing child <B>Node</B>.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlNode_replaceChild"></A>
|
||||
<A HREF=ixmlNode_replaceChild.html><B>ixmlNode_replaceChild</B></A><DD><I>Replaces an existing child <B>Node</B> with a new child <B>Node</B> in the list of children of a <B>Node</B>.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlNode_removeChild"></A>
|
||||
<A HREF=ixmlNode_removeChild.html><B>ixmlNode_removeChild</B></A><DD><I>Removes a child from the list of children of a <B>Node</B>.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlNode_appendChild"></A>
|
||||
<A HREF=ixmlNode_appendChild.html><B>ixmlNode_appendChild</B></A><DD><I>Appends a child <B>Node</B> to the list of children of a <B>Node</B>.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlNode_hasChildNodes"></A>
|
||||
<A HREF=ixmlNode_hasChildNodes.html><B>ixmlNode_hasChildNodes</B></A><DD><I>Queries whether or not a <B>Node</B> has children.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlNode_cloneNode"></A>
|
||||
<A HREF=ixmlNode_cloneNode.html><B>ixmlNode_cloneNode</B></A><DD><I>Clones a <B>Node</B>.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlNode_hasAttributes"></A>
|
||||
<A HREF=ixmlNode_hasAttributes.html><B>ixmlNode_hasAttributes</B></A><DD><I>Queries whether this <B>Node</B> has attributes.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlNode_free"></A>
|
||||
<A HREF=ixmlNode_free.html><B>ixmlNode_free</B></A><DD><I>Frees a <B>Node</B> and all <B>Node</B>s in its subtree.</I>
|
||||
</DL>
|
||||
<DL><DT><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
35
docs/dist/html/ixml/InterfaceitNodeList.html
vendored
Normal file
35
docs/dist/html/ixml/InterfaceitNodeList.html
vendored
Normal file
@ -0,0 +1,35 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> Interface <I>NodeList</I></TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2> <A HREF="#DOC.DOCU">Interface <I>NodeList</I></A></H2></H2><A NAME="DOC.DOCU"></A>
|
||||
<BLOCKQUOTE>The <B>NodeList</B> interface abstracts an ordered collection of
|
||||
nodes. Note that changes to the underlying nodes will change
|
||||
the nodes contained in a <B>NodeList</B>. The DOM2-Core refers to
|
||||
this as being <I>live</I>.</BLOCKQUOTE>
|
||||
|
||||
<HR>
|
||||
<DL>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlNodeList_item"></A>
|
||||
<A HREF=ixmlNodeList_item.html><B>ixmlNodeList_item</B></A><DD><I>Retrieves a <B>Node</B> from a <B>NodeList</B> specified by a numerical index.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlNodeList_length"></A>
|
||||
<A HREF=ixmlNodeList_length.html><B>ixmlNodeList_length</B></A><DD><I>Returns the number of <B>Nodes</B> in a <B>NodeList</B>.</I>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="ixmlNodeList_free"></A>
|
||||
<A HREF=ixmlNodeList_free.html><B>ixmlNodeList_free</B></A><DD><I>Frees a <B>NodeList</B> object.</I>
|
||||
</DL>
|
||||
<DL><DT><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
40
docs/dist/html/ixml/Introduction.html
vendored
Normal file
40
docs/dist/html/ixml/Introduction.html
vendored
Normal file
@ -0,0 +1,40 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> Introduction</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2> <A HREF="#DOC.DOCU">Introduction</A></H2></H2><A NAME="DOC.DOCU"></A>
|
||||
<BLOCKQUOTE>The Linux DOM2 XML Parser Version 1.2 (IXML) is a lightweight, portable XML
|
||||
parser supporting the standard Document Object Model (DOM) Level 2
|
||||
interfaces. The parser uses a C-style interface, making it idea for small,
|
||||
embedded applications. This document describes the interfaces supported by
|
||||
IXML 1.2, referencing the W3C DOM2 recommendations when necessary, and the
|
||||
additional utility application programming interfaces (APIs) that it
|
||||
supports.
|
||||
|
||||
<P>Note that this document assumes that the reader has a copy of the DOM2-Core
|
||||
recommendation. Refer to the link below to obtain a copy. Only a brief
|
||||
description is included here and the reader is pointed to the DOM2-Core
|
||||
recommendation for more details. This document does, however, clarify
|
||||
IXML-specific behavior when the recommendation is unclear.
|
||||
|
||||
<P><B>About DOM</B>
|
||||
|
||||
<P>The Document Object Model (DOM) is a set of interfaces that give a
|
||||
programmatic interface to documents. It provides a platform-neutral and
|
||||
language-neutral interface for random access and updating elements inside
|
||||
XML documents. DOM Level 1 provided the basic interfaces to access
|
||||
document elements. DOM Level 2 extended the interfaces to provide proper
|
||||
support for XML namespaces.
|
||||
|
||||
<P>The latest DOM 2 recommendation is maintained by W3C and is available from
|
||||
<TT>http://www.w3.org/TR/DOM-Level-2-Core</TT>.</BLOCKQUOTE>
|
||||
<DL><DT><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
45
docs/dist/html/ixml/License.html
vendored
Normal file
45
docs/dist/html/ixml/License.html
vendored
Normal file
@ -0,0 +1,45 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> License</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2> <A HREF="#DOC.DOCU">License</A></H2></H2><A NAME="DOC.DOCU"></A>
|
||||
<BLOCKQUOTE>
|
||||
<CENTER>
|
||||
Copyright (c) 2000-2003 Intel Corporation
|
||||
All rights reserved.
|
||||
</CENTER>
|
||||
|
||||
<P>Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
<UL>
|
||||
<LI> Redistributions of source code must retain the above copyright notice,
|
||||
this list of conditions and the following disclaimer.
|
||||
<LI> Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
<LI> Neither name of Intel Corporation nor the names of its contributors
|
||||
may be used to endorse or promote products derived from this software
|
||||
without specific prior written permission.
|
||||
</UL>
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL INTEL OR
|
||||
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
||||
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
||||
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
|
||||
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
</BLOCKQUOTE>
|
||||
<DL><DT><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
BIN
docs/dist/html/ixml/icon1.gif
vendored
Normal file
BIN
docs/dist/html/ixml/icon1.gif
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 326 B |
BIN
docs/dist/html/ixml/icon2.gif
vendored
Normal file
BIN
docs/dist/html/ixml/icon2.gif
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 326 B |
41
docs/dist/html/ixml/index.html
vendored
Normal file
41
docs/dist/html/ixml/index.html
vendored
Normal file
@ -0,0 +1,41 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE> IXML v1.2 </TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2> <A HREF="#DOC.DOCU">IXML v1.2 </A></H2></H2><A NAME="DOC.DOCU"></A>
|
||||
<BLOCKQUOTE><CENTER>
|
||||
<B>Linux DOM2 XML Parser Version 1.2</B>
|
||||
|
||||
<P>Copyright (C) 2000-2003 Intel Corporation ALL RIGHTS RESERVED
|
||||
|
||||
<P>Revision 1.2.1 (Tue 04 Jul 2006 04:58:36 PM EEST)
|
||||
</CENTER></BLOCKQUOTE>
|
||||
|
||||
<HR>
|
||||
<DL>
|
||||
<DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="Introduction"></A>
|
||||
<A HREF=Introduction.html><B>Introduction</B></A><DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="License"></A>
|
||||
<A HREF=License.html><B>License</B></A><DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="BOOL"></A>
|
||||
<A HREF=index.html><B>BOOL</B></A><DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="DOM Interfaces "></A>
|
||||
<A HREF=DOMInterfaces.html><B>DOM Interfaces </B></A><DT>
|
||||
|
||||
<IMG ALT="o" BORDER=0 SRC=icon1.gif><A NAME="IXML API"></A>
|
||||
<A HREF=IXMLAPI.html><B>IXML API</B></A></DL>
|
||||
<DL><DT><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
23
docs/dist/html/ixml/ixmlAttr_free.html
vendored
Normal file
23
docs/dist/html/ixml/ixmlAttr_free.html
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC void ixmlAttr_free</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC void <A HREF="#DOC.DOCU">ixmlAttr_free</A></H2><H2>(IXML_Attr* attrNode )</H2><BLOCKQUOTE>Frees an <B>Attr</B> node.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Frees an <B>Attr</B> node.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>attrNode</B> - The <B>Attr</B> node to free. <BR><DT><B>Returns:</B><DD> [void] This function does not return a value.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
23
docs/dist/html/ixml/ixmlCDATASection_free.html
vendored
Normal file
23
docs/dist/html/ixml/ixmlCDATASection_free.html
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC void ixmlCDATASection_free</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC void <A HREF="#DOC.DOCU">ixmlCDATASection_free</A></H2><H2>(IXML_CDATASection* nodeptr )</H2><BLOCKQUOTE>Frees a <B>CDATASection</B> node.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Frees a <B>CDATASection</B> node.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>nodeptr</B> - The <B>CDATASection</B> node to free. <BR><DT><B>Returns:</B><DD> [void] This function does not return a value.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
23
docs/dist/html/ixml/ixmlCDATASection_init.html
vendored
Normal file
23
docs/dist/html/ixml/ixmlCDATASection_init.html
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC void ixmlCDATASection_init</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC void <A HREF="#DOC.DOCU">ixmlCDATASection_init</A></H2><H2>(IXML_CDATASection* nodeptr )</H2><BLOCKQUOTE>Initializes a <B>CDATASection</B> node.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Initializes a <B>CDATASection</B> node.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>nodeptr</B> - The <B>CDATASection</B> node to initialize. <BR><DT><B>Returns:</B><DD> [void] This function does not return a value.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
25
docs/dist/html/ixml/ixmlCloneDOMString.html
vendored
Normal file
25
docs/dist/html/ixml/ixmlCloneDOMString.html
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC DOMString ixmlCloneDOMString</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC DOMString <A HREF="#DOC.DOCU">ixmlCloneDOMString</A></H2><H2>(const DOMString src )</H2><BLOCKQUOTE>Clones an existing <B>DOMString</B>.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Clones an existing <B>DOMString</B>.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>src</B> - The source <B>DOMString</B> to clone. <BR><DT><B>Returns:</B><DD> [DOMString] A new <B>DOMString</B> that is a duplicate of the
|
||||
original or <TT>NULL</TT> if the operation could not
|
||||
be completed.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
24
docs/dist/html/ixml/ixmlDocument_createAttribute.html
vendored
Normal file
24
docs/dist/html/ixml/ixmlDocument_createAttribute.html
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC IXML_Attr* ixmlDocument_createAttribute</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC IXML_Attr* <A HREF="#DOC.DOCU">ixmlDocument_createAttribute</A></H2><H2>(IXML_Document* doc,<BR> char* name )</H2><BLOCKQUOTE>Creates a new <B>Attr</B> node with the given name.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Creates a new <B>Attr</B> node with the given name.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>doc</B> - The owner <B>Document</B> of the new node.
|
||||
<BR><B>name</B> - The name of the new attribute. <BR><DT><B>Returns:</B><DD> [Attr*] A pointer to the new <B>Attr</B> or <TT>NULL</TT> on failure.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
38
docs/dist/html/ixml/ixmlDocument_createAttributeEx.html
vendored
Normal file
38
docs/dist/html/ixml/ixmlDocument_createAttributeEx.html
vendored
Normal file
@ -0,0 +1,38 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC int ixmlDocument_createAttributeEx</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC int <A HREF="#DOC.DOCU">ixmlDocument_createAttributeEx</A></H2><H2>(IXML_Document* doc,<BR> char* name,<BR> IXML_Attr** attrNode )</H2><BLOCKQUOTE>Creates a new <B>Attr</B> node with the given name.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Creates a new <B>Attr</B> node with the given name.
|
||||
|
||||
<P>The <B>ixmlDocument_createAttributeEx</B> API differs from the <B>
|
||||
ixmlDocument_createAttribute</B> API in that it returns an error code
|
||||
describing the reason for failure rather than just <TT>NULL</TT>.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>doc</B> - The owner <B>Document</B> of the new
|
||||
node.
|
||||
<BR><B>name</B> - The name of the new attribute.
|
||||
<BR><B>attrNode</B> - A pointer to a <B>Attr</B> where the new
|
||||
object will be stored. <BR><DT><B>Returns:</B><DD> [int] An integer representing one of the following:
|
||||
<UL>
|
||||
<LI> <TT>IXML_SUCCESS</TT>: The operation completed successfully.
|
||||
<LI> <TT>IXML_INVALID_PARAMETER</TT>: Either <B>doc</B> or <B>name</B>
|
||||
is <TT>NULL</TT>.
|
||||
<LI> <TT>IXML_INSUFFICIENT_MEMORY</TT>: Not enough free memory exists
|
||||
to complete this operation.
|
||||
</UL>
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
27
docs/dist/html/ixml/ixmlDocument_createAttributeNS.html
vendored
Normal file
27
docs/dist/html/ixml/ixmlDocument_createAttributeNS.html
vendored
Normal file
@ -0,0 +1,27 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC IXML_Attr* ixmlDocument_createAttributeNS</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC IXML_Attr* <A HREF="#DOC.DOCU">ixmlDocument_createAttributeNS</A></H2><H2>(IXML_Document* doc,<BR> DOMString namespaceURI,<BR> DOMString qualifiedName )</H2><BLOCKQUOTE>Creates a new <B>Attr</B> node with the given qualified name and namespace URI.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Creates a new <B>Attr</B> node with the given qualified name and
|
||||
namespace URI.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>doc</B> - The owner <B>Document</B> of the new
|
||||
<B>Attr</B>.
|
||||
<BR><B>namespaceURI</B> - The namespace URI for the attribute.
|
||||
<BR><B>qualifiedName</B> - The qualified name of the attribute. <BR><DT><B>Returns:</B><DD> [Attr*] A pointer to the new <B>Attr</B> or <TT>NULL</TT> on failure.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
40
docs/dist/html/ixml/ixmlDocument_createAttributeNSEx.html
vendored
Normal file
40
docs/dist/html/ixml/ixmlDocument_createAttributeNSEx.html
vendored
Normal file
@ -0,0 +1,40 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC int ixmlDocument_createAttributeNSEx</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC int <A HREF="#DOC.DOCU">ixmlDocument_createAttributeNSEx</A></H2><H2>(IXML_Document* doc,<BR> DOMString namespaceURI,<BR> DOMString qualifiedName,<BR> IXML_Attr** attrNode )</H2><BLOCKQUOTE>Creates a new <B>Attr</B> node with the given qualified name and namespace URI.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Creates a new <B>Attr</B> node with the given qualified name and
|
||||
namespace URI.
|
||||
|
||||
<P>The <B>ixmlDocument_createAttributeNSEx</B> API differs from the <B>
|
||||
ixmlDocument_createAttributeNS</B> API in that it returns an error code
|
||||
describing the reason for failure rather than just <TT>NULL</TT>.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>doc</B> - The owner <B>Document</B> of the new
|
||||
<B>Attr</B>.
|
||||
<BR><B>namespaceURI</B> - The namespace URI for the attribute.
|
||||
<BR><B>qualifiedName</B> - The qualified name of the attribute.
|
||||
<BR><B>attrNode</B> - A pointer to an <B>Attr</B> where the
|
||||
new object will be stored. <BR><DT><B>Returns:</B><DD> [int] An integer representing one of the following:
|
||||
<UL>
|
||||
<LI> <TT>IXML_SUCCESS</TT>: The operation completed successfully.
|
||||
<LI> <TT>IXML_INVALID_PARAMETER</TT>: Either <B>doc</B>,
|
||||
<B>namespaceURI</B>, or <B>qualifiedName</B> is <TT>NULL</TT>.
|
||||
<LI> <TT>IXML_INSUFFICIENT_MEMORY</TT>: Not enough free memory exists
|
||||
to complete this operation.
|
||||
</UL>
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
27
docs/dist/html/ixml/ixmlDocument_createCDATASection.html
vendored
Normal file
27
docs/dist/html/ixml/ixmlDocument_createCDATASection.html
vendored
Normal file
@ -0,0 +1,27 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC IXML_CDATASection* ixmlDocument_createCDATASection</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC IXML_CDATASection* <A HREF="#DOC.DOCU">ixmlDocument_createCDATASection</A></H2><H2>(IXML_Document* doc,<BR> DOMString data )</H2><BLOCKQUOTE>Creates a new <B>CDATASection</B> node with given data.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Creates a new <B>CDATASection</B> node with given data.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>doc</B> - The owner <B>Document</B> of the new
|
||||
node.
|
||||
<BR><B>data</B> - The data to associate with the new <B>
|
||||
CDATASection</B> node. <BR><DT><B>Returns:</B><DD> [CDATASection*] A pointer to the new <B>CDATASection</B> or
|
||||
<TT>NULL</TT> on failure.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
39
docs/dist/html/ixml/ixmlDocument_createCDATASectionEx.html
vendored
Normal file
39
docs/dist/html/ixml/ixmlDocument_createCDATASectionEx.html
vendored
Normal file
@ -0,0 +1,39 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC int ixmlDocument_createCDATASectionEx</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC int <A HREF="#DOC.DOCU">ixmlDocument_createCDATASectionEx</A></H2><H2>(IXML_Document* doc,<BR> DOMString data,<BR> IXML_CDATASection** cdNode )</H2><BLOCKQUOTE>Creates a new <B>CDATASection</B> node with given data.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Creates a new <B>CDATASection</B> node with given data.
|
||||
|
||||
<P>The <B>ixmlDocument_createCDATASectionEx</B> API differs from the <B>
|
||||
ixmlDocument_createCDATASection</B> API in that it returns an error code
|
||||
describing the reason for failure rather than just <TT>NULL</TT>.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>doc</B> - The owner <B>Document</B> of the new
|
||||
node.
|
||||
<BR><B>data</B> - The data to associate with the new
|
||||
<B>CDATASection</B> node.
|
||||
<BR><B>cdNode</B> - A pointer to a <B>Node</B> where the
|
||||
new object will be stored. <BR><DT><B>Returns:</B><DD> [int] An integer representing one of the following:
|
||||
<UL>
|
||||
<LI> <TT>IXML_SUCCESS</TT>: The operation completed successfully.
|
||||
<LI> <TT>IXML_INVALID_PARAMETER</TT>: Either <B>doc</B> or {\bd data}
|
||||
is <TT>NULL</TT>.
|
||||
<LI> <TT>IXML_INSUFFICIENT_MEMORY</TT>: Not enough free memory exists
|
||||
to complete this operation.
|
||||
</UL>
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
23
docs/dist/html/ixml/ixmlDocument_createDocument.html
vendored
Normal file
23
docs/dist/html/ixml/ixmlDocument_createDocument.html
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC IXML_Document* ixmlDocument_createDocument</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC IXML_Document* <A HREF="#DOC.DOCU">ixmlDocument_createDocument</A></H2><H2>()</H2><BLOCKQUOTE>Creates a new empty <B>Document</B> node.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Creates a new empty <B>Document</B> node.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Returns:</B><DD> [Document*] A pointer to the new <B>Document</B> or <TT>NULL</TT> on
|
||||
failure.<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
32
docs/dist/html/ixml/ixmlDocument_createDocumentEx.html
vendored
Normal file
32
docs/dist/html/ixml/ixmlDocument_createDocumentEx.html
vendored
Normal file
@ -0,0 +1,32 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC int ixmlDocument_createDocumentEx</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC int <A HREF="#DOC.DOCU">ixmlDocument_createDocumentEx</A></H2><H2>(IXML_Document** doc )</H2><BLOCKQUOTE>Creates a new empty <B>Document</B> node.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Creates a new empty <B>Document</B> node. The
|
||||
<B>ixmlDocument_createDocumentEx</B> API differs from the <B>
|
||||
ixmlDocument_createDocument</B> API in that it returns an error code
|
||||
describing the reason for the failure rather than just <TT>NULL</TT>.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>doc</B> - Pointer to a <B>Document</B> where the
|
||||
new object will be stored. <BR><DT><B>Returns:</B><DD> [int] An integer representing one of the following:
|
||||
<UL>
|
||||
<LI> <TT>IXML_SUCCESS</TT>: The operation completed successfully.
|
||||
<LI> <TT>IXML_INSUFFICIENT_MEMORY</TT>: Not enough free memory exists
|
||||
to complete this operation.
|
||||
</UL>
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
29
docs/dist/html/ixml/ixmlDocument_createElement.html
vendored
Normal file
29
docs/dist/html/ixml/ixmlDocument_createElement.html
vendored
Normal file
@ -0,0 +1,29 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC IXML_Element* ixmlDocument_createElement</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC IXML_Element* <A HREF="#DOC.DOCU">ixmlDocument_createElement</A></H2><H2>(IXML_Document* doc,<BR> const DOMString tagName )</H2><BLOCKQUOTE>Creates a new <B>Element</B> node with the given tag name.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Creates a new <B>Element</B> node with the given tag name. The new
|
||||
<B>Element</B> node has a <TT>nodeName</TT> of <B>tagName</B> and
|
||||
the <TT>localName</TT>, <TT>prefix</TT>, and <TT>namespaceURI</TT> set
|
||||
to <TT>NULL</TT>. To create an <B>Element</B> with a namespace,
|
||||
see <B>ixmlDocument_createElementNS</B>.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>doc</B> - The owner <B>Document</B> of the new node.
|
||||
<BR><B>tagName</B> - The tag name of the new <B>Element</B> node. <BR><DT><B>Returns:</B><DD> [Document*] A pointer to the new <B>Element</B> or <TT>NULL</TT> on
|
||||
failure.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
42
docs/dist/html/ixml/ixmlDocument_createElementEx.html
vendored
Normal file
42
docs/dist/html/ixml/ixmlDocument_createElementEx.html
vendored
Normal file
@ -0,0 +1,42 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC int ixmlDocument_createElementEx</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC int <A HREF="#DOC.DOCU">ixmlDocument_createElementEx</A></H2><H2>(IXML_Document* doc,<BR> const DOMString tagName,<BR> IXML_Element** rtElement )</H2><BLOCKQUOTE>Creates a new <B>Element</B> node with the given tag name.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Creates a new <B>Element</B> node with the given tag name. The new
|
||||
<B>Element</B> node has a <TT>nodeName</TT> of <B>tagName</B> and
|
||||
the <TT>localName</TT>, <TT>prefix</TT>, and <TT>namespaceURI</TT> set
|
||||
to <TT>NULL</TT>. To create an <B>Element</B> with a namespace,
|
||||
see <B>ixmlDocument_createElementNS</B>.
|
||||
|
||||
<P>The <B>ixmlDocument_createElementEx</B> API differs from the <B>
|
||||
ixmlDocument_createElement</B> API in that it returns an error code
|
||||
describing the reason for failure rather than just <TT>NULL</TT>.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>doc</B> - The owner <B>Document</B> of the new node.
|
||||
<BR><B>tagName</B> - The tag name of the new <B>Element</B>
|
||||
node.
|
||||
<BR><B>rtElement</B> - Pointer to an <B>Element</B> where the new
|
||||
object will be stored. <BR><DT><B>Returns:</B><DD> [int] An integer representing one of the following:
|
||||
<UL>
|
||||
<LI> <TT>IXML_SUCCESS</TT>: The operation completed successfully.
|
||||
<LI> <TT>IXML_INVALID_PARAMETER</TT>: Either <B>doc</B> or
|
||||
<B>tagName</B> is <TT>NULL</TT>.
|
||||
<LI> <TT>IXML_INSUFFICIENT_MEMORY</TT>: Not enough free memory exists
|
||||
to complete this operation.
|
||||
</UL>
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
29
docs/dist/html/ixml/ixmlDocument_createElementNS.html
vendored
Normal file
29
docs/dist/html/ixml/ixmlDocument_createElementNS.html
vendored
Normal file
@ -0,0 +1,29 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC IXML_Element* ixmlDocument_createElementNS</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC IXML_Element* <A HREF="#DOC.DOCU">ixmlDocument_createElementNS</A></H2><H2>(IXML_Document* doc,<BR> DOMString namespaceURI,<BR> DOMString qualifiedName )</H2><BLOCKQUOTE>Creates a new <B>Element</B> node in the given qualified name and namespace URI.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Creates a new <B>Element</B> node in the given qualified name and
|
||||
namespace URI.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>doc</B> - The owner <B>Document</B> of the new node.
|
||||
<BR><B>namespaceURI</B> - The namespace URI for the new <B>
|
||||
Element</B>.
|
||||
<BR><B>qualifiedName</B> - The qualified name of the new <B>
|
||||
Element</B>. <BR><DT><B>Returns:</B><DD> [Element*] A pointer to the new <B>Element</B> or <TT>NULL</TT> on
|
||||
failure.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
42
docs/dist/html/ixml/ixmlDocument_createElementNSEx.html
vendored
Normal file
42
docs/dist/html/ixml/ixmlDocument_createElementNSEx.html
vendored
Normal file
@ -0,0 +1,42 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC int ixmlDocument_createElementNSEx</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC int <A HREF="#DOC.DOCU">ixmlDocument_createElementNSEx</A></H2><H2>(IXML_Document* doc,<BR> DOMString namespaceURI,<BR> DOMString qualifiedName,<BR> IXML_Element** rtElement )</H2><BLOCKQUOTE>Creates a new <B>Element</B> node in the given qualified name and namespace URI.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Creates a new <B>Element</B> node in the given qualified name and
|
||||
namespace URI.
|
||||
|
||||
<P>The <B>ixmlDocument_createElementNSEx</B> API differs from the <B>
|
||||
ixmlDocument_createElementNS</B> API in that it returns an error code
|
||||
describing the reason for failure rather than just <TT>NULL</TT>.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>doc</B> - The owner <B>Document</B> of the new
|
||||
node.
|
||||
<BR><B>namespaceURI</B> - The namespace URI for the new <B>
|
||||
Element</B>.
|
||||
<BR><B>qualifiedName</B> - The qualified name of the new <B>
|
||||
Element</B>.
|
||||
<BR><B>rtElement</B> - A pointer to an <B>Element</B> where the
|
||||
new object will be stored. <BR><DT><B>Returns:</B><DD> [int] An integer representing one of the following:
|
||||
<UL>
|
||||
<LI> <TT>IXML_SUCCESS</TT>: The operation completed successfully.
|
||||
<LI> <TT>IXML_INVALID_PARAMETER</TT>: Either <B>doc</B>,
|
||||
<B>namespaceURI</B>, or <B>qualifiedName</B> is <TT>NULL</TT>.
|
||||
<LI> <TT>IXML_INSUFFICIENT_MEMORY</TT>: Not enough free memory exists
|
||||
to complete this operation.
|
||||
</UL>
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
25
docs/dist/html/ixml/ixmlDocument_createTextNode.html
vendored
Normal file
25
docs/dist/html/ixml/ixmlDocument_createTextNode.html
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC IXML_Node* ixmlDocument_createTextNode</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC IXML_Node* <A HREF="#DOC.DOCU">ixmlDocument_createTextNode</A></H2><H2>(IXML_Document* doc,<BR> const DOMString data )</H2><BLOCKQUOTE>Creates a new <B>Text</B> node with the given data.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Creates a new <B>Text</B> node with the given data.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>doc</B> - The owner <B>Document</B> of the new node.
|
||||
<BR><B>data</B> - The data to associate with the new <B>Text</B>
|
||||
node. <BR><DT><B>Returns:</B><DD> [Node*] A pointer to the new <B>Node</B> or <TT>NULL</TT> on failure.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
37
docs/dist/html/ixml/ixmlDocument_createTextNodeEx.html
vendored
Normal file
37
docs/dist/html/ixml/ixmlDocument_createTextNodeEx.html
vendored
Normal file
@ -0,0 +1,37 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC int ixmlDocument_createTextNodeEx</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC int <A HREF="#DOC.DOCU">ixmlDocument_createTextNodeEx</A></H2><H2>(IXML_Document* doc,<BR> const DOMString data,<BR> IXML_Node** textNode )</H2><BLOCKQUOTE>Creates a new <B>Text</B> node with the given data.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Creates a new <B>Text</B> node with the given data.
|
||||
The <B>ixmlDocument_createTextNodeEx</B> API differs from the <B>
|
||||
ixmlDocument_createTextNode</B> API in that it returns an error code
|
||||
describing the reason for failure rather than just <TT>NULL</TT>.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>doc</B> - The owner <B>Document</B> of the new node.
|
||||
<BR><B>data</B> - The data to associate with the new <B>
|
||||
Text</B> node.
|
||||
<BR><B>textNode</B> - A pointer to a <B>Node</B> where the new
|
||||
object will be stored. <BR><DT><B>Returns:</B><DD> [int] An integer representing one of the following:
|
||||
<UL>
|
||||
<LI> <TT>IXML_SUCCESS</TT>: The operation completed successfully.
|
||||
<LI> <TT>IXML_INVALID_PARAMETER</TT>: Either <B>doc</B> or <B>data</B>
|
||||
is <TT>NULL</TT>.
|
||||
<LI> <TT>IXML_INSUFFICIENT_MEMORY</TT>: Not enough free memory exists
|
||||
to complete this operation.
|
||||
</UL>
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
26
docs/dist/html/ixml/ixmlDocument_free.html
vendored
Normal file
26
docs/dist/html/ixml/ixmlDocument_free.html
vendored
Normal file
@ -0,0 +1,26 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC void ixmlDocument_free</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC void <A HREF="#DOC.DOCU">ixmlDocument_free</A></H2><H2>(IXML_Document* doc )</H2><BLOCKQUOTE>Frees a <B>Document</B> object and all <B>Node</B>s associated with it.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Frees a <B>Document</B> object and all <B>Node</B>s associated with it.
|
||||
Any <B>Node</B>s extracted via any other interface function, e.g.
|
||||
<B>ixmlDocument_GetElementById</B>, become invalid after this call unless
|
||||
explicitly cloned.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>doc</B> - The <B>Document</B> to free. <BR><DT><B>Returns:</B><DD> [void] This function does not return a value.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
26
docs/dist/html/ixml/ixmlDocument_getElementById.html
vendored
Normal file
26
docs/dist/html/ixml/ixmlDocument_getElementById.html
vendored
Normal file
@ -0,0 +1,26 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC IXML_Element* ixmlDocument_getElementById</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC IXML_Element* <A HREF="#DOC.DOCU">ixmlDocument_getElementById</A></H2><H2>(IXML_Document* doc,<BR> DOMString tagName )</H2><BLOCKQUOTE>Returns the <B>Element</B> whose <TT>ID</TT> matches that given id.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Returns the <B>Element</B> whose <TT>ID</TT> matches that given id.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>doc</B> - The owner <B>Document</B> of the <B>
|
||||
Element</B>.
|
||||
<BR><B>tagName</B> - The name of the <B>Element</B>.<BR><DT><B>Returns:</B><DD> [Element*] A pointer to the matching <B>Element</B> or
|
||||
<TT>NULL</TT> on an error.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
27
docs/dist/html/ixml/ixmlDocument_getElementsByTagName.html
vendored
Normal file
27
docs/dist/html/ixml/ixmlDocument_getElementsByTagName.html
vendored
Normal file
@ -0,0 +1,27 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC IXML_NodeList* ixmlDocument_getElementsByTagName</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC IXML_NodeList* <A HREF="#DOC.DOCU">ixmlDocument_getElementsByTagName</A></H2><H2>(IXML_Document* doc,<BR> DOMString tagName )</H2><BLOCKQUOTE>Returns a <B>NodeList</B> of all <B>Elements</B> that match the given tag name in the order in which they were encountered in a preorder traversal of the <B>Document</B> tree.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Returns a <B>NodeList</B> of all <B>Elements</B> that match the given
|
||||
tag name in the order in which they were encountered in a preorder
|
||||
traversal of the <B>Document</B> tree.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>doc</B> - The <B>Document</B> to search.
|
||||
<BR><B>tagName</B> - The tag name to find. <BR><DT><B>Returns:</B><DD> [NodeList*] A pointer to a <B>NodeList</B> containing the
|
||||
matching items or <TT>NULL</TT> on an error.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
34
docs/dist/html/ixml/ixmlDocument_getElementsByTagNameNS.html
vendored
Normal file
34
docs/dist/html/ixml/ixmlDocument_getElementsByTagNameNS.html
vendored
Normal file
@ -0,0 +1,34 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC IXML_NodeList* ixmlDocument_getElementsByTagNameNS</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC IXML_NodeList* <A HREF="#DOC.DOCU">ixmlDocument_getElementsByTagNameNS</A></H2><H2>(IXML_Document* doc,<BR> DOMString namespaceURI,<BR> DOMString localName )</H2><BLOCKQUOTE>Returns a <B>NodeList</B> of <B>Elements</B> that match the given local name and namespace URI in the order they are encountered in a preorder traversal of the <B>Document</B> tree.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Returns a <B>NodeList</B> of <B>Elements</B> that match the given
|
||||
local name and namespace URI in the order they are encountered
|
||||
in a preorder traversal of the <B>Document</B> tree. Either
|
||||
<B>namespaceURI</B> or <B>localName</B> can be the special <TT>"*"</TT>
|
||||
character, which matches any namespace or any local name respectively.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>doc</B> - The <B>Document</B> to search.
|
||||
<BR><B>namespaceURI</B> - The namespace of the elements to
|
||||
find or <TT>"*"</TT> to match any
|
||||
namespace.
|
||||
<BR><B>localName</B> - The local name of the elements to
|
||||
find or <TT>"*"</TT> to match any local
|
||||
name. <BR><DT><B>Returns:</B><DD> [NodeList*] A pointer to a <B>NodeList</B> containing the
|
||||
matching items or <TT>NULL</TT> on an error.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
43
docs/dist/html/ixml/ixmlDocument_importNode.html
vendored
Normal file
43
docs/dist/html/ixml/ixmlDocument_importNode.html
vendored
Normal file
@ -0,0 +1,43 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC int ixmlDocument_importNode</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC int <A HREF="#DOC.DOCU">ixmlDocument_importNode</A></H2><H2>(IXML_Document* doc,<BR> IXML_Node* importNode,<BR> <!1><A HREF="index.html#DOC.1.3">BOOL</A> deep,<BR> IXML_Node** rtNode )</H2><BLOCKQUOTE>Imports a <B>Node</B> from another <B>Document</B> into this <B>Document</B>.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Imports a <B>Node</B> from another <B>Document</B> into this
|
||||
<B>Document</B>. The new <B>Node</B> does not a have parent node: it is a
|
||||
clone of the original <B>Node</B> with the <TT>ownerDocument</TT> set to
|
||||
<B>doc</B>. The <B>deep</B> parameter controls whether all the children
|
||||
of the <B>Node</B> are imported. Refer to the DOM2-Core recommendation
|
||||
for details on importing specific node types.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>doc</B> - The <B>Document</B> into which to import.
|
||||
<BR><B>importNode</B> - The <B>Node</B> to import.
|
||||
<BR><B>deep</B> - <TT>TRUE</TT> to import all children of <B>
|
||||
importNode</B> or <TT>FALSE</TT> to import only the
|
||||
root node.
|
||||
<BR><B>rtNode</B> - A pointer to a new <B>Node</B> owned by <B>
|
||||
doc</B>. <BR><DT><B>Returns:</B><DD> [int] An integer representing one of the following:
|
||||
<UL>
|
||||
<LI> <TT>IXML_SUCCESS</TT>: The operation completed successfully.
|
||||
<LI> <TT>IXML_INVALID_PARAMETER</TT>: Either <B>doc</B> or
|
||||
<B>importNode</B> is not a valid pointer.
|
||||
<LI> <TT>IXML_NOT_SUPPORTED_ERR</TT>: <B>importNode</B> is a
|
||||
<B>Document</B>, which cannot be imported.
|
||||
<LI> <TT>IXML_FAILED</TT>: The import operation failed because the
|
||||
<B>Node</B> to be imported could not be cloned.
|
||||
</UL>
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
23
docs/dist/html/ixml/ixmlDocument_init.html
vendored
Normal file
23
docs/dist/html/ixml/ixmlDocument_init.html
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC void ixmlDocument_init</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC void <A HREF="#DOC.DOCU">ixmlDocument_init</A></H2><H2>(IXML_Document* nodeptr )</H2><BLOCKQUOTE>Initializes a <B>Document</B> node.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Initializes a <B>Document</B> node.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>nodeptr</B> - The <B>Document</B> node to initialize. <BR><DT><B>Returns:</B><DD> [void] This function does not return a value.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
33
docs/dist/html/ixml/ixmlDocumenttoString.html
vendored
Normal file
33
docs/dist/html/ixml/ixmlDocumenttoString.html
vendored
Normal file
@ -0,0 +1,33 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>DOMString ixmlDocumenttoString</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>DOMString <A HREF="#DOC.DOCU">ixmlDocumenttoString</A></H2><H2>(IXML_Document* doc)</H2><BLOCKQUOTE>Renders a <B>Node</B> and all sub-elements into an XML document representation.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Renders a <B>Node</B> and all sub-elements into an XML document
|
||||
representation. The caller is required to free the <B>DOMString</B>
|
||||
returned from this function using <B>ixmlFreeDOMString</B> when it
|
||||
is no longer required.
|
||||
|
||||
<P>Note that this function can be used for any <B>Node</B>-derived
|
||||
interface. The difference between <B>ixmlDocumenttoString</B> and
|
||||
<B>ixmlNodetoString</B> is <B>ixmlDocumenttoString</B> includes the XML
|
||||
prolog while <B>ixmlNodetoString</B> only produces XML elements. An XML
|
||||
document is not well formed unless it includes the prolog
|
||||
and at least one element.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Returns:</B><DD> [DOMString] A <B>DOMString</B> with the XML text representation
|
||||
of the DOM tree or <TT>NULL</TT> on an error.<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
23
docs/dist/html/ixml/ixmlElement_free.html
vendored
Normal file
23
docs/dist/html/ixml/ixmlElement_free.html
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC void ixmlElement_free</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC void <A HREF="#DOC.DOCU">ixmlElement_free</A></H2><H2>(IXML_Element* element )</H2><BLOCKQUOTE>Frees the given <B>Element</B> and any subtree of the <B>Element</B>.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Frees the given <B>Element</B> and any subtree of the <B>Element</B>.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>element</B> - The <B>Element</B> to free. <BR><DT><B>Returns:</B><DD> [void] This function does not return a value.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
26
docs/dist/html/ixml/ixmlElement_getAttribute.html
vendored
Normal file
26
docs/dist/html/ixml/ixmlElement_getAttribute.html
vendored
Normal file
@ -0,0 +1,26 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC DOMString ixmlElement_getAttribute</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC DOMString <A HREF="#DOC.DOCU">ixmlElement_getAttribute</A></H2><H2>(IXML_Element* element,<BR> DOMString name )</H2><BLOCKQUOTE>Retrieves an attribute of an <B>Element</B> by name.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Retrieves an attribute of an <B>Element</B> by name.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>element</B> - The <B>Element</B> from which to retrieve the
|
||||
attribute.
|
||||
<BR><B>name</B> - The name of the attribute to retrieve. <BR><DT><B>Returns:</B><DD> [DOMString] A <B>DOMString</B> representing the value of the
|
||||
attribute.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
27
docs/dist/html/ixml/ixmlElement_getAttributeNS.html
vendored
Normal file
27
docs/dist/html/ixml/ixmlElement_getAttributeNS.html
vendored
Normal file
@ -0,0 +1,27 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC DOMString ixmlElement_getAttributeNS</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC DOMString <A HREF="#DOC.DOCU">ixmlElement_getAttributeNS</A></H2><H2>(IXML_Element* element,<BR> DOMString namespaceURI,<BR> DOMString localname )</H2><BLOCKQUOTE>Retrieves an attribute value using the local name and namespace URI.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Retrieves an attribute value using the local name and namespace URI.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>element</B> - The <B>Element</B> from which to get the
|
||||
attribute value.
|
||||
<BR><B>namespaceURI</B> - The namespace URI of the attribute.
|
||||
<BR><B>localname</B> - The local name of the attribute. <BR><DT><B>Returns:</B><DD> [DOMString] A <B>DOMString</B> representing the value of the
|
||||
matching attribute.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
28
docs/dist/html/ixml/ixmlElement_getAttributeNode.html
vendored
Normal file
28
docs/dist/html/ixml/ixmlElement_getAttributeNode.html
vendored
Normal file
@ -0,0 +1,28 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC IXML_Attr* ixmlElement_getAttributeNode</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC IXML_Attr* <A HREF="#DOC.DOCU">ixmlElement_getAttributeNode</A></H2><H2>(IXML_Element* element,<BR> DOMString name )</H2><BLOCKQUOTE>Retrieves an attribute node by name.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Retrieves an attribute node by name. See
|
||||
<B>ixmlElement_getAttributeNodeNS</B> to retrieve an attribute node using
|
||||
a qualified name or namespace URI.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>element</B> - The <B>Element</B> from which to get the
|
||||
attribute node.
|
||||
<BR><B>name</B> - The name of the attribute node to find. <BR><DT><B>Returns:</B><DD> [Attr*] A pointer to the attribute matching <B>name</B> or
|
||||
<TT>NULL</TT> on an error.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
26
docs/dist/html/ixml/ixmlElement_getAttributeNodeNS.html
vendored
Normal file
26
docs/dist/html/ixml/ixmlElement_getAttributeNodeNS.html
vendored
Normal file
@ -0,0 +1,26 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC IXML_Attr* ixmlElement_getAttributeNodeNS</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC IXML_Attr* <A HREF="#DOC.DOCU">ixmlElement_getAttributeNodeNS</A></H2><H2>(IXML_Element* element,<BR> DOMString namespaceURI,<BR> DOMString localName )</H2><BLOCKQUOTE>Retrieves an <B>Attr</B> node by local name and namespace URI.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Retrieves an <B>Attr</B> node by local name and namespace URI.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>element</B> - The <B>Element</B> from which to get the
|
||||
attribute.
|
||||
<BR><B>namespaceURI</B> - The namespace URI of the attribute.
|
||||
<BR><B>localName</B> - The local name of the attribute. <BR><DT><B>Returns:</B><DD> [Attr*] A pointer to an <B>Attr</B> or <TT>NULL</TT> on an error.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
29
docs/dist/html/ixml/ixmlElement_getElementsByTagName.html
vendored
Normal file
29
docs/dist/html/ixml/ixmlElement_getElementsByTagName.html
vendored
Normal file
@ -0,0 +1,29 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC IXML_NodeList* ixmlElement_getElementsByTagName</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC IXML_NodeList* <A HREF="#DOC.DOCU">ixmlElement_getElementsByTagName</A></H2><H2>(IXML_Element* element,<BR> DOMString tagName )</H2><BLOCKQUOTE>Returns a <B>NodeList</B> of all <I>descendant</I> <B>Elements</B> with a given tag name, in the order in which they are encountered in a pre-order traversal of this <B>Element</B> tree.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Returns a <B>NodeList</B> of all <I>descendant</I> <B>Elements</B> with
|
||||
a given tag name, in the order in which they are encountered in a
|
||||
pre-order traversal of this <B>Element</B> tree.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>element</B> - The <B>Element</B> from which to start
|
||||
the search.
|
||||
<BR><B>tagName</B> - The name of the tag for which to
|
||||
search. <BR><DT><B>Returns:</B><DD> [NodeList*] A <B>NodeList</B> of the matching <B>Element</B>s or
|
||||
<TT>NULL</TT> on an error.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
31
docs/dist/html/ixml/ixmlElement_getElementsByTagNameNS.html
vendored
Normal file
31
docs/dist/html/ixml/ixmlElement_getElementsByTagNameNS.html
vendored
Normal file
@ -0,0 +1,31 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC IXML_NodeList* ixmlElement_getElementsByTagNameNS</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC IXML_NodeList* <A HREF="#DOC.DOCU">ixmlElement_getElementsByTagNameNS</A></H2><H2>(IXML_Element* element,<BR> DOMString namespaceURI,<BR> DOMString localName )</H2><BLOCKQUOTE>Returns a <B>NodeList</B> of all <I>descendant</I> <B>Elements</B> with a given tag name, in the order in which they are encountered in the pre-order traversal of the <B>Element</B> tree.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Returns a <B>NodeList</B> of all <I>descendant</I> <B>Elements</B> with a
|
||||
given tag name, in the order in which they are encountered in the
|
||||
pre-order traversal of the <B>Element</B> tree.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>element</B> - The <B>Element</B> from which to start
|
||||
the search.
|
||||
<BR><B>namespaceURI</B> - The namespace URI of the <B>
|
||||
Element</B>s to find.
|
||||
<BR><B>localName</B> - The local name of the <B>Element</B>s
|
||||
to find. <BR><DT><B>Returns:</B><DD> [NodeList*] A <B>NodeList</B> of matching <B>Element</B>s or
|
||||
<TT>NULL</TT> on an error.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
25
docs/dist/html/ixml/ixmlElement_getTagName.html
vendored
Normal file
25
docs/dist/html/ixml/ixmlElement_getTagName.html
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC const DOMString ixmlElement_getTagName</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC const DOMString <A HREF="#DOC.DOCU">ixmlElement_getTagName</A></H2><H2>(IXML_Element* element )</H2><BLOCKQUOTE>Returns the name of the tag as a constant string.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Returns the name of the tag as a constant string.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>element</B> - The <B>Element</B> from which to retrieve the
|
||||
name. <BR><DT><B>Returns:</B><DD> [const DOMString] A <B>DOMString</B> representing the name of the
|
||||
<B>Element</B>.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
28
docs/dist/html/ixml/ixmlElement_hasAttribute.html
vendored
Normal file
28
docs/dist/html/ixml/ixmlElement_hasAttribute.html
vendored
Normal file
@ -0,0 +1,28 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC BOOL ixmlElement_hasAttribute</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC <!1><A HREF="index.html#DOC.1.3">BOOL</A> <A HREF="#DOC.DOCU">ixmlElement_hasAttribute</A></H2><H2>(IXML_Element* element,<BR> DOMString name )</H2><BLOCKQUOTE>Queries whether the <B>Element</B> has an attribute with the given name or a default value.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Queries whether the <B>Element</B> has an attribute with the given name
|
||||
or a default value.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>element</B> - The <B>Element</B> on which to check for an
|
||||
attribute.
|
||||
<BR><B>name</B> - The name of the attribute for which to check. <BR><DT><B>Returns:</B><DD> [BOOL] <TT>TRUE</TT> if the <B>Element</B> has an attribute with
|
||||
this name or has a default value for that attribute,
|
||||
otherwise <TT>FALSE</TT>.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
29
docs/dist/html/ixml/ixmlElement_hasAttributeNS.html
vendored
Normal file
29
docs/dist/html/ixml/ixmlElement_hasAttributeNS.html
vendored
Normal file
@ -0,0 +1,29 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC BOOL ixmlElement_hasAttributeNS</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC <!1><A HREF="index.html#DOC.1.3">BOOL</A> <A HREF="#DOC.DOCU">ixmlElement_hasAttributeNS</A></H2><H2>(IXML_Element* element,<BR> DOMString namespaceURI,<BR> DOMString localName )</H2><BLOCKQUOTE>Queries whether the <B>Element</B> has an attribute with the given local name and namespace URI or has a default value for that attribute.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Queries whether the <B>Element</B> has an attribute with the given
|
||||
local name and namespace URI or has a default value for that attribute.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>element</B> - The <B>Element</B> on which to check for the
|
||||
attribute.
|
||||
<BR><B>namespaceURI</B> - The namespace URI of the attribute.
|
||||
<BR><B>localName</B> - The local name of the attribute. <BR><DT><B>Returns:</B><DD> [BOOL] <TT>TRUE</TT> if the <B>Element</B> has an attribute with
|
||||
the given namespace and local name or has a default
|
||||
value for that attribute, otherwise <TT>FALSE</TT>.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
23
docs/dist/html/ixml/ixmlElement_init.html
vendored
Normal file
23
docs/dist/html/ixml/ixmlElement_init.html
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC void ixmlElement_init</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC void <A HREF="#DOC.DOCU">ixmlElement_init</A></H2><H2>(IXML_Element* element )</H2><BLOCKQUOTE>Initializes a <B>IXML_Element</B> node.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Initializes a <B>IXML_Element</B> node.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>element</B> - The <B>Element</B> to initialize.<BR><DT><B>Returns:</B><DD> [void] This function does not return a value.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
30
docs/dist/html/ixml/ixmlElement_removeAttribute.html
vendored
Normal file
30
docs/dist/html/ixml/ixmlElement_removeAttribute.html
vendored
Normal file
@ -0,0 +1,30 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC int ixmlElement_removeAttribute</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC int <A HREF="#DOC.DOCU">ixmlElement_removeAttribute</A></H2><H2>(IXML_Element* element,<BR> DOMString name )</H2><BLOCKQUOTE>Removes an attribute by name.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Removes an attribute by name.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>element</B> - The <B>Element</B> from which to remove the
|
||||
attribute.
|
||||
<BR><B>name</B> - The name of the attribute to remove. <BR><DT><B>Returns:</B><DD> [int] An integer representing one of the following:
|
||||
<UL>
|
||||
<LI> <TT>IXML_SUCCESS</TT>: The operation completed successfully.
|
||||
<LI> <TT>IXML_INVALID_PARAMETER</TT>: Either <B>element</B> or
|
||||
<B>name</B> is <TT>NULL</TT>.
|
||||
</UL>
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
31
docs/dist/html/ixml/ixmlElement_removeAttributeNS.html
vendored
Normal file
31
docs/dist/html/ixml/ixmlElement_removeAttributeNS.html
vendored
Normal file
@ -0,0 +1,31 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC int ixmlElement_removeAttributeNS</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC int <A HREF="#DOC.DOCU">ixmlElement_removeAttributeNS</A></H2><H2>(IXML_Element* element,<BR> DOMString namespaceURI,<BR> DOMString localName )</H2><BLOCKQUOTE>Removes an attribute using the namespace URI and local name.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Removes an attribute using the namespace URI and local name.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>element</B> - The <B>Element</B> from which to remove the
|
||||
the attribute.
|
||||
<BR><B>namespaceURI</B> - The namespace URI of the attribute.
|
||||
<BR><B>localName</B> - The local name of the attribute.<BR><DT><B>Returns:</B><DD> [int] An integer representing one of the following:
|
||||
<UL>
|
||||
<LI> <TT>IXML_SUCCESS</TT>: The operation completed successfully.
|
||||
<LI> <TT>IXML_INVALID_PARAMETER</TT>: Either <B>element</B>,
|
||||
<B>namespaceURI</B>, or <B>localName</B> is <TT>NULL</TT>.
|
||||
</UL>
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
35
docs/dist/html/ixml/ixmlElement_removeAttributeNode.html
vendored
Normal file
35
docs/dist/html/ixml/ixmlElement_removeAttributeNode.html
vendored
Normal file
@ -0,0 +1,35 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC int ixmlElement_removeAttributeNode</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC int <A HREF="#DOC.DOCU">ixmlElement_removeAttributeNode</A></H2><H2>(IXML_Element* element,<BR> IXML_Attr* oldAttr,<BR> IXML_Attr** rtAttr )</H2><BLOCKQUOTE>Removes the specified attribute node from an <B>Element</B>.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Removes the specified attribute node from an <B>Element</B>.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>element</B> - The <B>Element</B> from which to remove
|
||||
the attribute.
|
||||
<BR><B>oldAttr</B> - The attribute to remove from the <B>
|
||||
Element</B>.
|
||||
<BR><B>rtAttr</B> - A pointer to an attribute in which to
|
||||
place the removed attribute. <BR><DT><B>Returns:</B><DD> [int] An integer representing one of the following:
|
||||
<UL>
|
||||
<LI> <TT>IXML_SUCCESS</TT>: The operation completed successfully.
|
||||
<LI> <TT>IXML_INVALID_PARAMETER</TT>: Either <B>element</B> or
|
||||
<B>oldAttr</B> is <TT>NULL</TT>.
|
||||
<LI> <TT>IXML_NOT_FOUND_ERR</TT>: <B>oldAttr</B> is not among the list
|
||||
attributes of <B>element</B>.
|
||||
</UL>
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
39
docs/dist/html/ixml/ixmlElement_setAttribute.html
vendored
Normal file
39
docs/dist/html/ixml/ixmlElement_setAttribute.html
vendored
Normal file
@ -0,0 +1,39 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC int ixmlElement_setAttribute</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC int <A HREF="#DOC.DOCU">ixmlElement_setAttribute</A></H2><H2>(IXML_Element* element,<BR> DOMString name,<BR> DOMString value )</H2><BLOCKQUOTE>Adds a new attribute to an <B>Element</B>.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Adds a new attribute to an <B>Element</B>. If an attribute with the same
|
||||
name already exists, the attribute value will be updated with the
|
||||
new value in <B>value</B>.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>element</B> - The <B>Element</B> on which to set the
|
||||
attribute.
|
||||
<BR><B>name</B> - The name of the attribute.
|
||||
<BR><B>value</B> - The value of the attribute. Note that this is
|
||||
a non-parsed string and any markup must be
|
||||
escaped. <BR><DT><B>Returns:</B><DD> [int] An integer representing of the following:
|
||||
<UL>
|
||||
<LI> <TT>IXML_SUCCESS</TT>: The operation completed successfully.
|
||||
<LI> <TT>IXML_INVALID_PARAMETER</TT>: Either <B>element</B>,
|
||||
<B>name</B>, or <B>value</B> is <TT>NULL</TT>.
|
||||
<LI> <TT>IXML_INVALID_CHARACTER_ERR</TT>: <B>name</B> contains an
|
||||
illegal character.
|
||||
<LI> <TT>IXML_INSUFFICIENT_MEMORY</TT>: Not enough free memory exists
|
||||
to complete the operation.
|
||||
</UL>
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
44
docs/dist/html/ixml/ixmlElement_setAttributeNS.html
vendored
Normal file
44
docs/dist/html/ixml/ixmlElement_setAttributeNS.html
vendored
Normal file
@ -0,0 +1,44 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC int ixmlElement_setAttributeNS</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC int <A HREF="#DOC.DOCU">ixmlElement_setAttributeNS</A></H2><H2>(IXML_Element* element,<BR> DOMString namespaceURI,<BR> DOMString qualifiedName,<BR> DOMString value )</H2><BLOCKQUOTE>Adds a new attribute to an <B>Element</B> using the local name and namespace URI.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Adds a new attribute to an <B>Element</B> using the local name and
|
||||
namespace URI. If another attribute matches the same local name and
|
||||
namespace, the prefix is changed to be the prefix part of the
|
||||
<TT>qualifiedName</TT> and the value is changed to <B>value</B>.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>element</B> - The <B>Element</B> on which to set the
|
||||
attribute.
|
||||
<BR><B>namespaceURI</B> - The namespace URI of the new attribute.
|
||||
<BR><B>qualifiedName</B> - The qualified name of the attribute.
|
||||
<BR><B>value</B> - The new value for the attribute. <BR><DT><B>Returns:</B><DD> [int] An integer representing one of the following:
|
||||
<UL>
|
||||
<LI> <TT>IXML_SUCCESS</TT>: The operation completed successfully.
|
||||
<LI> <TT>IXML_INVALID_PARAMETER</TT>: Either <B>element</B>,
|
||||
<B>namespaceURI</B>, <B>qualifiedName</B>, or <B>value</B> is
|
||||
<TT>NULL</TT>.
|
||||
<LI> <TT>IXML_INVALID_CHARACTER_ERR</TT>: <B>qualifiedName</B> contains
|
||||
an invalid character.
|
||||
<LI> <TT>IXML_NAMESPACE_ERR</TT>: Either the <B>qualifiedName</B> or
|
||||
<B>namespaceURI</B> is malformed. Refer to the DOM2-Core for
|
||||
possible reasons.
|
||||
<LI> <TT>IXML_INSUFFICIENT_MEMORY</TT>: Not enough free memory exist
|
||||
to complete the operation.
|
||||
<LI> <TT>IXML_FAILED</TT>: The operation could not be completed.
|
||||
</UL>
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
40
docs/dist/html/ixml/ixmlElement_setAttributeNode.html
vendored
Normal file
40
docs/dist/html/ixml/ixmlElement_setAttributeNode.html
vendored
Normal file
@ -0,0 +1,40 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC int ixmlElement_setAttributeNode</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC int <A HREF="#DOC.DOCU">ixmlElement_setAttributeNode</A></H2><H2>(IXML_Element* element,<BR> IXML_Attr* newAttr,<BR> IXML_Attr** rtAttr )</H2><BLOCKQUOTE>Adds a new attribute node to an <B>Element</B>.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Adds a new attribute node to an <B>Element</B>. If an attribute already
|
||||
exists with <B>newAttr</B> as a name, it will be replaced with the
|
||||
new one and the old one will be returned in <B>rtAttr</B>.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>element</B> - The <B>Element</B> in which to add the new
|
||||
attribute.
|
||||
<BR><B>newAttr</B> - The new <B>Attr</B> to add.
|
||||
<BR><B>rtAttr</B> - A pointer to an <B>Attr</B> where the old
|
||||
<B>Attr</B> will be stored. This will have
|
||||
a <TT>NULL</TT> if no prior node
|
||||
existed. <BR><DT><B>Returns:</B><DD> [int] An integer representing one of the following:
|
||||
<UL>
|
||||
<LI> <TT>IXML_SUCCESS</TT>: The operation completed successfully.
|
||||
<LI> <TT>IXML_INVALID_PARAMETER</TT>: Either <B>element</B> or
|
||||
<B>newAttr</B> is <TT>NULL</TT>.
|
||||
<LI> <TT>IXML_WRONG_DOCUMENT_ERR</TT>: <B>newAttr</B> does not belong
|
||||
to the same one as <B>element</B>.
|
||||
<LI> <TT>IXML_INUSE_ATTRIBUTE_ERR</TT>: <B>newAttr</B> is already
|
||||
an attribute of another <B>Element</B>.
|
||||
</UL>
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
39
docs/dist/html/ixml/ixmlElement_setAttributeNodeNS.html
vendored
Normal file
39
docs/dist/html/ixml/ixmlElement_setAttributeNodeNS.html
vendored
Normal file
@ -0,0 +1,39 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC int ixmlElement_setAttributeNodeNS</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC int <A HREF="#DOC.DOCU">ixmlElement_setAttributeNodeNS</A></H2><H2>(IXML_Element* element,<BR> IXML_Attr* newAttr,<BR> IXML_Attr** rcAttr )</H2><BLOCKQUOTE>Adds a new attribute node.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Adds a new attribute node. If an attribute with the same local name
|
||||
and namespace URI already exists in the <B>Element</B>, the existing
|
||||
attribute node is replaced with <B>newAttr</B> and the old returned in
|
||||
<B>rcAttr</B>.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>element</B> - The <B>Element</B> in which to add the
|
||||
attribute node.
|
||||
<BR><B>newAttr</B> - The new <B>Attr</B> to add.
|
||||
<BR><B>rcAttr</B> - A pointer to the replaced <B>Attr</B>, if
|
||||
it exists. <BR><DT><B>Returns:</B><DD> [int] An integer representing one of the following:
|
||||
<UL>
|
||||
<LI> <TT>IXML_SUCCESS</TT>: The operation completed successfully.
|
||||
<LI> <TT>IXML_INVALID_PARAMETER</TT>: Either <B>element</B> or
|
||||
<B>newAttr</B> is <TT>NULL</TT>.
|
||||
<LI> <TT>IXML_WRONG_DOCUMENT_ERR</TT>: <B>newAttr</B> does not belong
|
||||
to the same document as <B>element</B>.
|
||||
<LI> <TT>IXML_INUSE_ATTRIBUTE_ERR</TT>: <B>newAttr</B> already is an
|
||||
attribute of another <B>Element</B>.
|
||||
</UL>
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
23
docs/dist/html/ixml/ixmlFreeDOMString.html
vendored
Normal file
23
docs/dist/html/ixml/ixmlFreeDOMString.html
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC void ixmlFreeDOMString</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC void <A HREF="#DOC.DOCU">ixmlFreeDOMString</A></H2><H2>(DOMString buf )</H2><BLOCKQUOTE>Frees a <B>DOMString</B>.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Frees a <B>DOMString</B>.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>buf</B> - The <B>DOMString</B> to free. <BR><DT><B>Returns:</B><DD> [void] This function does not return a value.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
25
docs/dist/html/ixml/ixmlLoadDocument.html
vendored
Normal file
25
docs/dist/html/ixml/ixmlLoadDocument.html
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC IXML_Document* ixmlLoadDocument</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC IXML_Document* <A HREF="#DOC.DOCU">ixmlLoadDocument</A></H2><H2>(char* xmlFile )</H2><BLOCKQUOTE>Parses an XML text file converting it into an IXML DOM representation.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Parses an XML text file converting it into an IXML DOM representation.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>xmlFile</B> - The filename of the XML text to convert to a <B>
|
||||
Document</B>. <BR><DT><B>Returns:</B><DD> [Document*] A <B>Document</B> if the file correctly parses or
|
||||
<TT>NULL</TT> on an error.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
37
docs/dist/html/ixml/ixmlLoadDocumentEx.html
vendored
Normal file
37
docs/dist/html/ixml/ixmlLoadDocumentEx.html
vendored
Normal file
@ -0,0 +1,37 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC int ixmlLoadDocumentEx</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC int <A HREF="#DOC.DOCU">ixmlLoadDocumentEx</A></H2><H2>(char* xmlFile,<BR> IXML_Document** doc )</H2><BLOCKQUOTE>Parses an XML text file converting it into an IXML DOM representation.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Parses an XML text file converting it into an IXML DOM representation.
|
||||
|
||||
<P>The <B>ixmlLoadDocumentEx</B> API differs from the <B>ixmlLoadDocument</B>
|
||||
API in that it returns a an error code representing the actual failure
|
||||
rather than just <TT>NULL</TT>.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>xmlFile</B> - The filename of the XML text to convert to a <B>
|
||||
Document</B>.
|
||||
<BR><B>doc</B> - A pointer to the <B>Document</B> if file correctly
|
||||
parses or <B>NULL</B> on an error. <BR><DT><B>Returns:</B><DD> [int] An integer representing one of the following:
|
||||
<UL>
|
||||
<LI> <TT>IXML_SUCCESS</TT>: The operation completed successfully.
|
||||
<LI> <TT>IXML_INVALID_PARAMETER</TT>: The <B>xmlFile</B> is not a valid
|
||||
pointer.
|
||||
<LI> <TT>IXML_INSUFFICIENT_MEMORY</TT>: Not enough free memory exists
|
||||
to complete this operation.
|
||||
</UL>
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
24
docs/dist/html/ixml/ixmlNamedNodeMap_free.html
vendored
Normal file
24
docs/dist/html/ixml/ixmlNamedNodeMap_free.html
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC void ixmlNamedNodeMap_free</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC void <A HREF="#DOC.DOCU">ixmlNamedNodeMap_free</A></H2><H2>(IXML_NamedNodeMap* nnMap )</H2><BLOCKQUOTE>Frees a <B>NamedNodeMap</B>.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Frees a <B>NamedNodeMap</B>. The <B>Node</B>s inside the map are not
|
||||
freed, just the <B>NamedNodeMap</B> object.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>nnMap</B> - The <B>NamedNodeMap to free</B>. <BR><DT><B>Returns:</B><DD> [void] This function does not return a value.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
24
docs/dist/html/ixml/ixmlNamedNodeMap_getLength.html
vendored
Normal file
24
docs/dist/html/ixml/ixmlNamedNodeMap_getLength.html
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC unsigned long ixmlNamedNodeMap_getLength</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC unsigned long <A HREF="#DOC.DOCU">ixmlNamedNodeMap_getLength</A></H2><H2>(IXML_NamedNodeMap* nnMap )</H2><BLOCKQUOTE>Returns the number of items contained in this <B>NamedNodeMap</B>.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Returns the number of items contained in this <B>NamedNodeMap</B>.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>nnMap</B> - The <B>NamedNodeMap</B> from which to retrieve
|
||||
the size. <BR><DT><B>Returns:</B><DD> [unsigned long] The number of nodes in this map.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
24
docs/dist/html/ixml/ixmlNamedNodeMap_getNamedItem.html
vendored
Normal file
24
docs/dist/html/ixml/ixmlNamedNodeMap_getNamedItem.html
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC IXML_Node* ixmlNamedNodeMap_getNamedItem</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC IXML_Node* <A HREF="#DOC.DOCU">ixmlNamedNodeMap_getNamedItem</A></H2><H2>(IXML_NamedNodeMap* nnMap,<BR> DOMString name )</H2><BLOCKQUOTE>Retrieves a <B>Node</B> from the <B>NamedNodeMap</B> by name.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Retrieves a <B>Node</B> from the <B>NamedNodeMap</B> by name.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>nnMap</B> - The <B>NamedNodeMap</B> to search.
|
||||
<BR><B>name</B> - The name of the <B>Node</B> to find. <BR><DT><B>Returns:</B><DD> [Node*] A <B>Node</B> or <TT>NULL</TT> if there is an error.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
30
docs/dist/html/ixml/ixmlNamedNodeMap_getNamedItemNS.html
vendored
Normal file
30
docs/dist/html/ixml/ixmlNamedNodeMap_getNamedItemNS.html
vendored
Normal file
@ -0,0 +1,30 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC IXML_Node* ixmlNamedNodeMap_getNamedItemNS</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC IXML_Node* <A HREF="#DOC.DOCU">ixmlNamedNodeMap_getNamedItemNS</A></H2><H2>(IXML_NamedNodeMap* nnMap,<BR> DOMString* namespaceURI,<BR> DOMString localName )</H2><BLOCKQUOTE>Retrieves a <B>Node</B> from a <B>NamedNodeMap</B> specified by namespace URI and local name.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Retrieves a <B>Node</B> from a <B>NamedNodeMap</B> specified by
|
||||
namespace URI and local name.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>nnMap</B> - The <B>NamedNodeMap</B> from which to
|
||||
remove the <B>Node</B>.
|
||||
<BR><B>namespaceURI</B> - The namespace URI of the <B>Node</B> to
|
||||
remove.
|
||||
<BR><B>localName</B> - The local name of the <B>Node</B> to
|
||||
remove. <BR><DT><B>Returns:</B><DD> [Node*] A pointer to the <B>Node</B>, if found, or <TT>NULL</TT> if
|
||||
it wasn't
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
27
docs/dist/html/ixml/ixmlNamedNodeMap_item.html
vendored
Normal file
27
docs/dist/html/ixml/ixmlNamedNodeMap_item.html
vendored
Normal file
@ -0,0 +1,27 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC IXML_Node* ixmlNamedNodeMap_item</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC IXML_Node* <A HREF="#DOC.DOCU">ixmlNamedNodeMap_item</A></H2><H2>(IXML_NamedNodeMap* nnMap,<BR> unsigned long index )</H2><BLOCKQUOTE>Retrieves a <B>Node</B> from a <B>NamedNodeMap</B> specified by a numerical index.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Retrieves a <B>Node</B> from a <B>NamedNodeMap</B> specified by a
|
||||
numerical index.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>nnMap</B> - The <B>NamedNodeMap</B> from which to remove the
|
||||
<B>Node</B>.
|
||||
<BR><B>index</B> - The index into the map to remove. <BR><DT><B>Returns:</B><DD> [Node*] A pointer to the <B>Node</B>, if found, or <TT>NULL</TT> if
|
||||
it wasn't.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
26
docs/dist/html/ixml/ixmlNamedNodeMap_removeNamedItem.html
vendored
Normal file
26
docs/dist/html/ixml/ixmlNamedNodeMap_removeNamedItem.html
vendored
Normal file
@ -0,0 +1,26 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC IXML_Node* ixmlNamedNodeMap_removeNamedItem</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC IXML_Node* <A HREF="#DOC.DOCU">ixmlNamedNodeMap_removeNamedItem</A></H2><H2>(IXML_NamedNodeMap* nnMap,<BR> DOMString name )</H2><BLOCKQUOTE>Removes a <B>Node</B> from a <B>NamedNodeMap</B> specified by name.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Removes a <B>Node</B> from a <B>NamedNodeMap</B> specified by name.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>nnMap</B> - The <B>NamedNodeMap</B> from which to
|
||||
remove the item.
|
||||
<BR><B>name</B> - The name of the item to remove. <BR><DT><B>Returns:</B><DD> [Node*] A pointer to the <B>Node</B>, if found, or <TT>NULL</TT> if
|
||||
it wasn't.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
30
docs/dist/html/ixml/ixmlNamedNodeMap_removeNamedItemNS.html
vendored
Normal file
30
docs/dist/html/ixml/ixmlNamedNodeMap_removeNamedItemNS.html
vendored
Normal file
@ -0,0 +1,30 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC IXML_Node* ixmlNamedNodeMap_removeNamedItemNS</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC IXML_Node* <A HREF="#DOC.DOCU">ixmlNamedNodeMap_removeNamedItemNS</A></H2><H2>(IXML_NamedNodeMap* nnMap,<BR> DOMString namespaceURI,<BR> DOMString localName )</H2><BLOCKQUOTE>Removes a <B>Node</B> from a <B>NamedNodeMap</B> specified by namespace URI and local name.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Removes a <B>Node</B> from a <B>NamedNodeMap</B> specified by
|
||||
namespace URI and local name.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>nnMap</B> - The <B>NamedNodeMap</B> from which to
|
||||
remove the <B>Node</B>.
|
||||
<BR><B>namespaceURI</B> - The namespace URI of the <B>Node</B>
|
||||
to remove.
|
||||
<BR><B>localName</B> - The local name of the <B>Node</B> to
|
||||
remove. <BR><DT><B>Returns:</B><DD> [Node*] A pointer to the <B>Node</B>, if found, or <TT>NULL</TT> if
|
||||
it wasn't.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
29
docs/dist/html/ixml/ixmlNamedNodeMap_setNamedItem.html
vendored
Normal file
29
docs/dist/html/ixml/ixmlNamedNodeMap_setNamedItem.html
vendored
Normal file
@ -0,0 +1,29 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC IXML_Node* ixmlNamedNodeMap_setNamedItem</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC IXML_Node* <A HREF="#DOC.DOCU">ixmlNamedNodeMap_setNamedItem</A></H2><H2>(IXML_NamedNodeMap* nnMap,<BR> IXML_Node* arg )</H2><BLOCKQUOTE>Adds a new <B>Node</B> to the <B>NamedNodeMap</B> using the <B>Node</B> name attribute.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Adds a new <B>Node</B> to the <B>NamedNodeMap</B> using the <B>Node</B>
|
||||
name attribute.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>nnMap</B> - The <B>NamedNodeMap</B> in which to add the
|
||||
new <B>Node</B>.
|
||||
<BR><B>arg</B> - The new <B>Node</B> to add to the <B>
|
||||
NamedNodeMap</B>. <BR><DT><B>Returns:</B><DD> [Node*] The old <B>Node</B> if the new <B>Node</B> replaces it or
|
||||
<TT>NULL</TT> if the <B>Node</B> was not in the
|
||||
<B>NamedNodeMap</B> before.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
28
docs/dist/html/ixml/ixmlNamedNodeMap_setNamedItemNS.html
vendored
Normal file
28
docs/dist/html/ixml/ixmlNamedNodeMap_setNamedItemNS.html
vendored
Normal file
@ -0,0 +1,28 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC IXML_Node* ixmlNamedNodeMap_setNamedItemNS</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC IXML_Node* <A HREF="#DOC.DOCU">ixmlNamedNodeMap_setNamedItemNS</A></H2><H2>(IXML_NamedNodeMap* nnMap,<BR> IXML_Node* arg )</H2><BLOCKQUOTE>Adds a new <B>Node</B> to the <B>NamedNodeMap</B> using the <B>Node</B> local name and namespace URI attributes.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Adds a new <B>Node</B> to the <B>NamedNodeMap</B> using the <B>Node</B>
|
||||
local name and namespace URI attributes.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>nnMap</B> - The <B>NamedNodeMap</B> in which to add
|
||||
the <B>Node</B>.
|
||||
<BR><B>arg</B> - The <B>Node</B> to add to the map. <BR><DT><B>Returns:</B><DD> [Node*] The old <B>Node</B> if the new <B>Node</B> replaces it or
|
||||
<TT>NULL</TT> if the <B>Node</B> was not in the
|
||||
<B>NamedNodeMap</B> before.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
25
docs/dist/html/ixml/ixmlNodeList_free.html
vendored
Normal file
25
docs/dist/html/ixml/ixmlNodeList_free.html
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC void ixmlNodeList_free</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC void <A HREF="#DOC.DOCU">ixmlNodeList_free</A></H2><H2>(IXML_NodeList* nList )</H2><BLOCKQUOTE>Frees a <B>NodeList</B> object.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Frees a <B>NodeList</B> object. Since the underlying <B>Nodes</B> are
|
||||
references, they are not freed using this operating. This only
|
||||
frees the <B>NodeList</B> object.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>nList</B> - The <B>NodeList</B> to free. <BR><DT><B>Returns:</B><DD> [void] This function does not return a value.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
27
docs/dist/html/ixml/ixmlNodeList_item.html
vendored
Normal file
27
docs/dist/html/ixml/ixmlNodeList_item.html
vendored
Normal file
@ -0,0 +1,27 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC IXML_Node* ixmlNodeList_item</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC IXML_Node* <A HREF="#DOC.DOCU">ixmlNodeList_item</A></H2><H2>(IXML_NodeList* nList,<BR> unsigned long index )</H2><BLOCKQUOTE>Retrieves a <B>Node</B> from a <B>NodeList</B> specified by a numerical index.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Retrieves a <B>Node</B> from a <B>NodeList</B> specified by a
|
||||
numerical index.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>nList</B> - The <B>NodeList</B> from which to retrieve the <B>
|
||||
Node</B>.
|
||||
<BR><B>index</B> - The index into the <B>NodeList</B> to retrieve. <BR><DT><B>Returns:</B><DD> [Node*] A pointer to a <B>Node</B> or <TT>NULL</TT> if there was an
|
||||
error.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
24
docs/dist/html/ixml/ixmlNodeList_length.html
vendored
Normal file
24
docs/dist/html/ixml/ixmlNodeList_length.html
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC unsigned long ixmlNodeList_length</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC unsigned long <A HREF="#DOC.DOCU">ixmlNodeList_length</A></H2><H2>(IXML_NodeList* nList )</H2><BLOCKQUOTE>Returns the number of <B>Nodes</B> in a <B>NodeList</B>.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Returns the number of <B>Nodes</B> in a <B>NodeList</B>.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>nList</B> - The <B>NodeList</B> for which to retrieve the
|
||||
number of <B>Nodes</B>. <BR><DT><B>Returns:</B><DD> [unsigned long] The number of <B>Nodes</B> in the <B>NodeList</B>.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
36
docs/dist/html/ixml/ixmlNode_appendChild.html
vendored
Normal file
36
docs/dist/html/ixml/ixmlNode_appendChild.html
vendored
Normal file
@ -0,0 +1,36 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC int ixmlNode_appendChild</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC int <A HREF="#DOC.DOCU">ixmlNode_appendChild</A></H2><H2>(IXML_Node* nodeptr,<BR> IXML_Node* newChild )</H2><BLOCKQUOTE>Appends a child <B>Node</B> to the list of children of a <B>Node</B>.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Appends a child <B>Node</B> to the list of children of a <B>Node</B>. If
|
||||
<B>newChild</B> is already in the tree, it is removed first.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>nodeptr</B> - The <B>Node</B> in which to append the new child.
|
||||
<BR><B>newChild</B> - The new child to append. <BR><DT><B>Returns:</B><DD> [int] An integer representing one of the following:
|
||||
<UL>
|
||||
<LI> <TT>IXML_SUCCESS</TT>: The operation completed successfully.
|
||||
<LI> <TT>IXML_INVALID_PARAMETER</TT>: Either <B>nodeptr</B> or
|
||||
<B>newChild</B> is <TT>NULL</TT>.
|
||||
<LI> <TT>IXML_HIERARCHY_REQUEST_ERR</TT>: <B>newChild</B> is of a type
|
||||
that cannot be added as a child of <B>nodeptr</B> or
|
||||
<B>newChild</B> is an ancestor of <B>nodeptr</B>.
|
||||
<LI> <TT>IXML_WRONG_DOCUMENT_ERR</TT>: <B>newChild</B> was created from
|
||||
a different document than <B>nodeptr</B>.
|
||||
<LI> <TT>IXML_NO_MODIFICATION_ALLOWED_ERR</TT>: <B>nodeptr</B> is a
|
||||
read-only <B>Node</B>.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
28
docs/dist/html/ixml/ixmlNode_cloneNode.html
vendored
Normal file
28
docs/dist/html/ixml/ixmlNode_cloneNode.html
vendored
Normal file
@ -0,0 +1,28 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC IXML_Node* ixmlNode_cloneNode</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC IXML_Node* <A HREF="#DOC.DOCU">ixmlNode_cloneNode</A></H2><H2>(IXML_Node* nodeptr,<BR> <!1><A HREF="index.html#DOC.1.3">BOOL</A> deep )</H2><BLOCKQUOTE>Clones a <B>Node</B>.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Clones a <B>Node</B>. The new <B>Node</B> does not have a parent. The
|
||||
<B>deep</B> parameter controls whether the subtree of the <B>Node</B> is
|
||||
also cloned. For details on cloning specific types of <B>Node</B>s,
|
||||
refer to the DOM2-Core recommendation.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>nodeptr</B> - The <B>Node</B> to clone.
|
||||
<BR><B>deep</B> - <TT>TRUE</TT> to clone the subtree also or <TT>FALSE</TT>
|
||||
to clone only <B>nodeptr</B>. <BR><DT><B>Returns:</B><DD> [Node*] A clone of <B>nodeptr</B> or <TT>NULL</TT>.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
23
docs/dist/html/ixml/ixmlNode_free.html
vendored
Normal file
23
docs/dist/html/ixml/ixmlNode_free.html
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC void ixmlNode_free</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC void <A HREF="#DOC.DOCU">ixmlNode_free</A></H2><H2>(IXML_Node* IXML_Node )</H2><BLOCKQUOTE>Frees a <B>Node</B> and all <B>Node</B>s in its subtree.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Frees a <B>Node</B> and all <B>Node</B>s in its subtree.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>IXML_Node</B> - The <B>Node</B> to free. <BR><DT><B>Returns:</B><DD> [void] This function does not return a value.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
26
docs/dist/html/ixml/ixmlNode_getAttributes.html
vendored
Normal file
26
docs/dist/html/ixml/ixmlNode_getAttributes.html
vendored
Normal file
@ -0,0 +1,26 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC IXML_NamedNodeMap* ixmlNode_getAttributes</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC IXML_NamedNodeMap* <A HREF="#DOC.DOCU">ixmlNode_getAttributes</A></H2><H2>(IXML_Node* nodeptr )</H2><BLOCKQUOTE>Retrieves the attributes of a <B>Node</B>, if it is an <B>Element</B> node, in a <B>NamedNodeMap</B> structure.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Retrieves the attributes of a <B>Node</B>, if it is an <B>Element</B> node,
|
||||
in a <B>NamedNodeMap</B> structure.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>nodeptr</B> - The <B>Node</B> from which to retrieve the
|
||||
attributes. <BR><DT><B>Returns:</B><DD> [NamedNodeMap*] A <B>NamedNodeMap</B> of the attributes or
|
||||
<TT>NULL</TT>.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
26
docs/dist/html/ixml/ixmlNode_getChildNodes.html
vendored
Normal file
26
docs/dist/html/ixml/ixmlNode_getChildNodes.html
vendored
Normal file
@ -0,0 +1,26 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC IXML_NodeList* ixmlNode_getChildNodes</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC IXML_NodeList* <A HREF="#DOC.DOCU">ixmlNode_getChildNodes</A></H2><H2>(IXML_Node* nodeptr )</H2><BLOCKQUOTE>Retrieves the list of children of a <B>Node</B> in a <B>NodeList</B> structure.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Retrieves the list of children of a <B>Node</B> in a <B>NodeList</B>
|
||||
structure. If a <B>Node</B> has no children, <B>ixmlNode_getChildNodes</B>
|
||||
returns a <B>NodeList</B> structure that contains no <B>Node</B>s.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>nodeptr</B> - The <B>Node</B> from which to retrieve the
|
||||
children. <BR><DT><B>Returns:</B><DD> [NodeList*] A <B>NodeList</B> of the children of the <B>Node</B>.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
25
docs/dist/html/ixml/ixmlNode_getFirstChild.html
vendored
Normal file
25
docs/dist/html/ixml/ixmlNode_getFirstChild.html
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC IXML_Node* ixmlNode_getFirstChild</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC IXML_Node* <A HREF="#DOC.DOCU">ixmlNode_getFirstChild</A></H2><H2>(IXML_Node* nodeptr )</H2><BLOCKQUOTE>Retrieves the first child <B>Node</B> of a <B>Node</B>.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Retrieves the first child <B>Node</B> of a <B>Node</B>.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>nodeptr</B> - The <B>Node</B> from which to retrieve the first
|
||||
child. <BR><DT><B>Returns:</B><DD> [Node*] A pointer to the first child <B>Node</B> or <TT>NULL</TT>
|
||||
if the <B>Node</B> does not have any children.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
25
docs/dist/html/ixml/ixmlNode_getLastChild.html
vendored
Normal file
25
docs/dist/html/ixml/ixmlNode_getLastChild.html
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC IXML_Node* ixmlNode_getLastChild</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC IXML_Node* <A HREF="#DOC.DOCU">ixmlNode_getLastChild</A></H2><H2>(IXML_Node* nodeptr )</H2><BLOCKQUOTE>Retrieves the last child <B>Node</B> of a <B>Node</B>.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Retrieves the last child <B>Node</B> of a <B>Node</B>.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>nodeptr</B> - The <B>Node</B> from which to retrieve the last
|
||||
child. <BR><DT><B>Returns:</B><DD> [Node*] A pointer to the last child <B>Node</B> or <TT>NULL</TT> if
|
||||
the <B>Node</B> does not have any children.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
29
docs/dist/html/ixml/ixmlNode_getLocalName.html
vendored
Normal file
29
docs/dist/html/ixml/ixmlNode_getLocalName.html
vendored
Normal file
@ -0,0 +1,29 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC const DOMString ixmlNode_getLocalName</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC const DOMString <A HREF="#DOC.DOCU">ixmlNode_getLocalName</A></H2><H2>(IXML_Node* nodeptr )</H2><BLOCKQUOTE>Retrieves the local name of a <B>Node</B>, if present.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Retrieves the local name of a <B>Node</B>, if present. The local name is
|
||||
the tag name without the namespace prefix. Only <B>Node</B>s of type
|
||||
<TT>eELEMENT_NODE</TT> or <TT>eATTRIBUTE_NODE</TT> can have a local name.
|
||||
{\Bf Node}s created through the <B>Document</B> interface will only
|
||||
contain a local name if created using <B>ixmlDocument_createElementNS</B>.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>nodeptr</B> - The <B>Node</B> from which to retrieve the local
|
||||
name. <BR><DT><B>Returns:</B><DD> [const DOMString] A <B>DOMString</B> representing the local name
|
||||
of the <B>Element</B> or <TT>NULL</TT>.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
29
docs/dist/html/ixml/ixmlNode_getNamespaceURI.html
vendored
Normal file
29
docs/dist/html/ixml/ixmlNode_getNamespaceURI.html
vendored
Normal file
@ -0,0 +1,29 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC const DOMString ixmlNode_getNamespaceURI</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC const DOMString <A HREF="#DOC.DOCU">ixmlNode_getNamespaceURI</A></H2><H2>(IXML_Node* nodeptr )</H2><BLOCKQUOTE>Retrieves the namespace URI for a <B>Node</B> as a <B>DOMString</B>.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Retrieves the namespace URI for a <B>Node</B> as a <B>DOMString</B>. Only
|
||||
<B>Node</B>s of type <TT>eELEMENT_NODE</TT> or <TT>eATTRIBUTE_NODE</TT> can
|
||||
have a namespace URI. <B>Node</B>s created through the <B>Document</B>
|
||||
interface will only contain a namespace if created using
|
||||
<B>ixmlDocument_createElementNS</B>.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>nodeptr</B> - The <B>Node</B> for which to retrieve the
|
||||
namespace. <BR><DT><B>Returns:</B><DD> [const DOMString] A <B>DOMString</B> representing the URI of the
|
||||
namespace or <TT>NULL</TT>.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
25
docs/dist/html/ixml/ixmlNode_getNextSibling.html
vendored
Normal file
25
docs/dist/html/ixml/ixmlNode_getNextSibling.html
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC IXML_Node* ixmlNode_getNextSibling</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC IXML_Node* <A HREF="#DOC.DOCU">ixmlNode_getNextSibling</A></H2><H2>(IXML_Node* nodeptr )</H2><BLOCKQUOTE>Retrieves the sibling <B>Node</B> immediately following this <B>Node</B>.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Retrieves the sibling <B>Node</B> immediately following this <B>Node</B>.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>nodeptr</B> - The <B>Node</B> from which to retrieve the next
|
||||
sibling. <BR><DT><B>Returns:</B><DD> [Node*] A pointer to the next sibling <B>Node</B> or <TT>NULL</TT>
|
||||
if no such <B>Node</B> exists.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
25
docs/dist/html/ixml/ixmlNode_getNodeName.html
vendored
Normal file
25
docs/dist/html/ixml/ixmlNode_getNodeName.html
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC const DOMString ixmlNode_getNodeName</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC const DOMString <A HREF="#DOC.DOCU">ixmlNode_getNodeName</A></H2><H2>(IXML_Node* nodeptr )</H2><BLOCKQUOTE>Returns the name of the <B>Node</B>, depending on what type of <B>Node</B> it is, in a read-only string.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Returns the name of the <B>Node</B>, depending on what type of
|
||||
<B>Node</B> it is, in a read-only string. Refer to the table in the
|
||||
DOM2-Core for a description of the node names for various interfaces.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>nodeptr</B> - Pointer to the node to retrieve the name. <BR><DT><B>Returns:</B><DD> [const DOMString] A constant <B>DOMString</B> of the node name.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
39
docs/dist/html/ixml/ixmlNode_getNodeType.html
vendored
Normal file
39
docs/dist/html/ixml/ixmlNode_getNodeType.html
vendored
Normal file
@ -0,0 +1,39 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC unsigned short ixmlNode_getNodeType</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC unsigned short <A HREF="#DOC.DOCU">ixmlNode_getNodeType</A></H2><H2>(IXML_Node* nodeptr )</H2><BLOCKQUOTE>Retrieves the type of a <B>Node</B>.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Retrieves the type of a <B>Node</B>. The defined <B>Node</B> constants
|
||||
are:
|
||||
<UL>
|
||||
<LI> <TT>eATTRIBUTE_NODE</TT>
|
||||
<LI> <TT>eCDATA_SECTION_NODE</TT>
|
||||
<LI> <TT>eCOMMENT_NODE</TT>
|
||||
<LI> <TT>eDOCUMENT_FRAGMENT_NODE</TT>
|
||||
<LI> <TT>eDOCUMENT_NODE</TT>
|
||||
<LI> <TT>eDOCUMENT_TYPE_NODE</TT>
|
||||
<LI> <TT>eELEMENT_NODE</TT>
|
||||
<LI> <TT>eENTITY_NODE</TT>
|
||||
<LI> <TT>eENTITY_REFERENCE_NODE</TT>
|
||||
<LI> <TT>eNOTATION_NODE</TT>
|
||||
<LI> <TT>ePROCESSING_INSTRUCTION_NODE</TT>
|
||||
<LI> <TT>eTEXT_NODE</TT>
|
||||
</UL>
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>nodeptr</B> - The <B>Node</B> from which to retrieve the type. <BR><DT><B>Returns:</B><DD> [const unsigned short] An integer representing the type of the
|
||||
<B>Node</B>.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
24
docs/dist/html/ixml/ixmlNode_getNodeValue.html
vendored
Normal file
24
docs/dist/html/ixml/ixmlNode_getNodeValue.html
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC DOMString ixmlNode_getNodeValue</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC DOMString <A HREF="#DOC.DOCU">ixmlNode_getNodeValue</A></H2><H2>(IXML_Node* nodeptr )</H2><BLOCKQUOTE>Returns the value of the <B>Node</B> as a string.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Returns the value of the <B>Node</B> as a string. Note that this string
|
||||
is not a copy and modifying it will modify the value of the <B>Node</B>.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>nodeptr</B> - Pointer to the <B>Node</B> to retrieve the value. <BR><DT><B>Returns:</B><DD> [DOMString] A <B>DOMString</B> of the <B>Node</B> value.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
28
docs/dist/html/ixml/ixmlNode_getOwnerDocument.html
vendored
Normal file
28
docs/dist/html/ixml/ixmlNode_getOwnerDocument.html
vendored
Normal file
@ -0,0 +1,28 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC IXML_Document* ixmlNode_getOwnerDocument</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC IXML_Document* <A HREF="#DOC.DOCU">ixmlNode_getOwnerDocument</A></H2><H2>(IXML_Node* nodeptr )</H2><BLOCKQUOTE>Retrieves the document object associated with this <B>Node</B>.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Retrieves the document object associated with this <B>Node</B>. This
|
||||
owner document <B>Node</B> allows other <B>Node</B>s to be created in the
|
||||
context of this document. Note that <B>Document</B> nodes do not have
|
||||
an owner document.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>nodeptr</B> - The <B>Node</B> from which to retrieve the
|
||||
owner document. <BR><DT><B>Returns:</B><DD> [Document*] A pointer to the owning <B>Document</B> or
|
||||
<TT>NULL</TT>, if the <B>Node</B> does not have an owner.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
25
docs/dist/html/ixml/ixmlNode_getParentNode.html
vendored
Normal file
25
docs/dist/html/ixml/ixmlNode_getParentNode.html
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
||||
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<TITLE>EXPORT_SPEC IXML_Node* ixmlNode_getParentNode</TITLE>
|
||||
<META NAME="GENERATOR" CONTENT="DOC++ 3.4.10">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffff">
|
||||
|
||||
<H2>EXPORT_SPEC IXML_Node* <A HREF="#DOC.DOCU">ixmlNode_getParentNode</A></H2><H2>(IXML_Node* nodeptr )</H2><BLOCKQUOTE>Retrieves the parent <B>Node</B> for a <B>Node</B>.</BLOCKQUOTE>
|
||||
|
||||
<A NAME="DOC.DOCU"></A>
|
||||
<HR>
|
||||
<H2>Documentation</H2>
|
||||
<BLOCKQUOTE>Retrieves the parent <B>Node</B> for a <B>Node</B>.
|
||||
|
||||
<P></BLOCKQUOTE>
|
||||
<DL><DT><DT><B>Parameters:</B><DD><B>nodeptr</B> - The <B>Node</B> from which to retrieve the
|
||||
parent. <BR><DT><B>Returns:</B><DD> [Node*] A pointer to the parent <B>Node</B> or <TT>NULL</TT> if the
|
||||
<B>Node</B> has no parent.
|
||||
<BR><DD></DL><P><P><I><A HREF="index.html">Alphabetic index</A></I></P><HR>
|
||||
<BR>
|
||||
This page was generated with the help of <A HREF="http://docpp.sourceforge.net">DOC++</A>.
|
||||
</BODY>
|
||||
</HTML>
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user