R-PAGE
Resistance's Portable-Adventure-Game-Engine
ptreplay.h
Go to the documentation of this file.
1 
2 /* ptreplay.h -- definition of ptreplay.library structures */
3 
4 #ifndef LIBRARIES_PTREPLAY_H
5 #define LIBRARIES_PTREPLAY_H
6 
7 #ifndef EXEC_TYPES_H
8 #include <exec/types.h>
9 #endif
10 
11 #define PTREPLAYNAME "ptreplay.library"
12 
13 struct Module
14 {
15  STRPTR mod_Name;
16 /* The rest is private for now, but more details may be released later. */
17 };
18 
19 /* This structure is returned by GetSample function */
20 struct PTSample
21 {
22  UBYTE Name[22]; /* Null terminated string with samplename */
23  UWORD Length; /* Sample length in words */
24  UBYTE FineTune; /* FineTune of sample in lower 4 bits */
25  UBYTE Volume; /* Volume of sample */
26  UWORD Repeat; /* Repeat start in number of words */
27  UWORD Replen; /* Repeat length in number of words */
28 };
29 
30 #endif /* LIBRARIES_PTREPLAY_H */
UBYTE Volume
Definition: ptreplay.h:25
UWORD Replen
Definition: ptreplay.h:27
unsigned char UBYTE
Definition: utils.h:20
unsigned short UWORD
Definition: utils.h:28
UWORD Length
Definition: ptreplay.h:23
UBYTE FineTune
Definition: ptreplay.h:24
UWORD Repeat
Definition: ptreplay.h:26
STRPTR mod_Name
Definition: ptreplay.h:15