/*-- Rev Header - do NOT edit!
 *
 *  Filename : Arexx_Support.h
 *  Purpose  : Einige Hilfsroutinen für Arexx
 *
 *  Program  : -
 *  Author   : Gerhard Müller
 *  Copyright: (c) by Gerhard Müller
 *  Creation : Fri Sep 10 00:41:01 1993
 *
 *  compile  : makefile
 *
 *  Compile version  : 0.1
 *  Ext. Version     : 0.1
 *
 *  REVISION HISTORY
 *
 *  Date       C-Version  E-Version    Comment
 *  ---------  ---------  -----------  -------
 *  9.Sept.93                          work started, CED 3.5 is needed
 *  Mon Nov 29 17:39:03 1993 modified for Arexx in general, not only for CED
 *
 *
 *
 *-- REV_END --
 */

#ifndef ADD_AREXX_SUPPORT_H
#define ADD_AREXX_SUPPORT_H

	/*
	 * C-Includes, C-Definitionen
	 *
	 */

#ifdef __cplusplus
extern "C" {
#endif

#include <exec/types.h>
#include <rexx/storage.h>
#include <inline/stubs.h>

extern struct RexxMsg	TheMessage;
extern UBYTE *Actual_Arexx_Port;

/**************************************************************************/

BOOL SendArexxMessage(char *thecommand);
BOOL SendArexxMessageGetReply(char *thecommand);
char *GetStringFromArexx();
BOOL GetNumberFromArexx(LONG *number);
void GetNothingFromArexx();


/**************************************************************************/

#ifdef __cplusplus
}
#endif

#endif
