summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/common/track.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/firmware/common/track.h b/firmware/common/track.h
new file mode 100644
index 0000000000..1f2eb874d1
--- /dev/null
+++ b/firmware/common/track.h
@@ -0,0 +1,30 @@
1
2/***************************************************************************
3 * __________ __ ___.
4 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
5 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
6 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
7 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
8 * \/ \/ \/ \/ \/
9 * $Id$
10 *
11 * Copyright (C) 2002 by wavey@wavey.org
12 *
13 * All files in this archive are subject to the GNU General Public License.
14 * See the file COPYING in the source tree root for full license agreement.
15 *
16 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
17 * KIND, either express or implied.
18 *
19 ****************************************************************************/
20
21#ifndef __TRACK_H__
22#define __TRACK_H__
23
24typedef struct
25{
26 char filename[128];
27}
28track_t;
29
30#endif /* __TRACK_H__ */