Use upper case for macro names
[oggquiz.git] / oggfile.h
blob14bc0c3a2934c9cb32df70a8ad989ff5b76a3db8
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 #include "common.h"
11 #ifndef _oggfile_c_
12 #define _oggfile_c_
14 typedef struct {
15 char artist[ARTISTLEN];
16 char album[ALBUMLEN];
17 char title[TITLELEN];
18 char filename[FILENAMELEN];
20 } oggfile_t;
22 int oggfile_create(oggfile_t * oggfile, char *filename);
23 void oggfile_setup();
24 void oggfile_teardown();
26 #endif