home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 4
/
FreshFish_May-June1994.bin
/
bbs
/
cbm
/
os-include.lha
/
os-include
/
clib
/
realtime_protos.h
< prev
next >
Wrap
C/C++ Source or Header
|
1993-10-15
|
1KB
|
45 lines
#ifndef CLIB_REALTIME_PROTOS_H
#define CLIB_REALTIME_PROTOS_H
/*
** $VER: realtime_protos.h 40.1 (16.3.93)
** Includes Release 40.15
**
** C prototypes. For use with 32 bit integers only.
**
** (C) Copyright 1990-1993 Commodore-Amiga, Inc.
** All Rights Reserved
*/
#ifndef EXEC_TYPES_H
#include <exec/types.h>
#endif
#ifndef LIBRARIES_REALTIME_H
#include <libraries/realtime.h>
#endif
#ifndef UTILITY_TAGITEM_H
#include <utility/tagitem.h>
#endif
/*--- functions in V37 or higher (Release 2.04) ---*/
/* Locks */
APTR LockRealTime( unsigned long lockType );
void UnlockRealTime( APTR lock );
/* Conductor */
struct Player *CreatePlayerA( struct TagItem *tagList );
struct Player *CreatePlayer( Tag tag1, ... );
void DeletePlayer( struct Player *player );
BOOL SetPlayerAttrsA( struct Player *player, struct TagItem *tagList );
BOOL SetPlayerAttrs( struct Player *player, Tag tag1, ... );
LONG SetConductorState( struct Player *player, unsigned long state,
long time );
BOOL ExternalSync( struct Player *player, long minTime, long maxTime );
struct Conductor *NextConductor( struct Conductor *previousConductor );
struct Conductor *FindConductor( STRPTR name );
ULONG GetPlayerAttrsA( struct Player *player, struct TagItem *tagList );
ULONG GetPlayerAttrs( struct Player *player, Tag tag1, ... );
#endif /* CLIB_REALTIME_PROTOS_H */