Use new github account
[oggquiz.git] / player.h
blobb372972c454849a16dbe2c921c51b596e962089d
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 plr_context;
11 struct plr_context *plr_context_open(char const *_ogg123, char const *_ogg123_options);
12 void plr_context_close(struct plr_context *_ctx);
13 void plr_play(struct plr_context *_ctx, char *_oggfile);
14 void plr_stop(struct plr_context *_ctx);