
;ptreplay.i -- definition of ptreplay.library structures

	IFND	PTREPLAY_BASE_I
PTREPLAY_BASE_I SET 1

	IFND	EXEC_TYPES_I
	INCLUDE	"exec/types.i"
	ENDC

PTREPLAYNAME MACRO
	Dc.B	"ptreplay.library",0
	ENDM

	STRUCTURE Module,0
	APTR	mod_Name
	;The rest is private for now, but more details may be
	;released later.

	STRUCTRURE PTSample,0
	STRUCT	Name,22		;Null terminated string with samplename
	UWORD	Length;		;Sample length in words
	UBYTE	FineTune;		;FineTune of sample in lower 4 bits
	UBYTE	Volume;		;Volume of sample
	UWORD	Repeat;		;Repeat start in number of words
	UWORD	Replen;		;Repeat length in number of words

	ENDC