home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / GCC / GERLIB_USR08B.LHA / gerlib / examples / add / baserel / CED_Support.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-12-12  |  1.1 KB  |  61 lines

  1. /*-- Rev Header - do NOT edit!
  2.  *
  3.  *  Filename : CED_Support.h
  4.  *  Purpose  : Einige Hilfsroutinen für CED
  5.  *
  6.  *  Program  : -
  7.  *  Author   : Gerhard Müller
  8.  *  Copyright: (c) by Gerhard Müller
  9.  *  Creation : Fri Sep 10 00:41:01 1993
  10.  *
  11.  *  compile  : makefile
  12.  *
  13.  *  Compile version  : 0.1
  14.  *  Ext. Version     : 0.1
  15.  *
  16.  *  REVISION HISTORY
  17.  *
  18.  *  Date       C-Version  E-Version    Comment
  19.  *  ---------  ---------  -----------  -------
  20.  *  9.Sept.93                          work started, CED 3.5 is needed
  21.  *
  22.  *
  23.  *
  24.  *-- REV_END --
  25.  */
  26.  
  27. #ifndef ADD_CED_SUPPORT_H
  28. #define ADD_CED_SUPPORT_H
  29.  
  30.     /*
  31.      * C-Includes, C-Definitionen
  32.      *
  33.      */
  34.  
  35. #ifdef __cplusplus
  36. extern "C" {
  37. #endif
  38.  
  39. #include <exec/types.h>
  40. #include <rexx/storage.h>
  41. #include <inline/stubs.h>
  42.  
  43. extern struct RexxMsg    TheMessage;
  44.  
  45. /**************************************************************************/
  46.  
  47. BOOL SendCygnusEdMessage(char *thecommand);
  48. BOOL SendCygnusEdMessageGetReply(char *thecommand);
  49. char *GetStringFromArexx();
  50. BOOL GetNumberFromArexx(LONG *number);
  51. void GetNothingFromArexx();
  52.  
  53.  
  54. /**************************************************************************/
  55.  
  56. #ifdef __cplusplus
  57. }
  58. #endif
  59.  
  60. #endif
  61.