home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / rxawar.zip / README.TXT
Text File  |  1994-08-05  |  3KB  |  78 lines

  1. ============================================================================
  2.  VX-REXX Tech Note #7:                           
  3.  
  4.                                          Designing REXX-aware Applications
  5.  
  6.                                                             August 1, 1994
  7.  
  8.                    This tech note is NOT specific to VX-REXX.  You need a C
  9.                    compiler to compile the source examples.
  10.  
  11. ----------------------------------------------------------------------------
  12.  
  13.                                                        Eric Giguere
  14.                                                        Watcom International
  15.  
  16. ============================================================================
  17.  
  18. Abstract
  19. --------
  20.  
  21. This is the source that accompanies the article "Designing REXX-Aware
  22. Applications", in the REXX Report, published by the publishers of
  23. OS/2 Developer and available on newsstands or directly from Miller Freeman.
  24.  
  25. The article text is not repeated here.  The article discusses in
  26. general terms what it means to make a "REXX-aware" application.  The source
  27. code presented here shows you how to do it.
  28.  
  29. Each set of source code is presented in its own subdirectory.  You should
  30. look at them in a certain order, as they build on each other:
  31.  
  32.  
  33.     RUNMACRO -- Shows how to call the RexxStart() function to run a
  34.                 macro.
  35.  
  36.     FUNCS -- Shows how to write a simple external function.
  37.  
  38.     SUBCOM -- Shows how to write a simple subcommand handler.
  39.  
  40.     EXITS -- Shows how to use system exits to intercept interesting
  41.              events.
  42.  
  43.     INLINE -- Shows how to run inline (in memory) REXX code.
  44.  
  45.     VARPOOL -- Shows to to access the REXX variable pool.
  46.  
  47.  
  48. Each subdirectory includes makefiles for use with WATCOM C/C++ 9.5 or up
  49. and CSet++ 2.1.  To make for WATCOM C/C++, use the command:
  50.  
  51.             wmake /f makefile.wat
  52.  
  53. For CSet++, use:
  54.  
  55.             nmake /f makefile.ibm
  56.  
  57.  
  58.  
  59. Eric Giguere
  60. Watcom International
  61. giguere@watcom.on.ca
  62.  
  63.  
  64.  
  65. Disclaimer:
  66. -----------
  67.  
  68. The source code in this package is Copyright 1994 by Watcom International,
  69. a PowerSoft company, and is presented as-is with no explicit or implied
  70. warranties.  Permission is granted to distribute this package and to use
  71. the source code in your own programs.  If you do use the source code, there
  72. is no requirement to label your programs or to otherwise acknowledge the
  73. use of the code.
  74.  
  75. Eric would, however, appreciate it if you told him you found the code
  76. useful and that if applicable you tested it with VX-REXX.
  77.  
  78.