Mercurial > audlegacy
annotate doc/libaudacious/libaudacious-decl.txt @ 2131:a416e188db64 trunk
[svn] regex-powered jump to file - should be considerably faster than the old one
author | giacomo |
---|---|
date | Fri, 15 Dec 2006 16:04:22 -0800 |
parents | b89947411061 |
children | 0264fabf471d |
rev | line source |
---|---|
2053 | 1 <STRUCT> |
2 <NAME>VFSFile</NAME> | |
3 </STRUCT> | |
4 <STRUCT> | |
5 <NAME>VFSConstructor</NAME> | |
6 </STRUCT> | |
7 <STRUCT> | |
8 <NAME>VFSFile</NAME> | |
9 struct _VFSFile { | |
10 gchar *uri; | |
11 gpointer handle; | |
12 VFSConstructor *base; | |
13 }; | |
14 </STRUCT> | |
15 <STRUCT> | |
16 <NAME>VFSConstructor</NAME> | |
17 struct _VFSConstructor { | |
18 gchar *uri_id; | |
19 VFSFile *(*vfs_fopen_impl)(const gchar *path, | |
20 const gchar *mode); | |
21 gint (*vfs_fclose_impl)(VFSFile * file); | |
22 size_t (*vfs_fread_impl)(gpointer ptr, size_t size, | |
23 size_t nmemb, VFSFile *file); | |
24 size_t (*vfs_fwrite_impl)(gconstpointer ptr, size_t size, | |
25 size_t nmemb, VFSFile *file); | |
26 gint (*vfs_getc_impl)(VFSFile *stream); | |
27 gint (*vfs_ungetc_impl)(gint c, VFSFile *stream); | |
28 gint (*vfs_fseek_impl)(VFSFile *file, glong offset, gint whence); | |
29 void (*vfs_rewind_impl)(VFSFile *file); | |
30 glong (*vfs_ftell_impl)(VFSFile *file); | |
31 gboolean (*vfs_feof_impl)(VFSFile *file); | |
32 gboolean (*vfs_truncate_impl)(VFSFile *file, glong length); | |
33 }; | |
34 </STRUCT> | |
35 <FUNCTION> | |
36 <NAME>vfs_fopen</NAME> | |
37 <RETURNS>VFSFile *</RETURNS> | |
38 const gchar * path,const gchar * mode | |
39 </FUNCTION> | |
40 <FUNCTION> | |
41 <NAME>vfs_fclose</NAME> | |
42 <RETURNS>gint </RETURNS> | |
43 VFSFile * file | |
44 </FUNCTION> | |
45 <FUNCTION> | |
46 <NAME>vfs_fread</NAME> | |
47 <RETURNS>size_t </RETURNS> | |
48 gpointer ptr,size_t size,size_t nmemb,VFSFile * file | |
49 </FUNCTION> | |
50 <FUNCTION> | |
51 <NAME>vfs_fwrite</NAME> | |
52 <RETURNS>size_t </RETURNS> | |
53 gconstpointer ptr,size_t size,size_t nmemb,VFSFile *file | |
54 </FUNCTION> | |
55 <FUNCTION> | |
56 <NAME>vfs_getc</NAME> | |
57 <RETURNS>gint </RETURNS> | |
58 VFSFile *stream | |
59 </FUNCTION> | |
60 <FUNCTION> | |
61 <NAME>vfs_ungetc</NAME> | |
62 <RETURNS>gint </RETURNS> | |
63 gint c,VFSFile *stream | |
64 </FUNCTION> | |
65 <FUNCTION> | |
66 <NAME>vfs_fgets</NAME> | |
67 <RETURNS>gchar *</RETURNS> | |
68 gchar *s,gint n,VFSFile *stream | |
69 </FUNCTION> | |
70 <FUNCTION> | |
71 <NAME>vfs_fseek</NAME> | |
72 <RETURNS>gint </RETURNS> | |
73 VFSFile * file,glong offset,gint whence | |
74 </FUNCTION> | |
75 <FUNCTION> | |
76 <NAME>vfs_rewind</NAME> | |
77 <RETURNS>void </RETURNS> | |
78 VFSFile * file | |
79 </FUNCTION> | |
80 <FUNCTION> | |
81 <NAME>vfs_ftell</NAME> | |
82 <RETURNS>glong </RETURNS> | |
83 VFSFile * file | |
84 </FUNCTION> | |
85 <FUNCTION> | |
86 <NAME>vfs_feof</NAME> | |
87 <RETURNS>gboolean </RETURNS> | |
88 VFSFile * file | |
89 </FUNCTION> | |
90 <FUNCTION> | |
91 <NAME>vfs_file_test</NAME> | |
92 <RETURNS>gboolean </RETURNS> | |
93 const gchar * path,GFileTest test | |
94 </FUNCTION> | |
95 <FUNCTION> | |
96 <NAME>vfs_is_writeable</NAME> | |
97 <RETURNS>gboolean </RETURNS> | |
98 const gchar * path | |
99 </FUNCTION> | |
100 <FUNCTION> | |
101 <NAME>vfs_truncate</NAME> | |
102 <RETURNS>gboolean </RETURNS> | |
103 VFSFile * file, glong length | |
104 </FUNCTION> | |
105 <FUNCTION> | |
106 <NAME>vfs_fprintf</NAME> | |
107 <RETURNS>int </RETURNS> | |
108 VFSFile *stream, gchar const *format, ... | |
109 </FUNCTION> | |
110 <FUNCTION> | |
111 <NAME>vfs_register_transport</NAME> | |
112 <RETURNS>gboolean </RETURNS> | |
113 VFSConstructor *vtable | |
114 </FUNCTION> | |
2090
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
115 <STRUCT> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
116 <NAME>ConfigDb</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
117 </STRUCT> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
118 <FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
119 <NAME>bmp_cfg_db_open</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
120 <RETURNS>ConfigDb *</RETURNS> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
121 |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
122 </FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
123 <FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
124 <NAME>bmp_cfg_db_close</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
125 <RETURNS>void </RETURNS> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
126 ConfigDb *db |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
127 </FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
128 <FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
129 <NAME>bmp_cfg_db_get_string</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
130 <RETURNS>gboolean </RETURNS> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
131 ConfigDb *db,const gchar *section,const gchar *key,gchar **value |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
132 </FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
133 <FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
134 <NAME>bmp_cfg_db_get_int</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
135 <RETURNS>gboolean </RETURNS> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
136 ConfigDb *db,const gchar *section,const gchar *key,gint *value |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
137 </FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
138 <FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
139 <NAME>bmp_cfg_db_get_bool</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
140 <RETURNS>gboolean </RETURNS> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
141 ConfigDb *db,const gchar *section,const gchar *key,gboolean *value |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
142 </FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
143 <FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
144 <NAME>bmp_cfg_db_get_float</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
145 <RETURNS>gboolean </RETURNS> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
146 ConfigDb *db,const gchar *section,const gchar *key,gfloat *value |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
147 </FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
148 <FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
149 <NAME>bmp_cfg_db_get_double</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
150 <RETURNS>gboolean </RETURNS> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
151 ConfigDb *db,const gchar *section,const gchar *key,gdouble *value |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
152 </FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
153 <FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
154 <NAME>bmp_cfg_db_set_string</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
155 <RETURNS>void </RETURNS> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
156 ConfigDb *db,const gchar *section,const gchar *key,gchar *value |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
157 </FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
158 <FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
159 <NAME>bmp_cfg_db_set_int</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
160 <RETURNS>void </RETURNS> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
161 ConfigDb *db,const gchar *section,const gchar *key,gint value |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
162 </FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
163 <FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
164 <NAME>bmp_cfg_db_set_bool</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
165 <RETURNS>void </RETURNS> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
166 ConfigDb *db,const gchar *section,const gchar *key,gboolean value |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
167 </FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
168 <FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
169 <NAME>bmp_cfg_db_set_float</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
170 <RETURNS>void </RETURNS> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
171 ConfigDb *db,const gchar *section,const gchar *key,gfloat value |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
172 </FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
173 <FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
174 <NAME>bmp_cfg_db_set_double</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
175 <RETURNS>void </RETURNS> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
176 ConfigDb *db,const gchar *section,const gchar *key,gdouble value |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
177 </FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
178 <FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
179 <NAME>bmp_cfg_db_unset_key</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
180 <RETURNS>void </RETURNS> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
181 ConfigDb *db,const gchar *section,const gchar *key |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
182 </FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
183 <STRUCT> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
184 <NAME>RcLine</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
185 typedef struct { |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
186 gchar *key; |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
187 gchar *value; |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
188 } RcLine; |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
189 </STRUCT> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
190 <STRUCT> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
191 <NAME>RcSection</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
192 typedef struct { |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
193 gchar *name; |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
194 GList *lines; |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
195 } RcSection; |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
196 </STRUCT> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
197 <STRUCT> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
198 <NAME>RcFile</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
199 typedef struct { |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
200 GList *sections; |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
201 } RcFile; |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
202 </STRUCT> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
203 <FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
204 <NAME>bmp_rcfile_new</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
205 <RETURNS>RcFile *</RETURNS> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
206 void |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
207 </FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
208 <FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
209 <NAME>bmp_rcfile_free</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
210 <RETURNS>void </RETURNS> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
211 RcFile * file |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
212 </FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
213 <FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
214 <NAME>bmp_rcfile_open</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
215 <RETURNS>RcFile *</RETURNS> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
216 const gchar * filename |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
217 </FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
218 <FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
219 <NAME>bmp_rcfile_write</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
220 <RETURNS>gboolean </RETURNS> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
221 RcFile * file, const gchar * filename |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
222 </FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
223 <FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
224 <NAME>bmp_rcfile_read_string</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
225 <RETURNS>gboolean </RETURNS> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
226 RcFile * file, const gchar * section,const gchar * key, gchar ** value |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
227 </FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
228 <FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
229 <NAME>bmp_rcfile_read_int</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
230 <RETURNS>gboolean </RETURNS> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
231 RcFile * file, const gchar * section,const gchar * key, gint * value |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
232 </FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
233 <FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
234 <NAME>bmp_rcfile_read_bool</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
235 <RETURNS>gboolean </RETURNS> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
236 RcFile * file, const gchar * section,const gchar * key, gboolean * value |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
237 </FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
238 <FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
239 <NAME>bmp_rcfile_read_float</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
240 <RETURNS>gboolean </RETURNS> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
241 RcFile * file, const gchar * section,const gchar * key, gfloat * value |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
242 </FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
243 <FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
244 <NAME>bmp_rcfile_read_double</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
245 <RETURNS>gboolean </RETURNS> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
246 RcFile * file, const gchar * section,const gchar * key, gdouble * value |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
247 </FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
248 <FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
249 <NAME>bmp_rcfile_write_string</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
250 <RETURNS>void </RETURNS> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
251 RcFile * file, const gchar * section,const gchar * key, const gchar * value |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
252 </FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
253 <FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
254 <NAME>bmp_rcfile_write_int</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
255 <RETURNS>void </RETURNS> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
256 RcFile * file, const gchar * section,const gchar * key, gint value |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
257 </FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
258 <FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
259 <NAME>bmp_rcfile_write_boolean</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
260 <RETURNS>void </RETURNS> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
261 RcFile * file, const gchar * section,const gchar * key, gboolean value |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
262 </FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
263 <FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
264 <NAME>bmp_rcfile_write_float</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
265 <RETURNS>void </RETURNS> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
266 RcFile * file, const gchar * section,const gchar * key, gfloat value |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
267 </FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
268 <FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
269 <NAME>bmp_rcfile_write_double</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
270 <RETURNS>void </RETURNS> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
271 RcFile * file, const gchar * section,const gchar * key, gdouble value |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
272 </FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
273 <FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
274 <NAME>bmp_rcfile_remove_key</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
275 <RETURNS>void </RETURNS> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
276 RcFile * file, const gchar * section,const gchar * key |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
277 </FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
278 <STRUCT> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
279 <NAME>Formatter</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
280 typedef struct { |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
281 gchar *values[256]; |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
282 } Formatter; |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
283 </STRUCT> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
284 <FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
285 <NAME>xmms_formatter_new</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
286 <RETURNS>Formatter *</RETURNS> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
287 void |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
288 </FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
289 <FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
290 <NAME>xmms_formatter_destroy</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
291 <RETURNS>void </RETURNS> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
292 Formatter * formatter |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
293 </FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
294 <FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
295 <NAME>xmms_formatter_associate</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
296 <RETURNS>void </RETURNS> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
297 Formatter * formatter, guchar id,gchar * value |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
298 </FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
299 <FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
300 <NAME>xmms_formatter_dissociate</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
301 <RETURNS>void </RETURNS> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
302 Formatter * formatter, guchar id |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
303 </FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
304 <FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
305 <NAME>xmms_formatter_format</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
306 <RETURNS>gchar *</RETURNS> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
307 Formatter * formatter, gchar * format |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
308 </FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
309 <STRUCT> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
310 <NAME>TitleInput</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
311 typedef struct { |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
312 gint __size; /* Set by bmp_title_input_new() */ |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
313 gint __version; /* Ditto */ |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
314 |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
315 gchar *performer; /* %p */ |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
316 gchar *album_name; /* %a */ |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
317 gchar *track_name; /* %t */ |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
318 gint track_number; /* %n */ |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
319 gint year; /* %y */ |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
320 gchar *date; /* %d */ |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
321 gchar *genre; /* %g */ |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
322 gchar *comment; /* %c */ |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
323 gchar *file_name; /* %f */ |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
324 const gchar *file_ext; /* %e *//* is not always strdup'ed, see xmms_input_get_song_info and plugins! */ |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
325 gchar *file_path; /* %F */ |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
326 gint length; /* not displayable */ |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
327 gchar *formatter; /* not displayable */ |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
328 time_t mtime; |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
329 } TitleInput; |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
330 </STRUCT> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
331 <TYPEDEF> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
332 <NAME>BmpTitleInput</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
333 typedef TitleInput BmpTitleInput; |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
334 </TYPEDEF> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
335 <MACRO> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
336 <NAME>XMMS_TITLEINPUT_SIZE</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
337 #define XMMS_TITLEINPUT_SIZE sizeof(TitleInput) |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
338 </MACRO> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
339 <MACRO> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
340 <NAME>XMMS_TITLEINPUT_VERSION</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
341 #define XMMS_TITLEINPUT_VERSION (1) |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
342 </MACRO> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
343 <MACRO> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
344 <NAME>XMMS_NEW_TITLEINPUT</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
345 #define XMMS_NEW_TITLEINPUT(input) input = bmp_title_input_new(); |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
346 </MACRO> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
347 <FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
348 <NAME>bmp_title_input_new</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
349 <RETURNS>TitleInput *</RETURNS> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
350 void |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
351 </FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
352 <FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
353 <NAME>bmp_title_input_free</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
354 <RETURNS>void </RETURNS> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
355 BmpTitleInput * input |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
356 </FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
357 <FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
358 <NAME>xmms_get_titlestring</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
359 <RETURNS>gchar *</RETURNS> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
360 const gchar * fmt, TitleInput * input |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
361 </FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
362 <FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
363 <NAME>xmms_titlestring_descriptions</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
364 <RETURNS>GtkWidget *</RETURNS> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
365 gchar * tags, gint columns |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
366 </FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
367 <STRUCT> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
368 <NAME>xmms_convert_buffers</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
369 struct xmms_convert_buffers; |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
370 </STRUCT> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
371 <FUNCTION> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
372 <NAME>xmms_create_dir_browser</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
373 <RETURNS>GtkWidget *</RETURNS> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
374 gchar * title, gchar * current_path,GtkSelectionMode mode,void (*handler) (gchar *) |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
375 </FUNCTION> |
2053 | 376 <FUNCTION> |
377 <NAME>xmms_connect_to_session</NAME> | |
378 <RETURNS>gint </RETURNS> | |
379 gint session | |
380 </FUNCTION> | |
381 <FUNCTION> | |
382 <NAME>xmms_remote_playlist</NAME> | |
383 <RETURNS>void </RETURNS> | |
384 gint session, gchar ** list, gint num,gboolean enqueue | |
385 </FUNCTION> | |
386 <FUNCTION> | |
387 <NAME>xmms_remote_get_version</NAME> | |
388 <RETURNS>gint </RETURNS> | |
389 gint session | |
390 </FUNCTION> | |
391 <FUNCTION> | |
392 <NAME>xmms_remote_playlist_add</NAME> | |
393 <RETURNS>void </RETURNS> | |
394 gint session, GList * list | |
395 </FUNCTION> | |
396 <FUNCTION> | |
397 <NAME>xmms_remote_playlist_delete</NAME> | |
398 <RETURNS>void </RETURNS> | |
399 gint session, gint pos | |
400 </FUNCTION> | |
401 <FUNCTION> | |
402 <NAME>xmms_remote_play</NAME> | |
403 <RETURNS>void </RETURNS> | |
404 gint session | |
405 </FUNCTION> | |
406 <FUNCTION> | |
407 <NAME>xmms_remote_pause</NAME> | |
408 <RETURNS>void </RETURNS> | |
409 gint session | |
410 </FUNCTION> | |
411 <FUNCTION> | |
412 <NAME>xmms_remote_stop</NAME> | |
413 <RETURNS>void </RETURNS> | |
414 gint session | |
415 </FUNCTION> | |
416 <FUNCTION> | |
417 <NAME>xmms_remote_is_playing</NAME> | |
418 <RETURNS>gboolean </RETURNS> | |
419 gint session | |
420 </FUNCTION> | |
421 <FUNCTION> | |
422 <NAME>xmms_remote_is_paused</NAME> | |
423 <RETURNS>gboolean </RETURNS> | |
424 gint session | |
425 </FUNCTION> | |
426 <FUNCTION> | |
427 <NAME>xmms_remote_get_playlist_pos</NAME> | |
428 <RETURNS>gint </RETURNS> | |
429 gint session | |
430 </FUNCTION> | |
431 <FUNCTION> | |
432 <NAME>xmms_remote_set_playlist_pos</NAME> | |
433 <RETURNS>void </RETURNS> | |
434 gint session, gint pos | |
435 </FUNCTION> | |
436 <FUNCTION> | |
437 <NAME>xmms_remote_get_playlist_length</NAME> | |
438 <RETURNS>gint </RETURNS> | |
439 gint session | |
440 </FUNCTION> | |
441 <FUNCTION> | |
442 <NAME>xmms_remote_playlist_clear</NAME> | |
443 <RETURNS>void </RETURNS> | |
444 gint session | |
445 </FUNCTION> | |
446 <FUNCTION> | |
447 <NAME>xmms_remote_get_output_time</NAME> | |
448 <RETURNS>gint </RETURNS> | |
449 gint session | |
450 </FUNCTION> | |
451 <FUNCTION> | |
452 <NAME>xmms_remote_jump_to_time</NAME> | |
453 <RETURNS>void </RETURNS> | |
454 gint session, gint pos | |
455 </FUNCTION> | |
456 <FUNCTION> | |
457 <NAME>xmms_remote_get_volume</NAME> | |
458 <RETURNS>void </RETURNS> | |
459 gint session, gint * vl, gint * vr | |
460 </FUNCTION> | |
461 <FUNCTION> | |
462 <NAME>xmms_remote_get_main_volume</NAME> | |
463 <RETURNS>gint </RETURNS> | |
464 gint session | |
465 </FUNCTION> | |
466 <FUNCTION> | |
467 <NAME>xmms_remote_get_balance</NAME> | |
468 <RETURNS>gint </RETURNS> | |
469 gint session | |
470 </FUNCTION> | |
471 <FUNCTION> | |
472 <NAME>xmms_remote_set_volume</NAME> | |
473 <RETURNS>void </RETURNS> | |
474 gint session, gint vl, gint vr | |
475 </FUNCTION> | |
476 <FUNCTION> | |
477 <NAME>xmms_remote_set_main_volume</NAME> | |
478 <RETURNS>void </RETURNS> | |
479 gint session, gint v | |
480 </FUNCTION> | |
481 <FUNCTION> | |
482 <NAME>xmms_remote_set_balance</NAME> | |
483 <RETURNS>void </RETURNS> | |
484 gint session, gint b | |
485 </FUNCTION> | |
486 <FUNCTION> | |
487 <NAME>xmms_remote_get_skin</NAME> | |
488 <RETURNS>gchar *</RETURNS> | |
489 gint session | |
490 </FUNCTION> | |
491 <FUNCTION> | |
492 <NAME>xmms_remote_set_skin</NAME> | |
493 <RETURNS>void </RETURNS> | |
494 gint session, gchar * skinfile | |
495 </FUNCTION> | |
496 <FUNCTION> | |
497 <NAME>xmms_remote_get_playlist_file</NAME> | |
498 <RETURNS>gchar *</RETURNS> | |
499 gint session, gint pos | |
500 </FUNCTION> | |
501 <FUNCTION> | |
502 <NAME>xmms_remote_get_playlist_title</NAME> | |
503 <RETURNS>gchar *</RETURNS> | |
504 gint session, gint pos | |
505 </FUNCTION> | |
506 <FUNCTION> | |
507 <NAME>xmms_remote_get_playlist_time</NAME> | |
508 <RETURNS>gint </RETURNS> | |
509 gint session, gint pos | |
510 </FUNCTION> | |
511 <FUNCTION> | |
512 <NAME>xmms_remote_get_info</NAME> | |
513 <RETURNS>void </RETURNS> | |
514 gint session, gint * rate, gint * freq,gint * nch | |
515 </FUNCTION> | |
516 <FUNCTION> | |
517 <NAME>xmms_remote_main_win_toggle</NAME> | |
518 <RETURNS>void </RETURNS> | |
519 gint session, gboolean show | |
520 </FUNCTION> | |
521 <FUNCTION> | |
522 <NAME>xmms_remote_pl_win_toggle</NAME> | |
523 <RETURNS>void </RETURNS> | |
524 gint session, gboolean show | |
525 </FUNCTION> | |
526 <FUNCTION> | |
527 <NAME>xmms_remote_eq_win_toggle</NAME> | |
528 <RETURNS>void </RETURNS> | |
529 gint session, gboolean show | |
530 </FUNCTION> | |
531 <FUNCTION> | |
532 <NAME>xmms_remote_is_main_win</NAME> | |
533 <RETURNS>gboolean </RETURNS> | |
534 gint session | |
535 </FUNCTION> | |
536 <FUNCTION> | |
537 <NAME>xmms_remote_is_pl_win</NAME> | |
538 <RETURNS>gboolean </RETURNS> | |
539 gint session | |
540 </FUNCTION> | |
541 <FUNCTION> | |
542 <NAME>xmms_remote_is_eq_win</NAME> | |
543 <RETURNS>gboolean </RETURNS> | |
544 gint session | |
545 </FUNCTION> | |
546 <FUNCTION> | |
547 <NAME>xmms_remote_show_prefs_box</NAME> | |
548 <RETURNS>void </RETURNS> | |
549 gint session | |
550 </FUNCTION> | |
551 <FUNCTION> | |
552 <NAME>xmms_remote_toggle_aot</NAME> | |
553 <RETURNS>void </RETURNS> | |
554 gint session, gboolean ontop | |
555 </FUNCTION> | |
556 <FUNCTION> | |
557 <NAME>xmms_remote_eject</NAME> | |
558 <RETURNS>void </RETURNS> | |
559 gint session | |
560 </FUNCTION> | |
561 <FUNCTION> | |
562 <NAME>xmms_remote_playlist_prev</NAME> | |
563 <RETURNS>void </RETURNS> | |
564 gint session | |
565 </FUNCTION> | |
566 <FUNCTION> | |
567 <NAME>xmms_remote_playlist_next</NAME> | |
568 <RETURNS>void </RETURNS> | |
569 gint session | |
570 </FUNCTION> | |
571 <FUNCTION> | |
572 <NAME>xmms_remote_playlist_add_url_string</NAME> | |
573 <RETURNS>void </RETURNS> | |
574 gint session, gchar * string | |
575 </FUNCTION> | |
576 <FUNCTION> | |
577 <NAME>xmms_remote_is_running</NAME> | |
578 <RETURNS>gboolean </RETURNS> | |
579 gint session | |
580 </FUNCTION> | |
581 <FUNCTION> | |
582 <NAME>xmms_remote_toggle_repeat</NAME> | |
583 <RETURNS>void </RETURNS> | |
584 gint session | |
585 </FUNCTION> | |
586 <FUNCTION> | |
587 <NAME>xmms_remote_toggle_shuffle</NAME> | |
588 <RETURNS>void </RETURNS> | |
589 gint session | |
590 </FUNCTION> | |
591 <FUNCTION> | |
592 <NAME>xmms_remote_is_repeat</NAME> | |
593 <RETURNS>gboolean </RETURNS> | |
594 gint session | |
595 </FUNCTION> | |
596 <FUNCTION> | |
597 <NAME>xmms_remote_is_shuffle</NAME> | |
598 <RETURNS>gboolean </RETURNS> | |
599 gint session | |
600 </FUNCTION> | |
601 <FUNCTION> | |
602 <NAME>xmms_remote_get_eq</NAME> | |
603 <RETURNS>void </RETURNS> | |
604 gint session, gfloat * preamp,gfloat ** bands | |
605 </FUNCTION> | |
606 <FUNCTION> | |
607 <NAME>xmms_remote_get_eq_preamp</NAME> | |
608 <RETURNS>gfloat </RETURNS> | |
609 gint session | |
610 </FUNCTION> | |
611 <FUNCTION> | |
612 <NAME>xmms_remote_get_eq_band</NAME> | |
613 <RETURNS>gfloat </RETURNS> | |
614 gint session, gint band | |
615 </FUNCTION> | |
616 <FUNCTION> | |
617 <NAME>xmms_remote_set_eq</NAME> | |
618 <RETURNS>void </RETURNS> | |
619 gint session, gfloat preamp, gfloat * bands | |
620 </FUNCTION> | |
621 <FUNCTION> | |
622 <NAME>xmms_remote_set_eq_preamp</NAME> | |
623 <RETURNS>void </RETURNS> | |
624 gint session, gfloat preamp | |
625 </FUNCTION> | |
626 <FUNCTION> | |
627 <NAME>xmms_remote_set_eq_band</NAME> | |
628 <RETURNS>void </RETURNS> | |
629 gint session, gint band, gfloat value | |
630 </FUNCTION> | |
631 <FUNCTION> | |
632 <NAME>xmms_remote_quit</NAME> | |
633 <RETURNS>void </RETURNS> | |
634 gint session | |
635 </FUNCTION> | |
636 <FUNCTION> | |
637 <NAME>xmms_remote_play_pause</NAME> | |
638 <RETURNS>void </RETURNS> | |
639 gint session | |
640 </FUNCTION> | |
641 <FUNCTION> | |
642 <NAME>xmms_remote_playlist_ins_url_string</NAME> | |
643 <RETURNS>void </RETURNS> | |
644 gint session, gchar * string,gint pos | |
645 </FUNCTION> | |
646 <FUNCTION> | |
647 <NAME>xmms_remote_playqueue_add</NAME> | |
648 <RETURNS>void </RETURNS> | |
649 gint session, gint pos | |
650 </FUNCTION> | |
651 <FUNCTION> | |
652 <NAME>xmms_remote_playqueue_remove</NAME> | |
653 <RETURNS>void </RETURNS> | |
654 gint session, gint pos | |
655 </FUNCTION> | |
656 <FUNCTION> | |
657 <NAME>xmms_remote_get_playqueue_length</NAME> | |
658 <RETURNS>gint </RETURNS> | |
659 gint session | |
660 </FUNCTION> | |
661 <FUNCTION> | |
662 <NAME>xmms_remote_toggle_advance</NAME> | |
663 <RETURNS>void </RETURNS> | |
664 gint session | |
665 </FUNCTION> | |
666 <FUNCTION> | |
667 <NAME>xmms_remote_is_advance</NAME> | |
668 <RETURNS>gboolean </RETURNS> | |
669 gint session | |
670 </FUNCTION> | |
671 <FUNCTION> | |
672 <NAME>xmms_remote_activate</NAME> | |
673 <RETURNS>void </RETURNS> | |
674 gint session | |
675 </FUNCTION> | |
676 <FUNCTION> | |
677 <NAME>xmms_remote_show_jtf_box</NAME> | |
678 <RETURNS>void </RETURNS> | |
679 gint session | |
680 </FUNCTION> | |
681 <FUNCTION> | |
682 <NAME>xmms_remote_playqueue_clear</NAME> | |
683 <RETURNS>void </RETURNS> | |
684 gint session | |
685 </FUNCTION> | |
686 <FUNCTION> | |
687 <NAME>xmms_remote_playqueue_is_queued</NAME> | |
688 <RETURNS>gboolean </RETURNS> | |
689 gint session, gint pos | |
690 </FUNCTION> | |
691 <FUNCTION> | |
692 <NAME>xmms_remote_get_playqueue_position</NAME> | |
693 <RETURNS>gint </RETURNS> | |
694 gint session, gint pos | |
695 </FUNCTION> | |
696 <FUNCTION> | |
697 <NAME>xmms_remote_get_playqueue_queue_position</NAME> | |
698 <RETURNS>gint </RETURNS> | |
699 gint session, gint pos | |
700 </FUNCTION> | |
701 <FUNCTION> | |
702 <NAME>audacious_set_session_uri</NAME> | |
703 <RETURNS>void </RETURNS> | |
704 gchar *uri | |
705 </FUNCTION> | |
706 <FUNCTION> | |
707 <NAME>audacious_get_session_uri</NAME> | |
708 <RETURNS>gchar *</RETURNS> | |
709 gint session | |
710 </FUNCTION> | |
711 <FUNCTION> | |
712 <NAME>audacious_set_session_type</NAME> | |
713 <RETURNS>void </RETURNS> | |
714 gint type | |
715 </FUNCTION> | |
716 <FUNCTION> | |
717 <NAME>xmms_remote_play_files</NAME> | |
718 <RETURNS>void </RETURNS> | |
719 gint session, GList * list | |
720 </FUNCTION> | |
721 <MACRO> | |
722 <NAME>xmms_remote_add_files</NAME> | |
723 #define xmms_remote_add_files(session,list) \ | |
724 xmms_remote_playlist_add(session,list) | |
725 </MACRO> | |
726 <FUNCTION> | |
2090
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
727 <NAME>xmms_urldecode_path</NAME> |
2053 | 728 <RETURNS>gchar *</RETURNS> |
2090
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
729 const gchar * |
2053 | 730 </FUNCTION> |
731 <FUNCTION> | |
2090
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
732 <NAME>xmms_urldecode_plain</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
733 <RETURNS>gchar *</RETURNS> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
734 const gchar * |
2053 | 735 </FUNCTION> |
736 <STRUCT> | |
2090
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
737 <NAME>VFSBuffer</NAME> |
2072 | 738 typedef struct { |
2090
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
739 guchar *data; |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
740 guchar *iter; |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
741 guchar *end; |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
742 gsize size; |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
743 } VFSBuffer; |
2053 | 744 </STRUCT> |
745 <FUNCTION> | |
2090
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
746 <NAME>vfs_buffer_new</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
747 <RETURNS>VFSFile *</RETURNS> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
748 gpointer data, gsize size |
2053 | 749 </FUNCTION> |
750 <FUNCTION> | |
2090
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
751 <NAME>vfs_buffer_new_from_string</NAME> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
752 <RETURNS>VFSFile *</RETURNS> |
b89947411061
[svn] Make controlsocket.c happier. Still a ton of warnings, but it compiles now.
kiyoshi
parents:
2072
diff
changeset
|
753 gchar *str |
2053 | 754 </FUNCTION> |