gsf 3.0.9-x64-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (166) hide show
  1. checksums.yaml +7 -0
  2. data/Rakefile +55 -0
  3. data/lib/gsf/input.rb +26 -0
  4. data/lib/gsf/loader.rb +57 -0
  5. data/lib/gsf.rb +53 -0
  6. data/test/gsf-test-utils.rb +22 -0
  7. data/test/run-test.rb +46 -0
  8. data/test/test-input-stdio.rb +25 -0
  9. data/vendor/local/bin/gsf-office-thumbnailer.exe +0 -0
  10. data/vendor/local/bin/gsf-vba-dump.exe +0 -0
  11. data/vendor/local/bin/gsf.exe +0 -0
  12. data/vendor/local/bin/libgsf-1-114.dll +0 -0
  13. data/vendor/local/bin/libgsf-win32-1-114.dll +0 -0
  14. data/vendor/local/include/libgsf-1/gsf/gsf-blob.h +39 -0
  15. data/vendor/local/include/libgsf-1/gsf/gsf-clip-data.h +72 -0
  16. data/vendor/local/include/libgsf-1/gsf/gsf-doc-meta-data.h +66 -0
  17. data/vendor/local/include/libgsf-1/gsf/gsf-docprop-vector.h +47 -0
  18. data/vendor/local/include/libgsf-1/gsf/gsf-fwd.h +121 -0
  19. data/vendor/local/include/libgsf-1/gsf/gsf-impl-utils.h +156 -0
  20. data/vendor/local/include/libgsf-1/gsf/gsf-infile-impl.h +50 -0
  21. data/vendor/local/include/libgsf-1/gsf/gsf-infile-msole.h +45 -0
  22. data/vendor/local/include/libgsf-1/gsf/gsf-infile-msvba.h +49 -0
  23. data/vendor/local/include/libgsf-1/gsf/gsf-infile-stdio.h +43 -0
  24. data/vendor/local/include/libgsf-1/gsf/gsf-infile-tar.h +40 -0
  25. data/vendor/local/include/libgsf-1/gsf/gsf-infile-zip.h +43 -0
  26. data/vendor/local/include/libgsf-1/gsf/gsf-infile.h +46 -0
  27. data/vendor/local/include/libgsf-1/gsf/gsf-input-bzip.h +34 -0
  28. data/vendor/local/include/libgsf-1/gsf/gsf-input-gio.h +44 -0
  29. data/vendor/local/include/libgsf-1/gsf/gsf-input-gzip.h +43 -0
  30. data/vendor/local/include/libgsf-1/gsf/gsf-input-http.h +45 -0
  31. data/vendor/local/include/libgsf-1/gsf/gsf-input-impl.h +68 -0
  32. data/vendor/local/include/libgsf-1/gsf/gsf-input-iochannel.h +35 -0
  33. data/vendor/local/include/libgsf-1/gsf/gsf-input-memory.h +46 -0
  34. data/vendor/local/include/libgsf-1/gsf/gsf-input-proxy.h +46 -0
  35. data/vendor/local/include/libgsf-1/gsf/gsf-input-stdio.h +48 -0
  36. data/vendor/local/include/libgsf-1/gsf/gsf-input-textline.h +46 -0
  37. data/vendor/local/include/libgsf-1/gsf/gsf-input.h +69 -0
  38. data/vendor/local/include/libgsf-1/gsf/gsf-libxml.h +225 -0
  39. data/vendor/local/include/libgsf-1/gsf/gsf-meta-names.h +482 -0
  40. data/vendor/local/include/libgsf-1/gsf/gsf-msole-utils.h +70 -0
  41. data/vendor/local/include/libgsf-1/gsf/gsf-open-pkg-utils.h +95 -0
  42. data/vendor/local/include/libgsf-1/gsf/gsf-opendoc-utils.h +162 -0
  43. data/vendor/local/include/libgsf-1/gsf/gsf-outfile-impl.h +46 -0
  44. data/vendor/local/include/libgsf-1/gsf/gsf-outfile-msole.h +47 -0
  45. data/vendor/local/include/libgsf-1/gsf/gsf-outfile-stdio.h +49 -0
  46. data/vendor/local/include/libgsf-1/gsf/gsf-outfile-zip.h +61 -0
  47. data/vendor/local/include/libgsf-1/gsf/gsf-outfile.h +49 -0
  48. data/vendor/local/include/libgsf-1/gsf/gsf-output-bzip.h +43 -0
  49. data/vendor/local/include/libgsf-1/gsf/gsf-output-csv.h +84 -0
  50. data/vendor/local/include/libgsf-1/gsf/gsf-output-gio.h +44 -0
  51. data/vendor/local/include/libgsf-1/gsf/gsf-output-gzip.h +43 -0
  52. data/vendor/local/include/libgsf-1/gsf/gsf-output-iconv.h +47 -0
  53. data/vendor/local/include/libgsf-1/gsf/gsf-output-impl.h +37 -0
  54. data/vendor/local/include/libgsf-1/gsf/gsf-output-iochannel.h +43 -0
  55. data/vendor/local/include/libgsf-1/gsf/gsf-output-memory.h +44 -0
  56. data/vendor/local/include/libgsf-1/gsf/gsf-output-stdio.h +52 -0
  57. data/vendor/local/include/libgsf-1/gsf/gsf-output.h +99 -0
  58. data/vendor/local/include/libgsf-1/gsf/gsf-shared-memory.h +51 -0
  59. data/vendor/local/include/libgsf-1/gsf/gsf-structured-blob.h +45 -0
  60. data/vendor/local/include/libgsf-1/gsf/gsf-timestamp.h +70 -0
  61. data/vendor/local/include/libgsf-1/gsf/gsf-utils.h +340 -0
  62. data/vendor/local/include/libgsf-1/gsf/gsf.h +98 -0
  63. data/vendor/local/include/libgsf-1/gsf-win32/gsf-input-win32.h +41 -0
  64. data/vendor/local/include/libgsf-1/gsf-win32/gsf-output-win32.h +41 -0
  65. data/vendor/local/lib/libgsf-1.a +0 -0
  66. data/vendor/local/lib/libgsf-1.dll.a +0 -0
  67. data/vendor/local/lib/libgsf-1.la +41 -0
  68. data/vendor/local/lib/libgsf-win32-1.a +0 -0
  69. data/vendor/local/lib/libgsf-win32-1.dll.a +0 -0
  70. data/vendor/local/lib/libgsf-win32-1.la +41 -0
  71. data/vendor/local/lib/pkgconfig/libgsf-1.pc +11 -0
  72. data/vendor/local/lib/pkgconfig/libgsf-win32-1.pc +11 -0
  73. data/vendor/local/share/gtk-doc/html/gsf/annotation-glossary.html +56 -0
  74. data/vendor/local/share/gtk-doc/html/gsf/api.html +107 -0
  75. data/vendor/local/share/gtk-doc/html/gsf/dependencies.html +109 -0
  76. data/vendor/local/share/gtk-doc/html/gsf/gsf-Compression.html +369 -0
  77. data/vendor/local/share/gtk-doc/html/gsf/gsf-GIO.html +307 -0
  78. data/vendor/local/share/gtk-doc/html/gsf/gsf-GIOChannel.html +119 -0
  79. data/vendor/local/share/gtk-doc/html/gsf/gsf-Infile-reading-structed-files.html +397 -0
  80. data/vendor/local/share/gtk-doc/html/gsf/gsf-Input-from-unstructured-files.html +887 -0
  81. data/vendor/local/share/gtk-doc/html/gsf/gsf-MS-OLE2.html +894 -0
  82. data/vendor/local/share/gtk-doc/html/gsf/gsf-OASIS-Open-Document.html +398 -0
  83. data/vendor/local/share/gtk-doc/html/gsf/gsf-Outfile-writing-structed-files.html +237 -0
  84. data/vendor/local/share/gtk-doc/html/gsf/gsf-Output-to-unstructured-files.html +830 -0
  85. data/vendor/local/share/gtk-doc/html/gsf/gsf-Reading-and-Writing-from-local-files-and-directories.html +593 -0
  86. data/vendor/local/share/gtk-doc/html/gsf/gsf-Text.html +523 -0
  87. data/vendor/local/share/gtk-doc/html/gsf/gsf-XML-and-libxml.html +2032 -0
  88. data/vendor/local/share/gtk-doc/html/gsf/gsf-Zip.html +338 -0
  89. data/vendor/local/share/gtk-doc/html/gsf/gsf-blobs.html +56 -0
  90. data/vendor/local/share/gtk-doc/html/gsf/gsf-clip-data.html +444 -0
  91. data/vendor/local/share/gtk-doc/html/gsf/gsf-index.html +875 -0
  92. data/vendor/local/share/gtk-doc/html/gsf/gsf-memory.html +332 -0
  93. data/vendor/local/share/gtk-doc/html/gsf/gsf-metadata.html +1762 -0
  94. data/vendor/local/share/gtk-doc/html/gsf/gsf-users.html +73 -0
  95. data/vendor/local/share/gtk-doc/html/gsf/gsf-utils.html +2503 -0
  96. data/vendor/local/share/gtk-doc/html/gsf/gsf.devhelp2 +440 -0
  97. data/vendor/local/share/gtk-doc/html/gsf/history.html +45 -0
  98. data/vendor/local/share/gtk-doc/html/gsf/home.png +0 -0
  99. data/vendor/local/share/gtk-doc/html/gsf/index.html +98 -0
  100. data/vendor/local/share/gtk-doc/html/gsf/index.sgml +572 -0
  101. data/vendor/local/share/gtk-doc/html/gsf/intro.html +39 -0
  102. data/vendor/local/share/gtk-doc/html/gsf/io.html +38 -0
  103. data/vendor/local/share/gtk-doc/html/gsf/left-insensitive.png +0 -0
  104. data/vendor/local/share/gtk-doc/html/gsf/left.png +0 -0
  105. data/vendor/local/share/gtk-doc/html/gsf/misc.html +33 -0
  106. data/vendor/local/share/gtk-doc/html/gsf/parsers.html +59 -0
  107. data/vendor/local/share/gtk-doc/html/gsf/right-insensitive.png +0 -0
  108. data/vendor/local/share/gtk-doc/html/gsf/right.png +0 -0
  109. data/vendor/local/share/gtk-doc/html/gsf/sources.html +50 -0
  110. data/vendor/local/share/gtk-doc/html/gsf/style.css +461 -0
  111. data/vendor/local/share/gtk-doc/html/gsf/up-insensitive.png +0 -0
  112. data/vendor/local/share/gtk-doc/html/gsf/up.png +0 -0
  113. data/vendor/local/share/license/libgsf/AUTHORS +3 -0
  114. data/vendor/local/share/license/libgsf/COPYING +340 -0
  115. data/vendor/local/share/license/libgsf/COPYING.LIB +504 -0
  116. data/vendor/local/share/locale/as/LC_MESSAGES/libgsf.mo +0 -0
  117. data/vendor/local/share/locale/bs/LC_MESSAGES/libgsf.mo +0 -0
  118. data/vendor/local/share/locale/ca/LC_MESSAGES/libgsf.mo +0 -0
  119. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/libgsf.mo +0 -0
  120. data/vendor/local/share/locale/cs/LC_MESSAGES/libgsf.mo +0 -0
  121. data/vendor/local/share/locale/da/LC_MESSAGES/libgsf.mo +0 -0
  122. data/vendor/local/share/locale/de/LC_MESSAGES/libgsf.mo +0 -0
  123. data/vendor/local/share/locale/el/LC_MESSAGES/libgsf.mo +0 -0
  124. data/vendor/local/share/locale/en_GB/LC_MESSAGES/libgsf.mo +0 -0
  125. data/vendor/local/share/locale/eo/LC_MESSAGES/libgsf.mo +0 -0
  126. data/vendor/local/share/locale/es/LC_MESSAGES/libgsf.mo +0 -0
  127. data/vendor/local/share/locale/eu/LC_MESSAGES/libgsf.mo +0 -0
  128. data/vendor/local/share/locale/fi/LC_MESSAGES/libgsf.mo +0 -0
  129. data/vendor/local/share/locale/fr/LC_MESSAGES/libgsf.mo +0 -0
  130. data/vendor/local/share/locale/gl/LC_MESSAGES/libgsf.mo +0 -0
  131. data/vendor/local/share/locale/he/LC_MESSAGES/libgsf.mo +0 -0
  132. data/vendor/local/share/locale/hu/LC_MESSAGES/libgsf.mo +0 -0
  133. data/vendor/local/share/locale/id/LC_MESSAGES/libgsf.mo +0 -0
  134. data/vendor/local/share/locale/it/LC_MESSAGES/libgsf.mo +0 -0
  135. data/vendor/local/share/locale/ja/LC_MESSAGES/libgsf.mo +0 -0
  136. data/vendor/local/share/locale/ko/LC_MESSAGES/libgsf.mo +0 -0
  137. data/vendor/local/share/locale/lt/LC_MESSAGES/libgsf.mo +0 -0
  138. data/vendor/local/share/locale/lv/LC_MESSAGES/libgsf.mo +0 -0
  139. data/vendor/local/share/locale/ml/LC_MESSAGES/libgsf.mo +0 -0
  140. data/vendor/local/share/locale/nb/LC_MESSAGES/libgsf.mo +0 -0
  141. data/vendor/local/share/locale/nn/LC_MESSAGES/libgsf.mo +0 -0
  142. data/vendor/local/share/locale/oc/LC_MESSAGES/libgsf.mo +0 -0
  143. data/vendor/local/share/locale/pa/LC_MESSAGES/libgsf.mo +0 -0
  144. data/vendor/local/share/locale/pl/LC_MESSAGES/libgsf.mo +0 -0
  145. data/vendor/local/share/locale/pt/LC_MESSAGES/libgsf.mo +0 -0
  146. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/libgsf.mo +0 -0
  147. data/vendor/local/share/locale/ro/LC_MESSAGES/libgsf.mo +0 -0
  148. data/vendor/local/share/locale/ru/LC_MESSAGES/libgsf.mo +0 -0
  149. data/vendor/local/share/locale/sk/LC_MESSAGES/libgsf.mo +0 -0
  150. data/vendor/local/share/locale/sl/LC_MESSAGES/libgsf.mo +0 -0
  151. data/vendor/local/share/locale/sr/LC_MESSAGES/libgsf.mo +0 -0
  152. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/libgsf.mo +0 -0
  153. data/vendor/local/share/locale/sv/LC_MESSAGES/libgsf.mo +0 -0
  154. data/vendor/local/share/locale/ta/LC_MESSAGES/libgsf.mo +0 -0
  155. data/vendor/local/share/locale/tg/LC_MESSAGES/libgsf.mo +0 -0
  156. data/vendor/local/share/locale/th/LC_MESSAGES/libgsf.mo +0 -0
  157. data/vendor/local/share/locale/tr/LC_MESSAGES/libgsf.mo +0 -0
  158. data/vendor/local/share/locale/uk/LC_MESSAGES/libgsf.mo +0 -0
  159. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/libgsf.mo +0 -0
  160. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/libgsf.mo +0 -0
  161. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/libgsf.mo +0 -0
  162. data/vendor/local/share/man/man1/gsf-office-thumbnailer.1 +71 -0
  163. data/vendor/local/share/man/man1/gsf-vba-dump.1 +61 -0
  164. data/vendor/local/share/man/man1/gsf.1 +91 -0
  165. data/vendor/local/share/thumbnailers/gsf-office.thumbnailer +4 -0
  166. metadata +235 -0
@@ -0,0 +1,307 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html>
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
+ <title>GSF Reference Manual: GIO</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
7
+ <link rel="home" href="index.html" title="GSF Reference Manual">
8
+ <link rel="up" href="sources.html" title="Stream Sources">
9
+ <link rel="prev" href="gsf-GIOChannel.html" title="GIOChannel">
10
+ <link rel="next" href="parsers.html" title="Stream Parsers">
11
+ <meta name="generator" content="GTK-Doc V1.20 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">
16
+ <td width="100%" align="left" class="shortcuts">
17
+ <a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> 
18
+ <a href="#gsf-GIO.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> 
19
+ <a href="#gsf-GIO.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
20
+ </td>
21
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
22
+ <td><a accesskey="u" href="sources.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
23
+ <td><a accesskey="p" href="gsf-GIOChannel.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
24
+ <td><a accesskey="n" href="parsers.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
25
+ </tr></table>
26
+ <div class="refentry">
27
+ <a name="gsf-GIO"></a><div class="titlepage"></div>
28
+ <div class="refnamediv"><table width="100%"><tr>
29
+ <td valign="top">
30
+ <h2><span class="refentrytitle"><a name="gsf-GIO.top_of_page"></a>GIO</span></h2>
31
+ <p>GIO</p>
32
+ </td>
33
+ <td class="gallery_image" valign="top" align="right"></td>
34
+ </tr></table></div>
35
+ <div class="refsect1">
36
+ <a name="gsf-GIO.functions"></a><h2>Functions</h2>
37
+ <div class="informaltable"><table width="100%" border="0">
38
+ <colgroup>
39
+ <col width="150px" class="functions_return">
40
+ <col class="functions_name">
41
+ </colgroup>
42
+ <tbody>
43
+ <tr>
44
+ <td class="function_type">
45
+ <a class="link" href="gsf-Input-from-unstructured-files.html#GsfInput"><span class="returnvalue">GsfInput</span></a> *
46
+ </td>
47
+ <td class="function_name">
48
+ <a class="link" href="gsf-GIO.html#gsf-input-gio-new" title="gsf_input_gio_new ()">gsf_input_gio_new</a> <span class="c_punctuation">()</span>
49
+ </td>
50
+ </tr>
51
+ <tr>
52
+ <td class="function_type">
53
+ <a class="link" href="gsf-Input-from-unstructured-files.html#GsfInput"><span class="returnvalue">GsfInput</span></a> *
54
+ </td>
55
+ <td class="function_name">
56
+ <a class="link" href="gsf-GIO.html#gsf-input-gio-new-for-path" title="gsf_input_gio_new_for_path ()">gsf_input_gio_new_for_path</a> <span class="c_punctuation">()</span>
57
+ </td>
58
+ </tr>
59
+ <tr>
60
+ <td class="function_type">
61
+ <a class="link" href="gsf-Input-from-unstructured-files.html#GsfInput"><span class="returnvalue">GsfInput</span></a> *
62
+ </td>
63
+ <td class="function_name">
64
+ <a class="link" href="gsf-GIO.html#gsf-input-gio-new-for-uri" title="gsf_input_gio_new_for_uri ()">gsf_input_gio_new_for_uri</a> <span class="c_punctuation">()</span>
65
+ </td>
66
+ </tr>
67
+ <tr>
68
+ <td class="function_type">
69
+ <a class="link" href="gsf-Output-to-unstructured-files.html#GsfOutput"><span class="returnvalue">GsfOutput</span></a> *
70
+ </td>
71
+ <td class="function_name">
72
+ <a class="link" href="gsf-GIO.html#gsf-output-gio-new" title="gsf_output_gio_new ()">gsf_output_gio_new</a> <span class="c_punctuation">()</span>
73
+ </td>
74
+ </tr>
75
+ <tr>
76
+ <td class="function_type">
77
+ <a class="link" href="gsf-Output-to-unstructured-files.html#GsfOutput"><span class="returnvalue">GsfOutput</span></a> *
78
+ </td>
79
+ <td class="function_name">
80
+ <a class="link" href="gsf-GIO.html#gsf-output-gio-new-for-path" title="gsf_output_gio_new_for_path ()">gsf_output_gio_new_for_path</a> <span class="c_punctuation">()</span>
81
+ </td>
82
+ </tr>
83
+ <tr>
84
+ <td class="function_type">
85
+ <a class="link" href="gsf-Output-to-unstructured-files.html#GsfOutput"><span class="returnvalue">GsfOutput</span></a> *
86
+ </td>
87
+ <td class="function_name">
88
+ <a class="link" href="gsf-GIO.html#gsf-output-gio-new-for-uri" title="gsf_output_gio_new_for_uri ()">gsf_output_gio_new_for_uri</a> <span class="c_punctuation">()</span>
89
+ </td>
90
+ </tr>
91
+ </tbody>
92
+ </table></div>
93
+ </div>
94
+ <div class="refsect1">
95
+ <a name="gsf-GIO.other"></a><h2>Types and Values</h2>
96
+ <div class="informaltable"><table width="100%" border="0">
97
+ <colgroup>
98
+ <col width="150px" class="name">
99
+ <col class="description">
100
+ </colgroup>
101
+ <tbody>
102
+ <tr>
103
+ <td class="datatype_keyword"> </td>
104
+ <td class="function_name"><a class="link" href="gsf-GIO.html#GsfInputGio" title="GsfInputGio">GsfInputGio</a></td>
105
+ </tr>
106
+ <tr>
107
+ <td class="datatype_keyword"> </td>
108
+ <td class="function_name"><a class="link" href="gsf-GIO.html#GsfOutputGio" title="GsfOutputGio">GsfOutputGio</a></td>
109
+ </tr>
110
+ </tbody>
111
+ </table></div>
112
+ </div>
113
+ <div class="refsect1">
114
+ <a name="gsf-GIO.object-hierarchy"></a><h2>Object Hierarchy</h2>
115
+ <pre class="screen">
116
+ </pre>
117
+ </div>
118
+ <div class="refsect1">
119
+ <a name="gsf-GIO.description"></a><h2>Description</h2>
120
+ <p>
121
+ </p>
122
+ </div>
123
+ <div class="refsect1">
124
+ <a name="gsf-GIO.functions_details"></a><h2>Functions</h2>
125
+ <div class="refsect2">
126
+ <a name="gsf-input-gio-new"></a><h3>gsf_input_gio_new ()</h3>
127
+ <pre class="programlisting"><a class="link" href="gsf-Input-from-unstructured-files.html#GsfInput"><span class="returnvalue">GsfInput</span></a> *
128
+ gsf_input_gio_new (<em class="parameter"><code><span class="type">GFile</span> *file</code></em>,
129
+ <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
130
+ <div class="refsect3">
131
+ <a name="id-1.6.4.7.7.2.4"></a><h4>Parameters</h4>
132
+ <div class="informaltable"><table width="100%" border="0">
133
+ <colgroup>
134
+ <col width="150px" class="parameters_name">
135
+ <col class="parameters_description">
136
+ <col width="200px" class="parameters_annotations">
137
+ </colgroup>
138
+ <tbody><tr>
139
+ <td class="parameter_name"><p>err</p></td>
140
+ <td class="parameter_description"><p> place to store a <span class="type">GError</span> if anything goes wrong. </p></td>
141
+ <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>
142
+ </tr></tbody>
143
+ </table></div>
144
+ </div>
145
+ <div class="refsect3">
146
+ <a name="id-1.6.4.7.7.2.5"></a><h4>Returns</h4>
147
+ <p> A new <a class="link" href="gsf-GIO.html#GsfInputGio" title="GsfInputGio"><span class="type">GsfInputGio</span></a> or <code class="literal">NULL</code></p>
148
+ <p></p>
149
+ </div>
150
+ </div>
151
+ <hr>
152
+ <div class="refsect2">
153
+ <a name="gsf-input-gio-new-for-path"></a><h3>gsf_input_gio_new_for_path ()</h3>
154
+ <pre class="programlisting"><a class="link" href="gsf-Input-from-unstructured-files.html#GsfInput"><span class="returnvalue">GsfInput</span></a> *
155
+ gsf_input_gio_new_for_path (<em class="parameter"><code><span class="type">char</span> const *path</code></em>,
156
+ <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
157
+ <div class="refsect3">
158
+ <a name="id-1.6.4.7.7.3.4"></a><h4>Parameters</h4>
159
+ <div class="informaltable"><table width="100%" border="0">
160
+ <colgroup>
161
+ <col width="150px" class="parameters_name">
162
+ <col class="parameters_description">
163
+ <col width="200px" class="parameters_annotations">
164
+ </colgroup>
165
+ <tbody><tr>
166
+ <td class="parameter_name"><p>err</p></td>
167
+ <td class="parameter_description"><p> place to store a <span class="type">GError</span> if anything goes wrong. </p></td>
168
+ <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>
169
+ </tr></tbody>
170
+ </table></div>
171
+ </div>
172
+ <div class="refsect3">
173
+ <a name="id-1.6.4.7.7.3.5"></a><h4>Returns</h4>
174
+ <p> A new <a class="link" href="gsf-GIO.html#GsfInputGio" title="GsfInputGio"><span class="type">GsfInputGio</span></a> or <code class="literal">NULL</code></p>
175
+ <p></p>
176
+ </div>
177
+ </div>
178
+ <hr>
179
+ <div class="refsect2">
180
+ <a name="gsf-input-gio-new-for-uri"></a><h3>gsf_input_gio_new_for_uri ()</h3>
181
+ <pre class="programlisting"><a class="link" href="gsf-Input-from-unstructured-files.html#GsfInput"><span class="returnvalue">GsfInput</span></a> *
182
+ gsf_input_gio_new_for_uri (<em class="parameter"><code><span class="type">char</span> const *uri</code></em>,
183
+ <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
184
+ <div class="refsect3">
185
+ <a name="id-1.6.4.7.7.4.4"></a><h4>Parameters</h4>
186
+ <div class="informaltable"><table width="100%" border="0">
187
+ <colgroup>
188
+ <col width="150px" class="parameters_name">
189
+ <col class="parameters_description">
190
+ <col width="200px" class="parameters_annotations">
191
+ </colgroup>
192
+ <tbody><tr>
193
+ <td class="parameter_name"><p>err</p></td>
194
+ <td class="parameter_description"><p> place to store a <span class="type">GError</span> if anything goes wrong. </p></td>
195
+ <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>
196
+ </tr></tbody>
197
+ </table></div>
198
+ </div>
199
+ <div class="refsect3">
200
+ <a name="id-1.6.4.7.7.4.5"></a><h4>Returns</h4>
201
+ <p> A new <a class="link" href="gsf-GIO.html#GsfInputGio" title="GsfInputGio"><span class="type">GsfInputGio</span></a> or <code class="literal">NULL</code></p>
202
+ <p></p>
203
+ </div>
204
+ </div>
205
+ <hr>
206
+ <div class="refsect2">
207
+ <a name="gsf-output-gio-new"></a><h3>gsf_output_gio_new ()</h3>
208
+ <pre class="programlisting"><a class="link" href="gsf-Output-to-unstructured-files.html#GsfOutput"><span class="returnvalue">GsfOutput</span></a> *
209
+ gsf_output_gio_new (<em class="parameter"><code><span class="type">GFile</span> *file</code></em>);</pre>
210
+ <div class="refsect3">
211
+ <a name="id-1.6.4.7.7.5.4"></a><h4>Parameters</h4>
212
+ <div class="informaltable"><table width="100%" border="0">
213
+ <colgroup>
214
+ <col width="150px" class="parameters_name">
215
+ <col class="parameters_description">
216
+ <col width="200px" class="parameters_annotations">
217
+ </colgroup>
218
+ <tbody><tr>
219
+ <td class="parameter_name"><p>file</p></td>
220
+ <td class="parameter_description"><p>an existing GFile</p></td>
221
+ <td class="parameter_annotations"> </td>
222
+ </tr></tbody>
223
+ </table></div>
224
+ </div>
225
+ <div class="refsect3">
226
+ <a name="id-1.6.4.7.7.5.5"></a><h4>Returns</h4>
227
+ <p> A new <a class="link" href="gsf-GIO.html#GsfOutputGio" title="GsfOutputGio"><span class="type">GsfOutputGio</span></a> or <code class="literal">NULL</code>. </p>
228
+ <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
229
+ </div>
230
+ </div>
231
+ <hr>
232
+ <div class="refsect2">
233
+ <a name="gsf-output-gio-new-for-path"></a><h3>gsf_output_gio_new_for_path ()</h3>
234
+ <pre class="programlisting"><a class="link" href="gsf-Output-to-unstructured-files.html#GsfOutput"><span class="returnvalue">GsfOutput</span></a> *
235
+ gsf_output_gio_new_for_path (<em class="parameter"><code><span class="type">char</span> const *path</code></em>,
236
+ <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
237
+ <div class="refsect3">
238
+ <a name="id-1.6.4.7.7.6.4"></a><h4>Parameters</h4>
239
+ <div class="informaltable"><table width="100%" border="0">
240
+ <colgroup>
241
+ <col width="150px" class="parameters_name">
242
+ <col class="parameters_description">
243
+ <col width="200px" class="parameters_annotations">
244
+ </colgroup>
245
+ <tbody><tr>
246
+ <td class="parameter_name"><p>err</p></td>
247
+ <td class="parameter_description"><p> place to store a <span class="type">GError</span> if anything goes wrong. </p></td>
248
+ <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>
249
+ </tr></tbody>
250
+ </table></div>
251
+ </div>
252
+ <div class="refsect3">
253
+ <a name="id-1.6.4.7.7.6.5"></a><h4>Returns</h4>
254
+ <p> A new <a class="link" href="gsf-GIO.html#GsfOutputGio" title="GsfOutputGio"><span class="type">GsfOutputGio</span></a> or <code class="literal">NULL</code>. </p>
255
+ <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
256
+ </div>
257
+ </div>
258
+ <hr>
259
+ <div class="refsect2">
260
+ <a name="gsf-output-gio-new-for-uri"></a><h3>gsf_output_gio_new_for_uri ()</h3>
261
+ <pre class="programlisting"><a class="link" href="gsf-Output-to-unstructured-files.html#GsfOutput"><span class="returnvalue">GsfOutput</span></a> *
262
+ gsf_output_gio_new_for_uri (<em class="parameter"><code><span class="type">char</span> const *uri</code></em>,
263
+ <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
264
+ <div class="refsect3">
265
+ <a name="id-1.6.4.7.7.7.4"></a><h4>Parameters</h4>
266
+ <div class="informaltable"><table width="100%" border="0">
267
+ <colgroup>
268
+ <col width="150px" class="parameters_name">
269
+ <col class="parameters_description">
270
+ <col width="200px" class="parameters_annotations">
271
+ </colgroup>
272
+ <tbody><tr>
273
+ <td class="parameter_name"><p>err</p></td>
274
+ <td class="parameter_description"><p> place to store a <span class="type">GError</span> if anything goes wrong. </p></td>
275
+ <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>
276
+ </tr></tbody>
277
+ </table></div>
278
+ </div>
279
+ <div class="refsect3">
280
+ <a name="id-1.6.4.7.7.7.5"></a><h4>Returns</h4>
281
+ <p> A new <a class="link" href="gsf-GIO.html#GsfOutputGio" title="GsfOutputGio"><span class="type">GsfOutputGio</span></a> or <code class="literal">NULL</code>. </p>
282
+ <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
283
+ </div>
284
+ </div>
285
+ </div>
286
+ <div class="refsect1">
287
+ <a name="gsf-GIO.other_details"></a><h2>Types and Values</h2>
288
+ <div class="refsect2">
289
+ <a name="GsfInputGio"></a><h3>GsfInputGio</h3>
290
+ <pre class="programlisting">typedef struct _GsfInputGio GsfInputGio;</pre>
291
+ <p>
292
+ </p>
293
+ </div>
294
+ <hr>
295
+ <div class="refsect2">
296
+ <a name="GsfOutputGio"></a><h3>GsfOutputGio</h3>
297
+ <pre class="programlisting">typedef struct _GsfOutputGio GsfOutputGio;</pre>
298
+ <p>
299
+ </p>
300
+ </div>
301
+ </div>
302
+ </div>
303
+ <div class="footer">
304
+ <hr>
305
+ Generated by GTK-Doc V1.20</div>
306
+ </body>
307
+ </html>
@@ -0,0 +1,119 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html>
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
+ <title>GSF Reference Manual: GIOChannel</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
7
+ <link rel="home" href="index.html" title="GSF Reference Manual">
8
+ <link rel="up" href="sources.html" title="Stream Sources">
9
+ <link rel="prev" href="gsf-memory.html" title="memory">
10
+ <link rel="next" href="gsf-GIO.html" title="GIO">
11
+ <meta name="generator" content="GTK-Doc V1.20 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="10"><tr valign="middle">
16
+ <td width="100%" align="left" class="shortcuts">
17
+ <a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span> 
18
+ <a href="#gsf-GIOChannel.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> 
19
+ <a href="#gsf-GIOChannel.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
20
+ </td>
21
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
22
+ <td><a accesskey="u" href="sources.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
23
+ <td><a accesskey="p" href="gsf-memory.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
24
+ <td><a accesskey="n" href="gsf-GIO.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
25
+ </tr></table>
26
+ <div class="refentry">
27
+ <a name="gsf-GIOChannel"></a><div class="titlepage"></div>
28
+ <div class="refnamediv"><table width="100%"><tr>
29
+ <td valign="top">
30
+ <h2><span class="refentrytitle"><a name="gsf-GIOChannel.top_of_page"></a>GIOChannel</span></h2>
31
+ <p>GIOChannel</p>
32
+ </td>
33
+ <td class="gallery_image" valign="top" align="right"></td>
34
+ </tr></table></div>
35
+ <div class="refsect1">
36
+ <a name="gsf-GIOChannel.functions"></a><h2>Functions</h2>
37
+ <div class="informaltable"><table width="100%" border="0">
38
+ <colgroup>
39
+ <col width="150px" class="functions_return">
40
+ <col class="functions_name">
41
+ </colgroup>
42
+ <tbody><tr>
43
+ <td class="function_type">
44
+ <a class="link" href="gsf-Output-to-unstructured-files.html#GsfOutput"><span class="returnvalue">GsfOutput</span></a> *
45
+ </td>
46
+ <td class="function_name">
47
+ <a class="link" href="gsf-GIOChannel.html#gsf-output-iochannel-new" title="gsf_output_iochannel_new ()">gsf_output_iochannel_new</a> <span class="c_punctuation">()</span>
48
+ </td>
49
+ </tr></tbody>
50
+ </table></div>
51
+ </div>
52
+ <a name="GsfOutputIOChannel"></a><div class="refsect1">
53
+ <a name="gsf-GIOChannel.other"></a><h2>Types and Values</h2>
54
+ <div class="informaltable"><table width="100%" border="0">
55
+ <colgroup>
56
+ <col width="150px" class="name">
57
+ <col class="description">
58
+ </colgroup>
59
+ <tbody><tr>
60
+ <td class="datatype_keyword"> </td>
61
+ <td class="function_name"><a class="link" href="gsf-GIOChannel.html#GsfOutputIOChannel-struct" title="GsfOutputIOChannel">GsfOutputIOChannel</a></td>
62
+ </tr></tbody>
63
+ </table></div>
64
+ </div>
65
+ <div class="refsect1">
66
+ <a name="gsf-GIOChannel.object-hierarchy"></a><h2>Object Hierarchy</h2>
67
+ <pre class="screen"> GObject
68
+ <span class="lineart">╰──</span> <a class="link" href="gsf-Output-to-unstructured-files.html#GsfOutput">GsfOutput</a>
69
+ <span class="lineart">╰──</span> GsfOutputIOChannel
70
+ </pre>
71
+ </div>
72
+ <div class="refsect1">
73
+ <a name="gsf-GIOChannel.description"></a><h2>Description</h2>
74
+ <p>
75
+ </p>
76
+ </div>
77
+ <div class="refsect1">
78
+ <a name="gsf-GIOChannel.functions_details"></a><h2>Functions</h2>
79
+ <div class="refsect2">
80
+ <a name="gsf-output-iochannel-new"></a><h3>gsf_output_iochannel_new ()</h3>
81
+ <pre class="programlisting"><a class="link" href="gsf-Output-to-unstructured-files.html#GsfOutput"><span class="returnvalue">GsfOutput</span></a> *
82
+ gsf_output_iochannel_new (<em class="parameter"><code><span class="type">GIOChannel</span> *channel</code></em>);</pre>
83
+ <div class="refsect3">
84
+ <a name="id-1.6.4.6.8.2.4"></a><h4>Parameters</h4>
85
+ <div class="informaltable"><table width="100%" border="0">
86
+ <colgroup>
87
+ <col width="150px" class="parameters_name">
88
+ <col class="parameters_description">
89
+ <col width="200px" class="parameters_annotations">
90
+ </colgroup>
91
+ <tbody><tr>
92
+ <td class="parameter_name"><p>channel</p></td>
93
+ <td class="parameter_description"><p>A <span class="type">GIOChannel</span></p></td>
94
+ <td class="parameter_annotations"> </td>
95
+ </tr></tbody>
96
+ </table></div>
97
+ </div>
98
+ <div class="refsect3">
99
+ <a name="id-1.6.4.6.8.2.5"></a><h4>Returns</h4>
100
+ <p> a new file or <code class="literal">NULL</code>. </p>
101
+ <p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
102
+ </div>
103
+ </div>
104
+ </div>
105
+ <div class="refsect1">
106
+ <a name="gsf-GIOChannel.other_details"></a><h2>Types and Values</h2>
107
+ <div class="refsect2">
108
+ <a name="GsfOutputIOChannel-struct"></a><h3>GsfOutputIOChannel</h3>
109
+ <pre class="programlisting">typedef struct _GsfOutputIOChannel GsfOutputIOChannel;</pre>
110
+ <p>
111
+ </p>
112
+ </div>
113
+ </div>
114
+ </div>
115
+ <div class="footer">
116
+ <hr>
117
+ Generated by GTK-Doc V1.20</div>
118
+ </body>
119
+ </html>