added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git] / compiler / include / gadgets / tapedeck.h
blob6d402628b1289ee5e4411eed00dfb2583724ed0e
1 #ifndef GADGETS_TAPEDECK_H
2 #define GADGETS_TAPEDECK_H
4 /*
5 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
6 $Id$
8 Desc: MethodIDs and AttrIDs for the tapedeck class.
9 Lang: english
12 #ifndef UTILITY_TAGITEM_H
13 # include <utility/tagitem.h>
14 #endif
16 #define TDECK_Dummy (TAG_USER | 0x5000000)
17 #define TDECK_Mode (TDECK_Dummy + 0x1 )
18 #define TDECK_Paused (TDECK_Dummy + 0x2 )
19 #define TDECK_Tape (TDECK_Dummy + 0x3 )
20 #define TDECK_Frames (TDECK_Dummy + 0xB )
21 #define TDECK_CurrentFrame (TDECK_Dummy + 0xC )
23 #define BUT_REWIND 0
24 #define BUT_PLAY 1
25 #define BUT_FORWARD 2
26 #define BUT_STOP 3
27 #define BUT_PAUSE 4
28 #define BUT_BEGIN 5
29 #define BUT_FRAME 6
30 #define BUT_END 7
32 #endif /* GADGETS_TAPEDECK_H */