home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frozen Fish 1: Amiga
/
FrozenFish-Apr94.iso
/
bbs
/
alib
/
d1xx
/
d188
/
minrexx.lha
/
MinRexx
/
minrexx.h
< prev
next >
Wrap
C/C++ Source or Header
|
1989-02-26
|
808b
|
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() ;
void dnRexxPort() ;
void dispRexxPort() ;
struct RexxMsg *sendRexxCmd() ;
struct RexxMsg *syncRexxCmd() ;
struct RexxMsg *asyncRexxCmd() ;
void replyRexxCmd() ;
/*
* 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 ;
} ;