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,369 @@
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: Compression</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="parsers.html" title="Stream Parsers">
9
+ <link rel="prev" href="gsf-Zip.html" title="Zip files">
10
+ <link rel="next" href="gsf-MS-OLE2.html" title="MS OLE2">
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-Compression.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span> 
19
+ <a href="#gsf-Compression.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties"> <span class="dim">|</span> 
20
+ <a href="#gsf-Compression.properties" class="shortcut">Properties</a></span>
21
+ </td>
22
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
23
+ <td><a accesskey="u" href="parsers.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
24
+ <td><a accesskey="p" href="gsf-Zip.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
25
+ <td><a accesskey="n" href="gsf-MS-OLE2.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
26
+ </tr></table>
27
+ <div class="refentry">
28
+ <a name="gsf-Compression"></a><div class="titlepage"></div>
29
+ <div class="refnamediv"><table width="100%"><tr>
30
+ <td valign="top">
31
+ <h2><span class="refentrytitle"><a name="gsf-Compression.top_of_page"></a>Compression</span></h2>
32
+ <p>Compression</p>
33
+ </td>
34
+ <td class="gallery_image" valign="top" align="right"></td>
35
+ </tr></table></div>
36
+ <div class="refsect1">
37
+ <a name="gsf-Compression.functions"></a><h2>Functions</h2>
38
+ <div class="informaltable"><table width="100%" border="0">
39
+ <colgroup>
40
+ <col width="150px" class="functions_return">
41
+ <col class="functions_name">
42
+ </colgroup>
43
+ <tbody>
44
+ <tr>
45
+ <td class="function_type">
46
+ <a class="link" href="gsf-Input-from-unstructured-files.html#GsfInput"><span class="returnvalue">GsfInput</span></a> *
47
+ </td>
48
+ <td class="function_name">
49
+ <a class="link" href="gsf-Compression.html#gsf-input-gzip-new" title="gsf_input_gzip_new ()">gsf_input_gzip_new</a> <span class="c_punctuation">()</span>
50
+ </td>
51
+ </tr>
52
+ <tr>
53
+ <td class="function_type">
54
+ <a class="link" href="gsf-Input-from-unstructured-files.html#GsfInput"><span class="returnvalue">GsfInput</span></a> *
55
+ </td>
56
+ <td class="function_name">
57
+ <a class="link" href="gsf-Compression.html#gsf-input-memory-new-from-bzip" title="gsf_input_memory_new_from_bzip ()">gsf_input_memory_new_from_bzip</a> <span class="c_punctuation">()</span>
58
+ </td>
59
+ </tr>
60
+ <tr>
61
+ <td class="function_type">
62
+ <a class="link" href="gsf-Output-to-unstructured-files.html#GsfOutput"><span class="returnvalue">GsfOutput</span></a> *
63
+ </td>
64
+ <td class="function_name">
65
+ <a class="link" href="gsf-Compression.html#gsf-output-gzip-new" title="gsf_output_gzip_new ()">gsf_output_gzip_new</a> <span class="c_punctuation">()</span>
66
+ </td>
67
+ </tr>
68
+ <tr>
69
+ <td class="function_type">
70
+ <a class="link" href="gsf-Output-to-unstructured-files.html#GsfOutput"><span class="returnvalue">GsfOutput</span></a> *
71
+ </td>
72
+ <td class="function_name">
73
+ <a class="link" href="gsf-Compression.html#gsf-output-bzip-new" title="gsf_output_bzip_new ()">gsf_output_bzip_new</a> <span class="c_punctuation">()</span>
74
+ </td>
75
+ </tr>
76
+ </tbody>
77
+ </table></div>
78
+ </div>
79
+ <div class="refsect1">
80
+ <a name="gsf-Compression.properties"></a><h2>Properties</h2>
81
+ <div class="informaltable"><table border="0">
82
+ <colgroup>
83
+ <col width="150px" class="properties_type">
84
+ <col width="300px" class="properties_name">
85
+ <col width="200px" class="properties_flags">
86
+ </colgroup>
87
+ <tbody>
88
+ <tr>
89
+ <td class="property_type"><span class="type">gboolean</span></td>
90
+ <td class="property_name"><a class="link" href="gsf-Compression.html#GsfInputGZip--raw" title="The “raw” property">raw</a></td>
91
+ <td class="property_flags">Read / Write / Construct Only</td>
92
+ </tr>
93
+ <tr>
94
+ <td class="property_type">
95
+ <a class="link" href="gsf-Input-from-unstructured-files.html#GsfInput"><span class="type">GsfInput</span></a> *</td>
96
+ <td class="property_name"><a class="link" href="gsf-Compression.html#GsfInputGZip--source" title="The “source” property">source</a></td>
97
+ <td class="property_flags">Read / Write / Construct Only</td>
98
+ </tr>
99
+ <tr>
100
+ <td class="property_type"><span class="type">gint64</span></td>
101
+ <td class="property_name"><a class="link" href="gsf-Compression.html#GsfInputGZip--uncompressed-size" title="The “uncompressed-size” property">uncompressed-size</a></td>
102
+ <td class="property_flags">Read / Write / Construct Only</td>
103
+ </tr>
104
+ <tr>
105
+ <td class="property_type"><span class="type">gboolean</span></td>
106
+ <td class="property_name"><a class="link" href="gsf-Compression.html#GsfOutputGZip--raw" title="The “raw” property">raw</a></td>
107
+ <td class="property_flags">Read / Write / Construct Only</td>
108
+ </tr>
109
+ <tr>
110
+ <td class="property_type">
111
+ <a class="link" href="gsf-Output-to-unstructured-files.html#GsfOutput"><span class="type">GsfOutput</span></a> *</td>
112
+ <td class="property_name"><a class="link" href="gsf-Compression.html#GsfOutputGZip--sink" title="The “sink” property">sink</a></td>
113
+ <td class="property_flags">Read / Write / Construct Only</td>
114
+ </tr>
115
+ </tbody>
116
+ </table></div>
117
+ </div>
118
+ <a name="GsfInputGZip"></a><a name="GsfOutputGZip"></a><a name="GsfOutputBzip"></a><div class="refsect1">
119
+ <a name="gsf-Compression.other"></a><h2>Types and Values</h2>
120
+ <div class="informaltable"><table width="100%" border="0">
121
+ <colgroup>
122
+ <col width="150px" class="name">
123
+ <col class="description">
124
+ </colgroup>
125
+ <tbody>
126
+ <tr>
127
+ <td class="datatype_keyword"> </td>
128
+ <td class="function_name"><a class="link" href="gsf-Compression.html#GsfInputGZip-struct" title="GsfInputGZip">GsfInputGZip</a></td>
129
+ </tr>
130
+ <tr>
131
+ <td class="datatype_keyword"> </td>
132
+ <td class="function_name"><a class="link" href="gsf-Compression.html#GsfOutputGZip-struct" title="GsfOutputGZip">GsfOutputGZip</a></td>
133
+ </tr>
134
+ <tr>
135
+ <td class="datatype_keyword"> </td>
136
+ <td class="function_name"><a class="link" href="gsf-Compression.html#GsfOutputBzip-struct" title="GsfOutputBzip">GsfOutputBzip</a></td>
137
+ </tr>
138
+ </tbody>
139
+ </table></div>
140
+ </div>
141
+ <div class="refsect1">
142
+ <a name="gsf-Compression.object-hierarchy"></a><h2>Object Hierarchy</h2>
143
+ <pre class="screen"> GObject
144
+ <span class="lineart">├──</span> <a class="link" href="gsf-Input-from-unstructured-files.html#GsfInput">GsfInput</a>
145
+ <span class="lineart">│</span> <span class="lineart">╰──</span> GsfInputGZip
146
+ <span class="lineart">╰──</span> <a class="link" href="gsf-Output-to-unstructured-files.html#GsfOutput">GsfOutput</a>
147
+ <span class="lineart">├──</span> GsfOutputBzip
148
+ <span class="lineart">╰──</span> GsfOutputGZip
149
+ </pre>
150
+ </div>
151
+ <div class="refsect1">
152
+ <a name="gsf-Compression.description"></a><h2>Description</h2>
153
+ <p>
154
+ </p>
155
+ </div>
156
+ <div class="refsect1">
157
+ <a name="gsf-Compression.functions_details"></a><h2>Functions</h2>
158
+ <div class="refsect2">
159
+ <a name="gsf-input-gzip-new"></a><h3>gsf_input_gzip_new ()</h3>
160
+ <pre class="programlisting"><a class="link" href="gsf-Input-from-unstructured-files.html#GsfInput"><span class="returnvalue">GsfInput</span></a> *
161
+ gsf_input_gzip_new (<em class="parameter"><code><a class="link" href="gsf-Input-from-unstructured-files.html#GsfInput"><span class="type">GsfInput</span></a> *source</code></em>,
162
+ <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
163
+ <p>Adds a reference to <em class="parameter"><code>source</code></em>
164
+ .</p>
165
+ <div class="refsect3">
166
+ <a name="id-1.6.5.5.11.2.5"></a><h4>Parameters</h4>
167
+ <div class="informaltable"><table width="100%" border="0">
168
+ <colgroup>
169
+ <col width="150px" class="parameters_name">
170
+ <col class="parameters_description">
171
+ <col width="200px" class="parameters_annotations">
172
+ </colgroup>
173
+ <tbody>
174
+ <tr>
175
+ <td class="parameter_name"><p>source</p></td>
176
+ <td class="parameter_description"><p>The underlying data source.</p></td>
177
+ <td class="parameter_annotations"> </td>
178
+ </tr>
179
+ <tr>
180
+ <td class="parameter_name"><p>err</p></td>
181
+ <td class="parameter_description"><p> place to store a <span class="type">GError</span> if anything goes wrong. </p></td>
182
+ <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>
183
+ </tr>
184
+ </tbody>
185
+ </table></div>
186
+ </div>
187
+ <div class="refsect3">
188
+ <a name="id-1.6.5.5.11.2.6"></a><h4>Returns</h4>
189
+ <p> a new file or <code class="literal">NULL</code>.</p>
190
+ <p></p>
191
+ </div>
192
+ </div>
193
+ <hr>
194
+ <div class="refsect2">
195
+ <a name="gsf-input-memory-new-from-bzip"></a><h3>gsf_input_memory_new_from_bzip ()</h3>
196
+ <pre class="programlisting"><a class="link" href="gsf-Input-from-unstructured-files.html#GsfInput"><span class="returnvalue">GsfInput</span></a> *
197
+ gsf_input_memory_new_from_bzip (<em class="parameter"><code><a class="link" href="gsf-Input-from-unstructured-files.html#GsfInput"><span class="type">GsfInput</span></a> *source</code></em>,
198
+ <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
199
+ <div class="refsect3">
200
+ <a name="id-1.6.5.5.11.3.4"></a><h4>Parameters</h4>
201
+ <div class="informaltable"><table width="100%" border="0">
202
+ <colgroup>
203
+ <col width="150px" class="parameters_name">
204
+ <col class="parameters_description">
205
+ <col width="200px" class="parameters_annotations">
206
+ </colgroup>
207
+ <tbody>
208
+ <tr>
209
+ <td class="parameter_name"><p>source</p></td>
210
+ <td class="parameter_description"><p>a <a class="link" href="gsf-Input-from-unstructured-files.html#GsfInput"><span class="type">GsfInput</span></a></p></td>
211
+ <td class="parameter_annotations"> </td>
212
+ </tr>
213
+ <tr>
214
+ <td class="parameter_name"><p>err</p></td>
215
+ <td class="parameter_description"><p> place to store a <span class="type">GError</span> if anything goes wrong. </p></td>
216
+ <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>
217
+ </tr>
218
+ </tbody>
219
+ </table></div>
220
+ </div>
221
+ <div class="refsect3">
222
+ <a name="id-1.6.5.5.11.3.5"></a><h4>Returns</h4>
223
+ <p> a new <a class="link" href="gsf-memory.html#GsfInputMemory"><span class="type">GsfInputMemory</span></a> or <code class="literal">NULL</code>.</p>
224
+ <p></p>
225
+ </div>
226
+ </div>
227
+ <hr>
228
+ <div class="refsect2">
229
+ <a name="gsf-output-gzip-new"></a><h3>gsf_output_gzip_new ()</h3>
230
+ <pre class="programlisting"><a class="link" href="gsf-Output-to-unstructured-files.html#GsfOutput"><span class="returnvalue">GsfOutput</span></a> *
231
+ gsf_output_gzip_new (<em class="parameter"><code><a class="link" href="gsf-Output-to-unstructured-files.html#GsfOutput"><span class="type">GsfOutput</span></a> *sink</code></em>,
232
+ <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
233
+ <p>Adds a reference to <em class="parameter"><code>sink</code></em>
234
+ .</p>
235
+ <div class="refsect3">
236
+ <a name="id-1.6.5.5.11.4.5"></a><h4>Parameters</h4>
237
+ <div class="informaltable"><table width="100%" border="0">
238
+ <colgroup>
239
+ <col width="150px" class="parameters_name">
240
+ <col class="parameters_description">
241
+ <col width="200px" class="parameters_annotations">
242
+ </colgroup>
243
+ <tbody>
244
+ <tr>
245
+ <td class="parameter_name"><p>sink</p></td>
246
+ <td class="parameter_description"><p>The underlying data source.</p></td>
247
+ <td class="parameter_annotations"> </td>
248
+ </tr>
249
+ <tr>
250
+ <td class="parameter_name"><p>err</p></td>
251
+ <td class="parameter_description"><p>optionally <code class="literal">NULL</code>.</p></td>
252
+ <td class="parameter_annotations"> </td>
253
+ </tr>
254
+ </tbody>
255
+ </table></div>
256
+ </div>
257
+ <div class="refsect3">
258
+ <a name="id-1.6.5.5.11.4.6"></a><h4>Returns</h4>
259
+ <p> a new file or <code class="literal">NULL</code>.</p>
260
+ <p></p>
261
+ </div>
262
+ </div>
263
+ <hr>
264
+ <div class="refsect2">
265
+ <a name="gsf-output-bzip-new"></a><h3>gsf_output_bzip_new ()</h3>
266
+ <pre class="programlisting"><a class="link" href="gsf-Output-to-unstructured-files.html#GsfOutput"><span class="returnvalue">GsfOutput</span></a> *
267
+ gsf_output_bzip_new (<em class="parameter"><code><a class="link" href="gsf-Output-to-unstructured-files.html#GsfOutput"><span class="type">GsfOutput</span></a> *sink</code></em>,
268
+ <em class="parameter"><code><span class="type">GError</span> **err</code></em>);</pre>
269
+ <p>Adds a reference to <em class="parameter"><code>sink</code></em>
270
+ .</p>
271
+ <div class="refsect3">
272
+ <a name="id-1.6.5.5.11.5.5"></a><h4>Parameters</h4>
273
+ <div class="informaltable"><table width="100%" border="0">
274
+ <colgroup>
275
+ <col width="150px" class="parameters_name">
276
+ <col class="parameters_description">
277
+ <col width="200px" class="parameters_annotations">
278
+ </colgroup>
279
+ <tbody>
280
+ <tr>
281
+ <td class="parameter_name"><p>sink</p></td>
282
+ <td class="parameter_description"><p>The underlying data source.</p></td>
283
+ <td class="parameter_annotations"> </td>
284
+ </tr>
285
+ <tr>
286
+ <td class="parameter_name"><p>err</p></td>
287
+ <td class="parameter_description"><p>optionally <code class="literal">NULL</code>.</p></td>
288
+ <td class="parameter_annotations"> </td>
289
+ </tr>
290
+ </tbody>
291
+ </table></div>
292
+ </div>
293
+ <div class="refsect3">
294
+ <a name="id-1.6.5.5.11.5.6"></a><h4>Returns</h4>
295
+ <p> a new file or <code class="literal">NULL</code>.</p>
296
+ <p></p>
297
+ </div>
298
+ </div>
299
+ </div>
300
+ <div class="refsect1">
301
+ <a name="gsf-Compression.other_details"></a><h2>Types and Values</h2>
302
+ <div class="refsect2">
303
+ <a name="GsfInputGZip-struct"></a><h3>GsfInputGZip</h3>
304
+ <pre class="programlisting">typedef struct _GsfInputGZip GsfInputGZip;</pre>
305
+ <p>
306
+ </p>
307
+ </div>
308
+ <hr>
309
+ <div class="refsect2">
310
+ <a name="GsfOutputGZip-struct"></a><h3>GsfOutputGZip</h3>
311
+ <pre class="programlisting">typedef struct _GsfOutputGZip GsfOutputGZip;</pre>
312
+ <p>
313
+ </p>
314
+ </div>
315
+ <hr>
316
+ <div class="refsect2">
317
+ <a name="GsfOutputBzip-struct"></a><h3>GsfOutputBzip</h3>
318
+ <pre class="programlisting">typedef struct _GsfOutputBzip GsfOutputBzip;</pre>
319
+ <p>
320
+ </p>
321
+ </div>
322
+ </div>
323
+ <div class="refsect1">
324
+ <a name="gsf-Compression.property-details"></a><h2>Property Details</h2>
325
+ <div class="refsect2">
326
+ <a name="GsfInputGZip--raw"></a><h3>The <code class="literal">“raw”</code> property</h3>
327
+ <pre class="programlisting"> “raw” <span class="type">gboolean</span></pre>
328
+ <p>Whether to read compressed data with no header and no trailer.</p>
329
+ <p>Flags: Read / Write / Construct Only</p>
330
+ <p>Default value: FALSE</p>
331
+ </div>
332
+ <hr>
333
+ <div class="refsect2">
334
+ <a name="GsfInputGZip--source"></a><h3>The <code class="literal">“source”</code> property</h3>
335
+ <pre class="programlisting"> “source” <a class="link" href="gsf-Input-from-unstructured-files.html#GsfInput"><span class="type">GsfInput</span></a> *</pre>
336
+ <p>Where the compressed data comes from.</p>
337
+ <p>Flags: Read / Write / Construct Only</p>
338
+ </div>
339
+ <hr>
340
+ <div class="refsect2">
341
+ <a name="GsfInputGZip--uncompressed-size"></a><h3>The <code class="literal">“uncompressed-size”</code> property</h3>
342
+ <pre class="programlisting"> “uncompressed-size” <span class="type">gint64</span></pre>
343
+ <p>The source's uncompressed size.</p>
344
+ <p>Flags: Read / Write / Construct Only</p>
345
+ <p>Allowed values: &gt;= -1</p>
346
+ <p>Default value: -1</p>
347
+ </div>
348
+ <hr>
349
+ <div class="refsect2">
350
+ <a name="GsfOutputGZip--raw"></a><h3>The <code class="literal">“raw”</code> property</h3>
351
+ <pre class="programlisting"> “raw” <span class="type">gboolean</span></pre>
352
+ <p>Whether to write compressed data with no header/tailer.</p>
353
+ <p>Flags: Read / Write / Construct Only</p>
354
+ <p>Default value: FALSE</p>
355
+ </div>
356
+ <hr>
357
+ <div class="refsect2">
358
+ <a name="GsfOutputGZip--sink"></a><h3>The <code class="literal">“sink”</code> property</h3>
359
+ <pre class="programlisting"> “sink” <a class="link" href="gsf-Output-to-unstructured-files.html#GsfOutput"><span class="type">GsfOutput</span></a> *</pre>
360
+ <p>Where the compressed data is written.</p>
361
+ <p>Flags: Read / Write / Construct Only</p>
362
+ </div>
363
+ </div>
364
+ </div>
365
+ <div class="footer">
366
+ <hr>
367
+ Generated by GTK-Doc V1.20</div>
368
+ </body>
369
+ </html>