home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fred Fish Collection 1.5
/
ffcollection-1-5-1992-11.iso
/
ff_disks
/
200-299
/
ff258.lzh
/
STReplay
/
Include
/
LIBRARIES
/
streplay.h
< prev
next >
Wrap
C/C++ Source or Header
|
1989-10-18
|
733b
|
49 lines
/*
STReplay.library
by Olli, dem Größten
C-Standarddefinitionen
*/
#ifdef LATTICE
#include <proto/streplay.h>
#endif
#ifndef EXEC_LIBRARIES_H
#include <exec/libraries.h>
#endif
#ifndef LIBRARIES_DOS_H
#include <libraries/dos.h>
#endif
#define STREPLAYNAME "streplay.library"
#define STREPLAYVERSION 33
#define STREPLAYREVISION 8
/* the base we build upon... */
struct STReplayBase
{
struct Library Libnode;
BPTR strb_Seglist;
APTR strb_Module;
LONG strb_Len;
WORD strb_Running;
};
/* Libfunctions */
LONG LoadModule();
VOID StartSong();
VOID StopSong();
LONG IsRunning();
VOID UnloadModule();
LONG IsModule();
/* Returns from LoadModule() */
#define STLE_NOFILE -1L
#define STLE_NOMEM -2L
#define STLE_OK 0L