Use new github account
[oggquiz.git] / oggfile.h
blob723ed39d3ad3eb6c2f0b3936c92ea32685e4a05e
1 /*-
2 * "THE BEER-WARE LICENSE" (Revision 42):
3 * <tobias.rehbein@web.de> wrote this file. As long as you retain this notice
4 * you can do whatever you want with this stuff. If we meet some day, and you
5 * think this stuff is worth it, you can buy me a beer in return.
6 * Tobias Rehbein
7 */
9 struct ogg_oggfile {
10 char artist[128];
11 char album[128];
12 char title[128];
13 char filename[1024];
16 struct ogg_context;
18 int ogg_context_close(struct ogg_context *_ctx);
19 struct ogg_context *ogg_context_open(void);
20 int ogg_oggfile_create(struct ogg_context *_ctx, struct ogg_oggfile *_oggfile, char *_filename);