gsf 3.2.5-x86-mingw32 → 3.2.6-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Rakefile +3 -1
- data/vendor/local/bin/gsf-office-thumbnailer.exe +0 -0
- data/vendor/local/bin/gsf-vba-dump.exe +0 -0
- data/vendor/local/bin/gsf.exe +0 -0
- data/vendor/local/bin/libgsf-1-114.dll +0 -0
- data/vendor/local/bin/libgsf-win32-1-114.dll +0 -0
- data/vendor/local/include/libgsf-1/gsf/gsf-input-impl.h +6 -1
- data/vendor/local/lib/libgsf-1.a +0 -0
- data/vendor/local/lib/libgsf-1.dll.a +0 -0
- data/vendor/local/lib/libgsf-1.la +2 -2
- data/vendor/local/lib/libgsf-win32-1.a +0 -0
- data/vendor/local/lib/libgsf-win32-1.dll.a +0 -0
- data/vendor/local/lib/libgsf-win32-1.la +2 -2
- data/vendor/local/lib/pkgconfig/libgsf-1.pc +1 -1
- data/vendor/local/lib/pkgconfig/libgsf-win32-1.pc +1 -1
- data/vendor/local/share/gtk-doc/html/gsf/annotation-glossary.html +15 -1
- data/vendor/local/share/gtk-doc/html/gsf/gsf-Infile-reading-structed-files.html +3 -3
- data/vendor/local/share/gtk-doc/html/gsf/gsf-Input-from-unstructured-files.html +12 -36
- data/vendor/local/share/gtk-doc/html/gsf/gsf-Outfile-writing-structed-files.html +1 -0
- data/vendor/local/share/gtk-doc/html/gsf/gsf-Output-to-unstructured-files.html +11 -5
- data/vendor/local/share/gtk-doc/html/gsf/gsf-Text.html +4 -3
- data/vendor/local/share/gtk-doc/html/gsf/gsf-XML-and-libxml.html +29 -27
- data/vendor/local/share/gtk-doc/html/gsf/gsf-index.html +398 -398
- data/vendor/local/share/gtk-doc/html/gsf/gsf-memory.html +10 -8
- data/vendor/local/share/gtk-doc/html/gsf/gsf-metadata.html +24 -17
- data/vendor/local/share/gtk-doc/html/gsf/gsf-utils.html +46 -33
- data/vendor/local/share/locale/eo/LC_MESSAGES/libgsf.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/libgsf.mo +0 -0
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e2824b515174e32d79041a951d9b0c3d2df02ffcd19f97fc9133ab48e4b1c0db
|
4
|
+
data.tar.gz: 343885c21b8fb1fea143112b0f7565ffa41e1f475d757b5425446e9961f248f7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b65ef4316ec9aa77ac99a013a612d836fd3dbaa42b2475736992889d28359a4f54dee60d029521a2fbc95023cc4cf546e73a379a3e1caede4fb2b2d2cae855fa
|
7
|
+
data.tar.gz: bc3be180e3ebfafacdfd42eb7d402930778ae6f3494e1db3217ce8b7cd0325d47f34ab52955735a16cd84f9fb808cebbf24c3b0ae9ad6e977c33733ef96b796a
|
data/Rakefile
CHANGED
@@ -29,6 +29,7 @@ package_task = GNOME2::Rake::PackageTask.new do |package|
|
|
29
29
|
"glib2",
|
30
30
|
"gio2",
|
31
31
|
"cairo-gobject",
|
32
|
+
"gdk_pixbuf2",
|
32
33
|
"gobject-introspection",
|
33
34
|
]
|
34
35
|
package.windows.gobject_introspection_dependencies = [
|
@@ -40,12 +41,13 @@ package_task = GNOME2::Rake::PackageTask.new do |package|
|
|
40
41
|
:name => "libgsf",
|
41
42
|
:download_site => :gnome,
|
42
43
|
:label => "GSF",
|
43
|
-
:version => "1.14.
|
44
|
+
:version => "1.14.43",
|
44
45
|
:compression_method => "xz",
|
45
46
|
:windows => {
|
46
47
|
:configure_args => [
|
47
48
|
],
|
48
49
|
:patches => [
|
50
|
+
"0001-Include-sys-stat.h-instead-of-struct-stat-forward-de.patch",
|
49
51
|
],
|
50
52
|
:built_file => "bin/libgsf-win32-1-114.dll",
|
51
53
|
},
|
Binary file
|
Binary file
|
data/vendor/local/bin/gsf.exe
CHANGED
Binary file
|
Binary file
|
Binary file
|
@@ -22,6 +22,8 @@
|
|
22
22
|
#ifndef GSF_INPUT_IMPL_H
|
23
23
|
#define GSF_INPUT_IMPL_H
|
24
24
|
|
25
|
+
#include <sys/stat.h>
|
26
|
+
|
25
27
|
#include <gsf/gsf-fwd.h>
|
26
28
|
|
27
29
|
G_BEGIN_DECLS
|
@@ -43,7 +45,7 @@ typedef struct {
|
|
43
45
|
gboolean (*Seek) (GsfInput *input, gsf_off_t offset,
|
44
46
|
GSeekType whence);
|
45
47
|
GsfInput *(*OpenSibling) (GsfInput const *input,
|
46
|
-
char const *
|
48
|
+
char const *name, GError **err);
|
47
49
|
|
48
50
|
/* Padding for future expansion */
|
49
51
|
void (*_gsf_reserved0) (void);
|
@@ -63,6 +65,9 @@ gboolean gsf_input_set_size (GsfInput *input, gsf_off_t size);
|
|
63
65
|
gboolean gsf_input_set_modtime (GsfInput *input, GDateTime *modtime);
|
64
66
|
gboolean gsf_input_seek_emulate (GsfInput *input, gsf_off_t pos);
|
65
67
|
|
68
|
+
gboolean gsf_input_set_modtime_from_stat (GsfInput *input,
|
69
|
+
const struct stat *st);
|
70
|
+
|
66
71
|
G_END_DECLS
|
67
72
|
|
68
73
|
#endif /* GSF_INPUT_IMPL_H */
|
data/vendor/local/lib/libgsf-1.a
CHANGED
Binary file
|
Binary file
|
@@ -17,7 +17,7 @@ old_library='libgsf-1.a'
|
|
17
17
|
inherited_linker_flags=' -pthread'
|
18
18
|
|
19
19
|
# Libraries that this one depends upon.
|
20
|
-
dependency_libs=' -R/home/vagrant/ruby-gnome2/glib2/vendor/local/lib -L/home/vagrant/ruby-gnome2/glib2/vendor/local/lib -L/home/vagrant/rcairo/vendor/local/lib -L/home/vagrant/ruby-gnome2/gsf/vendor/local/lib /home/vagrant/ruby-gnome2/glib2/vendor/local/lib/libgio-2.0.la -L/home/vagrant/ruby-gnome2/glib2/vendor/local/lib/../lib /home/vagrant/ruby-gnome2/glib2/vendor/local/lib/libgmodule-2.0.la -ldnsapi -liphlpapi /home/vagrant/ruby-gnome2/glib2/vendor/local/lib/libgobject-2.0.la /home/vagrant/ruby-gnome2/glib2/vendor/local/lib/../lib/libffi.la /home/vagrant/ruby-gnome2/glib2/vendor/local/lib/libglib-2.0.la -lole32 -lwinmm -lshlwapi /home/vagrant/ruby-gnome2/glib2/vendor/local/lib/libpcre.la /home/vagrant/ruby-gnome2/glib2/vendor/local/lib/libintl.la /home/vagrant/ruby-gnome2/glib2/vendor/local/lib/libiconv.la /home/vagrant/rcairo/vendor/local/lib/libxml2.la -lws2_32 -lz'
|
20
|
+
dependency_libs=' -R/home/vagrant/ruby-gnome2/glib2/vendor/local/lib -L/home/vagrant/ruby-gnome2/glib2/vendor/local/lib -L/home/vagrant/rcairo/vendor/local/lib -L/home/vagrant/ruby-gnome2/gsf/vendor/local/lib /home/vagrant/ruby-gnome2/glib2/vendor/local/lib/libgio-2.0.la -L/home/vagrant/ruby-gnome2/rcairo/vendor/local/lib -L/home/vagrant/ruby-gnome2/glib2/vendor/local/lib/../lib /home/vagrant/ruby-gnome2/glib2/vendor/local/lib/libgmodule-2.0.la -ldnsapi -liphlpapi /home/vagrant/ruby-gnome2/glib2/vendor/local/lib/libgobject-2.0.la /home/vagrant/ruby-gnome2/glib2/vendor/local/lib/../lib/libffi.la /home/vagrant/ruby-gnome2/glib2/vendor/local/lib/libglib-2.0.la -lole32 -lwinmm -lshlwapi /home/vagrant/ruby-gnome2/glib2/vendor/local/lib/libpcre.la /home/vagrant/ruby-gnome2/glib2/vendor/local/lib/libintl.la /home/vagrant/ruby-gnome2/glib2/vendor/local/lib/libiconv.la /home/vagrant/rcairo/vendor/local/lib/libxml2.la -lws2_32 -lz'
|
21
21
|
|
22
22
|
# Names of additional weak libraries provided by this library
|
23
23
|
weak_library_names=''
|
@@ -25,7 +25,7 @@ weak_library_names=''
|
|
25
25
|
# Version information for libgsf-1.
|
26
26
|
current=114
|
27
27
|
age=0
|
28
|
-
revision=
|
28
|
+
revision=43
|
29
29
|
|
30
30
|
# Is this an already installed library?
|
31
31
|
installed=yes
|
Binary file
|
Binary file
|
@@ -17,7 +17,7 @@ old_library='libgsf-win32-1.a'
|
|
17
17
|
inherited_linker_flags=' -pthread'
|
18
18
|
|
19
19
|
# Libraries that this one depends upon.
|
20
|
-
dependency_libs=' -R/home/vagrant/ruby-gnome2/glib2/vendor/local/lib -L/home/vagrant/ruby-gnome2/glib2/vendor/local/lib -L/home/vagrant/rcairo/vendor/local/lib -L/home/vagrant/ruby-gnome2/gsf/vendor/local/lib -L/home/vagrant/ruby-gnome2/glib2/vendor/local/lib/../lib /home/vagrant/ruby-gnome2/gsf/vendor/local/lib/libgsf-1.la /home/vagrant/ruby-gnome2/glib2/vendor/local/lib/libgio-2.0.la /home/vagrant/ruby-gnome2/glib2/vendor/local/lib/libgmodule-2.0.la -ldnsapi -liphlpapi /home/vagrant/ruby-gnome2/glib2/vendor/local/lib/libgobject-2.0.la /home/vagrant/ruby-gnome2/glib2/vendor/local/lib/../lib/libffi.la /home/vagrant/ruby-gnome2/glib2/vendor/local/lib/libglib-2.0.la -lole32 -lwinmm -lshlwapi /home/vagrant/ruby-gnome2/glib2/vendor/local/lib/libpcre.la /home/vagrant/ruby-gnome2/glib2/vendor/local/lib/libintl.la /home/vagrant/ruby-gnome2/glib2/vendor/local/lib/libiconv.la /home/vagrant/rcairo/vendor/local/lib/libxml2.la -lws2_32 -lz'
|
20
|
+
dependency_libs=' -R/home/vagrant/ruby-gnome2/glib2/vendor/local/lib -L/home/vagrant/ruby-gnome2/glib2/vendor/local/lib -L/home/vagrant/rcairo/vendor/local/lib -L/home/vagrant/ruby-gnome2/gsf/vendor/local/lib -L/home/vagrant/ruby-gnome2/rcairo/vendor/local/lib -L/home/vagrant/ruby-gnome2/glib2/vendor/local/lib/../lib /home/vagrant/ruby-gnome2/gsf/vendor/local/lib/libgsf-1.la /home/vagrant/ruby-gnome2/glib2/vendor/local/lib/libgio-2.0.la /home/vagrant/ruby-gnome2/glib2/vendor/local/lib/libgmodule-2.0.la -ldnsapi -liphlpapi /home/vagrant/ruby-gnome2/glib2/vendor/local/lib/libgobject-2.0.la /home/vagrant/ruby-gnome2/glib2/vendor/local/lib/../lib/libffi.la /home/vagrant/ruby-gnome2/glib2/vendor/local/lib/libglib-2.0.la -lole32 -lwinmm -lshlwapi /home/vagrant/ruby-gnome2/glib2/vendor/local/lib/libpcre.la /home/vagrant/ruby-gnome2/glib2/vendor/local/lib/libintl.la /home/vagrant/ruby-gnome2/glib2/vendor/local/lib/libiconv.la /home/vagrant/rcairo/vendor/local/lib/libxml2.la -lws2_32 -lz'
|
21
21
|
|
22
22
|
# Names of additional weak libraries provided by this library
|
23
23
|
weak_library_names=''
|
@@ -25,7 +25,7 @@ weak_library_names=''
|
|
25
25
|
# Version information for libgsf-win32-1.
|
26
26
|
current=114
|
27
27
|
age=0
|
28
|
-
revision=
|
28
|
+
revision=43
|
29
29
|
|
30
30
|
# Is this an already installed library?
|
31
31
|
installed=yes
|
@@ -5,7 +5,7 @@ includedir=${prefix}/include
|
|
5
5
|
|
6
6
|
Name: libgsf-1
|
7
7
|
Description: A library for reading and writing structured files (eg MS OLE and Zip)
|
8
|
-
Version: 1.14.
|
8
|
+
Version: 1.14.43
|
9
9
|
Requires: glib-2.0 gobject-2.0 libxml-2.0
|
10
10
|
Libs: -L${libdir} -lgsf-1
|
11
11
|
Cflags: -I${includedir}/libgsf-1
|
@@ -18,9 +18,13 @@
|
|
18
18
|
<span class="dim">|</span>
|
19
19
|
<a class="shortcut" href="#glsI">I</a>
|
20
20
|
<span class="dim">|</span>
|
21
|
+
<a class="shortcut" href="#glsN">N</a>
|
22
|
+
<span class="dim">|</span>
|
21
23
|
<a class="shortcut" href="#glsS">S</a>
|
22
24
|
<span class="dim">|</span>
|
23
|
-
<a class="shortcut" href="#glsT">T</a
|
25
|
+
<a class="shortcut" href="#glsT">T</a>
|
26
|
+
<span class="dim">|</span>
|
27
|
+
<a class="shortcut" href="#glsV">V</a></span></td>
|
24
28
|
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
25
29
|
<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
|
26
30
|
<td><a accesskey="p" href="gsf-index.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
@@ -40,6 +44,11 @@
|
|
40
44
|
<a name="glsI"></a><h3 class="title">I</h3>
|
41
45
|
<dt><span class="glossterm"><a name="annotation-glossterm-in"></a>in</span></dt>
|
42
46
|
<dd class="glossdef"><p>Parameter for input. Default is <acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>.</p></dd>
|
47
|
+
<dt><span class="glossterm"><a name="annotation-glossterm-inout"></a>inout</span></dt>
|
48
|
+
<dd class="glossdef"><p>Parameter for input and for returning results. Default is <acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>.</p></dd>
|
49
|
+
<a name="glsN"></a><h3 class="title">N</h3>
|
50
|
+
<dt><span class="glossterm"><a name="annotation-glossterm-nullable"></a>nullable</span></dt>
|
51
|
+
<dd class="glossdef"><p>NULL may be passed as the value in, out, in-out; or as a return value.</p></dd>
|
43
52
|
<a name="glsS"></a><h3 class="title">S</h3>
|
44
53
|
<dt><span class="glossterm"><a name="annotation-glossterm-scope%20call"></a>scope call</span></dt>
|
45
54
|
<dd class="glossdef"><p>The callback is valid only during the call to the method.</p></dd>
|
@@ -50,6 +59,11 @@
|
|
50
59
|
<dd class="glossdef"><p>Free data after the code is done.</p></dd>
|
51
60
|
<dt><span class="glossterm"><a name="annotation-glossterm-transfer%20none"></a>transfer none</span></dt>
|
52
61
|
<dd class="glossdef"><p>Don't free data after the code is done.</p></dd>
|
62
|
+
<dt><span class="glossterm"><a name="annotation-glossterm-type"></a>type</span></dt>
|
63
|
+
<dd class="glossdef"><p>Override the parsed C type with given type.</p></dd>
|
64
|
+
<a name="glsV"></a><h3 class="title">V</h3>
|
65
|
+
<dt><span class="glossterm"><a name="annotation-glossterm-virtual"></a>virtual</span></dt>
|
66
|
+
<dd class="glossdef"><p>This is the invoker for a virtual method.</p></dd>
|
53
67
|
</div>
|
54
68
|
<div class="footer">
|
55
69
|
<hr>Generated by GTK-Doc V1.25</div>
|
@@ -294,8 +294,8 @@ words, this function finds the "foo/bar/baz" child.</p>
|
|
294
294
|
</tr>
|
295
295
|
<tr>
|
296
296
|
<td class="parameter_name"><p>names</p></td>
|
297
|
-
<td class="parameter_description"><p>A <code class="literal">NULL</code> terminated array of names (e.g. from g_strsplit)</p></td>
|
298
|
-
<td class="parameter_annotations">
|
297
|
+
<td class="parameter_description"><p> A <code class="literal">NULL</code> terminated array of names (e.g. from g_strsplit). </p></td>
|
298
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> zero-terminated=1]</span></td>
|
299
299
|
</tr>
|
300
300
|
</tbody>
|
301
301
|
</table></div>
|
@@ -375,7 +375,7 @@ gsf_infile_name_by_index (<em class="parameter"><code><a class="link" href="gsf-
|
|
375
375
|
<a name="gsf-infile-name-by-index.returns"></a><h4>Returns</h4>
|
376
376
|
<p> the utf8 encoded name of the <em class="parameter"><code>i</code></em>
|
377
377
|
-th child. </p>
|
378
|
-
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
|
378
|
+
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="NULL may be passed as the value in, out, in-out; or as a return value."><span class="acronym">nullable</span></acronym>]</span></p>
|
379
379
|
</div>
|
380
380
|
</div>
|
381
381
|
</div>
|
@@ -300,16 +300,17 @@ the buffer associated with previous calls to gsf_input_read.</p>
|
|
300
300
|
</tr>
|
301
301
|
<tr>
|
302
302
|
<td class="parameter_name"><p>optional_buffer</p></td>
|
303
|
-
<td class="parameter_description"><p>Pointer to destination memory area</p></td>
|
304
|
-
<td class="parameter_annotations">
|
303
|
+
<td class="parameter_description"><p> Pointer to destination memory area. </p></td>
|
304
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym>][<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
305
305
|
</tr>
|
306
306
|
</tbody>
|
307
307
|
</table></div>
|
308
308
|
</div>
|
309
309
|
<div class="refsect3">
|
310
310
|
<a name="gsf-input-read.returns"></a><h4>Returns</h4>
|
311
|
-
<p> pointer to the buffer or <code class="literal">NULL</code> if there is
|
312
|
-
bytes are requested
|
311
|
+
<p> pointer to the buffer or <code class="literal">NULL</code> if there is
|
312
|
+
an error or 0 bytes are requested. </p>
|
313
|
+
<p><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym>][<acronym title="NULL may be passed as the value in, out, in-out; or as a return value."><span class="acronym">nullable</span></acronym>]</span></p>
|
313
314
|
</div>
|
314
315
|
</div>
|
315
316
|
<hr>
|
@@ -345,6 +346,7 @@ gsf_input_seek (<em class="parameter"><code><a class="link" href="gsf-Input-from
|
|
345
346
|
<em class="parameter"><code><a class="link" href="gsf-utils.html#gsf-off-t" title="gsf_off_t"><span class="type">gsf_off_t</span></a> offset</code></em>,
|
346
347
|
<em class="parameter"><code><span class="type">GSeekType</span> whence</code></em>);</pre>
|
347
348
|
<p>Move the current location in the input stream.</p>
|
349
|
+
<p><span class="annotation">[<acronym title="This is the invoker for a virtual method."><span class="acronym">virtual</span></acronym> Seek]</span></p>
|
348
350
|
<div class="refsect3">
|
349
351
|
<a name="gsf-input-seek.parameters"></a><h4>Parameters</h4>
|
350
352
|
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
@@ -401,8 +403,8 @@ gsf_input_container (<em class="parameter"><code><a class="link" href="gsf-Input
|
|
401
403
|
<div class="refsect3">
|
402
404
|
<a name="gsf-input-container.returns"></a><h4>Returns</h4>
|
403
405
|
<p> <em class="parameter"><code>input</code></em>
|
404
|
-
's container
|
405
|
-
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
|
406
|
+
's container. </p>
|
407
|
+
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="NULL may be passed as the value in, out, in-out; or as a return value."><span class="acronym">nullable</span></acronym>]</span></p>
|
406
408
|
</div>
|
407
409
|
</div>
|
408
410
|
<hr>
|
@@ -411,35 +413,8 @@ gsf_input_container (<em class="parameter"><code><a class="link" href="gsf-Input
|
|
411
413
|
<pre class="programlisting"><a class="link" href="gsf-Input-from-unstructured-files.html#GsfInput"><span class="returnvalue">GsfInput</span></a> *
|
412
414
|
gsf_input_dup (<em class="parameter"><code><a class="link" href="gsf-Input-from-unstructured-files.html#GsfInput"><span class="type">GsfInput</span></a> *input</code></em>,
|
413
415
|
<em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
|
414
|
-
<p>
|
415
|
-
|
416
|
-
<div class="refsect3">
|
417
|
-
<a name="gsf-input-dup.parameters"></a><h4>Parameters</h4>
|
418
|
-
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
419
|
-
<colgroup>
|
420
|
-
<col width="150px" class="parameters_name">
|
421
|
-
<col class="parameters_description">
|
422
|
-
<col width="200px" class="parameters_annotations">
|
423
|
-
</colgroup>
|
424
|
-
<tbody>
|
425
|
-
<tr>
|
426
|
-
<td class="parameter_name"><p>input</p></td>
|
427
|
-
<td class="parameter_description"><p>The input to duplicate</p></td>
|
428
|
-
<td class="parameter_annotations"> </td>
|
429
|
-
</tr>
|
430
|
-
<tr>
|
431
|
-
<td class="parameter_name"><p>err</p></td>
|
432
|
-
<td class="parameter_description"><p> place to store a <span class="type">GError</span> if anything goes wrong. </p></td>
|
433
|
-
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
434
|
-
</tr>
|
435
|
-
</tbody>
|
436
|
-
</table></div>
|
437
|
-
</div>
|
438
|
-
<div class="refsect3">
|
439
|
-
<a name="gsf-input-dup.returns"></a><h4>Returns</h4>
|
440
|
-
<p> the duplicate, or <code class="literal">NULL</code> on error. </p>
|
441
|
-
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
|
442
|
-
</div>
|
416
|
+
<p>
|
417
|
+
</p>
|
443
418
|
</div>
|
444
419
|
<hr>
|
445
420
|
<div class="refsect2">
|
@@ -540,6 +515,7 @@ gsf_input_sibling (<em class="parameter"><code><a class="link" href="gsf-Input-f
|
|
540
515
|
<p>Attempts to open a 'sibling' of <em class="parameter"><code>input</code></em>
|
541
516
|
. The caller is responsible for
|
542
517
|
managing the resulting object.</p>
|
518
|
+
<p><span class="annotation">[<acronym title="This is the invoker for a virtual method."><span class="acronym">virtual</span></acronym> OpenSibling]</span></p>
|
543
519
|
<div class="refsect3">
|
544
520
|
<a name="gsf-input-sibling.parameters"></a><h4>Parameters</h4>
|
545
521
|
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
@@ -569,7 +545,7 @@ managing the resulting object.</p>
|
|
569
545
|
</div>
|
570
546
|
<div class="refsect3">
|
571
547
|
<a name="gsf-input-sibling.returns"></a><h4>Returns</h4>
|
572
|
-
<p> A related <a class="link" href="gsf-Input-from-unstructured-files.html#GsfInput"><span class="type">GsfInput</span></a
|
548
|
+
<p> A related <a class="link" href="gsf-Input-from-unstructured-files.html#GsfInput"><span class="type">GsfInput</span></a>. </p>
|
573
549
|
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
|
574
550
|
</div>
|
575
551
|
</div>
|
@@ -187,6 +187,7 @@ gsf_outfile_new_child_varg (<em class="parameter"><code><a class="link" href="gs
|
|
187
187
|
<em class="parameter"><code><span class="type">gboolean</span> is_dir</code></em>,
|
188
188
|
<em class="parameter"><code><span class="type">char</span> const *first_property_name</code></em>,
|
189
189
|
<em class="parameter"><code><span class="type">va_list</span> args</code></em>);</pre>
|
190
|
+
<p><span class="annotation">[<acronym title="This is the invoker for a virtual method."><span class="acronym">virtual</span></acronym> new_child]</span></p>
|
190
191
|
<div class="refsect3">
|
191
192
|
<a name="gsf-outfile-new-child-varg.parameters"></a><h4>Parameters</h4>
|
192
193
|
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
@@ -291,6 +291,7 @@ gsf_output_size (<em class="parameter"><code><a class="link" href="gsf-Output-to
|
|
291
291
|
<pre class="programlisting"><span class="returnvalue">gboolean</span>
|
292
292
|
gsf_output_close (<em class="parameter"><code><a class="link" href="gsf-Output-to-unstructured-files.html#GsfOutput"><span class="type">GsfOutput</span></a> *output</code></em>);</pre>
|
293
293
|
<p>Close a stream.</p>
|
294
|
+
<p><span class="annotation">[<acronym title="This is the invoker for a virtual method."><span class="acronym">virtual</span></acronym> Close]</span></p>
|
294
295
|
<div class="refsect3">
|
295
296
|
<a name="gsf-output-close.parameters"></a><h4>Parameters</h4>
|
296
297
|
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
@@ -353,6 +354,8 @@ relative to: the beginning of the stream (<code class="literal">G_SEEK_SET</code
|
|
353
354
|
the stream (<code class="literal">G_SEEK_CUR</code>) or the end of the stream (<code class="literal">G_SEEK_END</code>).
|
354
355
|
This function is similar to</p>
|
355
356
|
<span class="citerefentry"><span class="refentrytitle">fseek</span>(3)</span>.
|
357
|
+
|
358
|
+
<p><span class="annotation">[<acronym title="This is the invoker for a virtual method."><span class="acronym">virtual</span></acronym> Seek]</span></p>
|
356
359
|
<div class="refsect3">
|
357
360
|
<a name="gsf-output-seek.parameters"></a><h4>Parameters</h4>
|
358
361
|
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
@@ -396,6 +399,7 @@ gsf_output_write (<em class="parameter"><code><a class="link" href="gsf-Output-t
|
|
396
399
|
of <em class="parameter"><code>data</code></em>
|
397
400
|
to <em class="parameter"><code>output</code></em>
|
398
401
|
.</p>
|
402
|
+
<p><span class="annotation">[<acronym title="This is the invoker for a virtual method."><span class="acronym">virtual</span></acronym> Write]</span></p>
|
399
403
|
<div class="refsect3">
|
400
404
|
<a name="gsf-output-write.parameters"></a><h4>Parameters</h4>
|
401
405
|
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
@@ -519,6 +523,8 @@ gsf_output_vprintf (<em class="parameter"><code><a class="link" href="gsf-Output
|
|
519
523
|
using the format string <em class="parameter"><code>format</code></em>
|
520
524
|
, similar to</p>
|
521
525
|
<span class="citerefentry"><span class="refentrytitle">vprintf</span>(3)</span>.
|
526
|
+
|
527
|
+
<p><span class="annotation">[<acronym title="This is the invoker for a virtual method."><span class="acronym">virtual</span></acronym> Vprintf]</span></p>
|
522
528
|
<div class="refsect3">
|
523
529
|
<a name="gsf-output-vprintf.parameters"></a><h4>Parameters</h4>
|
524
530
|
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
@@ -560,8 +566,8 @@ gsf_output_container (<em class="parameter"><code><a class="link" href="gsf-Outp
|
|
560
566
|
<div class="refsect3">
|
561
567
|
<a name="gsf-output-container.returns"></a><h4>Returns</h4>
|
562
568
|
<p> <em class="parameter"><code>output</code></em>
|
563
|
-
's container
|
564
|
-
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
|
569
|
+
's container. </p>
|
570
|
+
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="NULL may be passed as the value in, out, in-out; or as a return value."><span class="acronym">nullable</span></acronym>]</span></p>
|
565
571
|
</div>
|
566
572
|
</div>
|
567
573
|
<hr>
|
@@ -590,7 +596,7 @@ gsf_output_name (<em class="parameter"><code><a class="link" href="gsf-Output-to
|
|
590
596
|
<a name="gsf-output-name.returns"></a><h4>Returns</h4>
|
591
597
|
<p> <em class="parameter"><code>output</code></em>
|
592
598
|
's name in utf8 form. </p>
|
593
|
-
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
|
599
|
+
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="NULL may be passed as the value in, out, in-out; or as a return value."><span class="acronym">nullable</span></acronym>]</span></p>
|
594
600
|
</div>
|
595
601
|
</div>
|
596
602
|
<hr>
|
@@ -691,8 +697,8 @@ outputs.</div>
|
|
691
697
|
gsf_output_error (<em class="parameter"><code><a class="link" href="gsf-Output-to-unstructured-files.html#GsfOutput"><span class="type">GsfOutput</span></a> const *output</code></em>);</pre>
|
692
698
|
<div class="refsect3">
|
693
699
|
<a name="gsf-output-error.returns"></a><h4>Returns</h4>
|
694
|
-
<p> the last error logged on the output
|
695
|
-
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
|
700
|
+
<p> the last error logged on the output. </p>
|
701
|
+
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="NULL may be passed as the value in, out, in-out; or as a return value."><span class="acronym">nullable</span></acronym>]</span></p>
|
696
702
|
</div>
|
697
703
|
</div>
|
698
704
|
<hr>
|
@@ -233,7 +233,8 @@ gsf_input_textline_new (<em class="parameter"><code><a class="link" href="gsf-In
|
|
233
233
|
</div>
|
234
234
|
<div class="refsect3">
|
235
235
|
<a name="gsf-input-textline-new.returns"></a><h4>Returns</h4>
|
236
|
-
<p> a new file
|
236
|
+
<p> a new file. </p>
|
237
|
+
<p><span class="annotation">[<acronym title="NULL may be passed as the value in, out, in-out; or as a return value."><span class="acronym">nullable</span></acronym>]</span></p>
|
237
238
|
</div>
|
238
239
|
</div>
|
239
240
|
<hr>
|
@@ -262,7 +263,7 @@ can be edited.</p>
|
|
262
263
|
<div class="refsect3">
|
263
264
|
<a name="gsf-input-textline-ascii-gets.returns"></a><h4>Returns</h4>
|
264
265
|
<p> the string read, or <code class="literal">NULL</code> on eof. </p>
|
265
|
-
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
|
266
|
+
<p><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="NULL may be passed as the value in, out, in-out; or as a return value."><span class="acronym">nullable</span></acronym>]</span></p>
|
266
267
|
</div>
|
267
268
|
</div>
|
268
269
|
<hr>
|
@@ -291,7 +292,7 @@ can be edited.</p>
|
|
291
292
|
<div class="refsect3">
|
292
293
|
<a name="gsf-input-textline-utf8-gets.returns"></a><h4>Returns</h4>
|
293
294
|
<p> the string read, or <code class="literal">NULL</code> on eof. </p>
|
294
|
-
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
|
295
|
+
<p><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="NULL may be passed as the value in, out, in-out; or as a return value."><span class="acronym">nullable</span></acronym>]</span></p>
|
295
296
|
</div>
|
296
297
|
</div>
|
297
298
|
<hr>
|
@@ -522,20 +522,21 @@ data structures necessary to validate a doument based on that description.</p>
|
|
522
522
|
<tbody>
|
523
523
|
<tr>
|
524
524
|
<td class="parameter_name"><p>nodes</p></td>
|
525
|
-
<td class="parameter_description"><p>an array of node descriptors</p></td>
|
526
|
-
<td class="parameter_annotations">
|
525
|
+
<td class="parameter_description"><p> an array of node descriptors. </p></td>
|
526
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> zero-terminated=1]</span></td>
|
527
527
|
</tr>
|
528
528
|
<tr>
|
529
529
|
<td class="parameter_name"><p>ns</p></td>
|
530
|
-
<td class="parameter_description"><p>an array of namespace identifiers</p></td>
|
531
|
-
<td class="parameter_annotations">
|
530
|
+
<td class="parameter_description"><p> an array of namespace identifiers. </p></td>
|
531
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> zero-terminated=1]</span></td>
|
532
532
|
</tr>
|
533
533
|
</tbody>
|
534
534
|
</table></div>
|
535
535
|
</div>
|
536
536
|
<div class="refsect3">
|
537
537
|
<a name="gsf-xml-in-doc-new.returns"></a><h4>Returns</h4>
|
538
|
-
<p> <
|
538
|
+
<p> a <a class="link" href="gsf-XML-and-libxml.html#GsfXMLInDoc" title="GsfXMLInDoc"><span class="type">GsfXMLInDoc</span></a>. </p>
|
539
|
+
<p><span class="annotation">[<acronym title="NULL may be passed as the value in, out, in-out; or as a return value."><span class="acronym">nullable</span></acronym>]</span></p>
|
539
540
|
</div>
|
540
541
|
</div>
|
541
542
|
<hr>
|
@@ -584,8 +585,8 @@ gsf_xml_in_doc_add_nodes (<em class="parameter"><code><a class="link" href="gsf-
|
|
584
585
|
</tr>
|
585
586
|
<tr>
|
586
587
|
<td class="parameter_name"><p>nodes</p></td>
|
587
|
-
<td class="parameter_description"><p
|
588
|
-
<td class="parameter_annotations">
|
588
|
+
<td class="parameter_description"><p> <code class="literal">NULL</code> terminated array of <a class="link" href="gsf-XML-and-libxml.html#GsfXMLInNode" title="GsfXMLInNode"><span class="type">GsfXMLInNode</span></a>. </p></td>
|
589
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> zero-terminated=1]</span></td>
|
589
590
|
</tr>
|
590
591
|
</tbody>
|
591
592
|
</table></div>
|
@@ -707,8 +708,8 @@ gsf_xml_in_push_state (<em class="parameter"><code><a class="link" href="gsf-XML
|
|
707
708
|
</tr>
|
708
709
|
<tr>
|
709
710
|
<td class="parameter_name"><p>attrs</p></td>
|
710
|
-
<td class="parameter_description"><p>array of xmlChar const
|
711
|
-
<td class="parameter_annotations">
|
711
|
+
<td class="parameter_description"><p> array of xmlChar const *. </p></td>
|
712
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym>][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> utf8]</span></td>
|
712
713
|
</tr>
|
713
714
|
</tbody>
|
714
715
|
</table></div>
|
@@ -809,9 +810,9 @@ gsf_xml_in_check_ns (<em class="parameter"><code><a class="link" href="gsf-XML-a
|
|
809
810
|
<div class="refsect3">
|
810
811
|
<a name="gsf-xml-in-check-ns.returns"></a><h4>Returns</h4>
|
811
812
|
<p> a pointer to <em class="parameter"><code>str</code></em>
|
812
|
-
after the namespace
|
813
|
-
successful, otherwise <code class="literal">NULL</code>. </p>
|
814
|
-
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
|
813
|
+
after the namespace
|
814
|
+
if successful, otherwise <code class="literal">NULL</code>. </p>
|
815
|
+
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="NULL may be passed as the value in, out, in-out; or as a return value."><span class="acronym">nullable</span></acronym>]</span></p>
|
815
816
|
</div>
|
816
817
|
</div>
|
817
818
|
<hr>
|
@@ -953,8 +954,8 @@ gsf_xml_out_get_output (<em class="parameter"><code><a class="link" href="gsf-XM
|
|
953
954
|
</div>
|
954
955
|
<div class="refsect3">
|
955
956
|
<a name="gsf-xml-out-get-output.returns"></a><h4>Returns</h4>
|
956
|
-
<p> <a class="link" href="gsf-Input-from-unstructured-files.html#GsfInput"><span class="type">GsfInput</span></a
|
957
|
-
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
|
957
|
+
<p> <a class="link" href="gsf-Input-from-unstructured-files.html#GsfInput"><span class="type">GsfInput</span></a>. </p>
|
958
|
+
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="NULL may be passed as the value in, out, in-out; or as a return value."><span class="acronym">nullable</span></acronym>]</span></p>
|
958
959
|
</div>
|
959
960
|
</div>
|
960
961
|
<hr>
|
@@ -1044,7 +1045,7 @@ output)</p>
|
|
1044
1045
|
</tr>
|
1045
1046
|
<tr>
|
1046
1047
|
<td class="parameter_name"><p>id</p></td>
|
1047
|
-
<td class="parameter_description"><p> tag id or <code class="literal">NULL</code> for content. </p></td>
|
1048
|
+
<td class="parameter_description"><p> tag id, or <code class="literal">NULL</code> for node content. </p></td>
|
1048
1049
|
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
1049
1050
|
</tr>
|
1050
1051
|
<tr>
|
@@ -1086,7 +1087,7 @@ the application knows that structure of the content well. If
|
|
1086
1087
|
</tr>
|
1087
1088
|
<tr>
|
1088
1089
|
<td class="parameter_name"><p>id</p></td>
|
1089
|
-
<td class="parameter_description"><p> tag id or <code class="literal">NULL</code> for content. </p></td>
|
1090
|
+
<td class="parameter_description"><p> tag id, or <code class="literal">NULL</code> for node content. </p></td>
|
1090
1091
|
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
1091
1092
|
</tr>
|
1092
1093
|
<tr>
|
@@ -1125,7 +1126,7 @@ Use '1' or '0' to simplify import</p>
|
|
1125
1126
|
</tr>
|
1126
1127
|
<tr>
|
1127
1128
|
<td class="parameter_name"><p>id</p></td>
|
1128
|
-
<td class="parameter_description"><p> tag id or <code class="literal">NULL</code> for content. </p></td>
|
1129
|
+
<td class="parameter_description"><p> tag id, or <code class="literal">NULL</code> for node content. </p></td>
|
1129
1130
|
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
1130
1131
|
</tr>
|
1131
1132
|
<tr>
|
@@ -1163,7 +1164,7 @@ gsf_xml_out_add_int (<em class="parameter"><code><a class="link" href="gsf-XML-a
|
|
1163
1164
|
</tr>
|
1164
1165
|
<tr>
|
1165
1166
|
<td class="parameter_name"><p>id</p></td>
|
1166
|
-
<td class="parameter_description"><p> tag id or <code class="literal">NULL</code> for content. </p></td>
|
1167
|
+
<td class="parameter_description"><p> tag id, or <code class="literal">NULL</code> for node content. </p></td>
|
1167
1168
|
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
1168
1169
|
</tr>
|
1169
1170
|
<tr>
|
@@ -1202,7 +1203,7 @@ content</p>
|
|
1202
1203
|
</tr>
|
1203
1204
|
<tr>
|
1204
1205
|
<td class="parameter_name"><p>id</p></td>
|
1205
|
-
<td class="parameter_description"><p> tag id or <code class="literal">NULL</code> for content. </p></td>
|
1206
|
+
<td class="parameter_description"><p> tag id, or <code class="literal">NULL</code> for node content. </p></td>
|
1206
1207
|
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
1207
1208
|
</tr>
|
1208
1209
|
<tr>
|
@@ -1244,7 +1245,7 @@ according to the "C" locale.</p>
|
|
1244
1245
|
</tr>
|
1245
1246
|
<tr>
|
1246
1247
|
<td class="parameter_name"><p>id</p></td>
|
1247
|
-
<td class="parameter_description"><p> tag id or <code class="literal">NULL</code> for content. </p></td>
|
1248
|
+
<td class="parameter_description"><p> tag id, or <code class="literal">NULL</code> for node content. </p></td>
|
1248
1249
|
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
1249
1250
|
</tr>
|
1250
1251
|
<tr>
|
@@ -1288,7 +1289,7 @@ gsf_xml_out_add_enum (<em class="parameter"><code><a class="link" href="gsf-XML-
|
|
1288
1289
|
</tr>
|
1289
1290
|
<tr>
|
1290
1291
|
<td class="parameter_name"><p>id</p></td>
|
1291
|
-
<td class="parameter_description"><p> tag id or <code class="literal">NULL</code> for content. </p></td>
|
1292
|
+
<td class="parameter_description"><p> tag id, or <code class="literal">NULL</code> for node content. </p></td>
|
1292
1293
|
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
1293
1294
|
</tr>
|
1294
1295
|
<tr>
|
@@ -1335,7 +1336,7 @@ gsf_xml_out_add_color (<em class="parameter"><code><a class="link" href="gsf-XML
|
|
1335
1336
|
</tr>
|
1336
1337
|
<tr>
|
1337
1338
|
<td class="parameter_name"><p>id</p></td>
|
1338
|
-
<td class="parameter_description"><p> tag id or <code class="literal">NULL</code> for content. </p></td>
|
1339
|
+
<td class="parameter_description"><p> tag id, or <code class="literal">NULL</code> for node content. </p></td>
|
1339
1340
|
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
1340
1341
|
</tr>
|
1341
1342
|
<tr>
|
@@ -1385,13 +1386,13 @@ gsf_xml_out_add_base64 (<em class="parameter"><code><a class="link" href="gsf-XM
|
|
1385
1386
|
</tr>
|
1386
1387
|
<tr>
|
1387
1388
|
<td class="parameter_name"><p>id</p></td>
|
1388
|
-
<td class="parameter_description"><p> tag id or <code class="literal">NULL</code> for content. </p></td>
|
1389
|
+
<td class="parameter_description"><p> tag id, or <code class="literal">NULL</code> for node content. </p></td>
|
1389
1390
|
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
1390
1391
|
</tr>
|
1391
1392
|
<tr>
|
1392
1393
|
<td class="parameter_name"><p>data</p></td>
|
1393
|
-
<td class="parameter_description"><p>Data to be written</p></td>
|
1394
|
-
<td class="parameter_annotations">
|
1394
|
+
<td class="parameter_description"><p> Data to be written. </p></td>
|
1395
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=len]</span></td>
|
1395
1396
|
</tr>
|
1396
1397
|
<tr>
|
1397
1398
|
<td class="parameter_name"><p>len</p></td>
|
@@ -1428,7 +1429,7 @@ with the string, just thevalue.</p>
|
|
1428
1429
|
</tr>
|
1429
1430
|
<tr>
|
1430
1431
|
<td class="parameter_name"><p>id</p></td>
|
1431
|
-
<td class="parameter_description"><p> tag id or <code class="literal">NULL</code> for content. </p></td>
|
1432
|
+
<td class="parameter_description"><p> tag id, or <code class="literal">NULL</code> for node content. </p></td>
|
1432
1433
|
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
1433
1434
|
</tr>
|
1434
1435
|
<tr>
|
@@ -1650,7 +1651,8 @@ when we add other api changes. Its not worth bumping just for this.</div>
|
|
1650
1651
|
</div>
|
1651
1652
|
<div class="refsect3">
|
1652
1653
|
<a name="gsf-xml-parser-context.returns"></a><h4>Returns</h4>
|
1653
|
-
<p> A parser context
|
1654
|
+
<p> A parser context. </p>
|
1655
|
+
<p><span class="annotation">[<acronym title="NULL may be passed as the value in, out, in-out; or as a return value."><span class="acronym">nullable</span></acronym>]</span></p>
|
1654
1656
|
</div>
|
1655
1657
|
</div>
|
1656
1658
|
<hr>
|