summaryrefslogtreecommitdiff
path: root/plugins/vorbis/vceditaux.h
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-04-05 15:21:51 +0200
committerGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-04-05 15:24:16 +0200
commit3f2e3471d49abd1db57709a119a341c2a8a64204 (patch)
treee779e7967aaae0af3661733ec72949a05f1b3839 /plugins/vorbis/vceditaux.h
parent1dfd6d2399b20a72aae401fa8b4893ee1558dd03 (diff)
added ogg vorbis tag editing
Diffstat (limited to 'plugins/vorbis/vceditaux.h')
-rw-r--r--plugins/vorbis/vceditaux.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/plugins/vorbis/vceditaux.h b/plugins/vorbis/vceditaux.h
new file mode 100644
index 00000000..bb40eaeb
--- /dev/null
+++ b/plugins/vorbis/vceditaux.h
@@ -0,0 +1,9 @@
+typedef struct vcedit_page_buffer {
+ char *data;
+ size_t data_len;
+} vcedit_page_buffer;
+
+typedef struct vcedit_buffer_chain {
+ struct vcedit_buffer_chain *next;
+ struct vcedit_page_buffer buffer;
+} vcedit_buffer_chain;