home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 1998 #5
/
AmigaPlus_CD-ROM_Nr.5-98.iso
/
system
/
dsound
/
source.lha
/
minrexx.h
< prev
next >
Wrap
C/C++ Source or Header
|
1994-07-18
|
895b
|
33 lines
/*
* Includes for minrexx.c; please refer to that file for
* further documentation.
*/
#include <rexx/rxslib.h>
/*
* This is the list of functions we can access. (Cheap forward
* declarations, too.)
*/
long upRexxPort(char *,struct rexxCommandList *,char *,int(*)());
void dnRexxPort(void) ;
void dispRexxPort(void) ;
struct RexxMsg *sendRexxCmd() ;
struct RexxMsg *syncRexxCmd() ;
struct RexxMsg *asyncRexxCmd() ;
void replyRexxCmd(struct RexxMsg *,long,long,char *) ;
/*
* Maximum messages that can be pending, and the return codes
* for two bad situations.
*/
#define MAXRXOUTSTANDING (300)
#define RXERRORIMGONE (100)
#define RXERRORNOCMD (30)
/*
* This is the association list you build up (statically or
* dynamically) that should be terminated with an entry with
* NULL for the name . . .
*/
struct rexxCommandList {
char *name ;
APTR userdata ;
} ;