home *** CD-ROM | disk | FTP | other *** search
/ Enigma Amiga Life 109 / EnigmaAmiga109CD.iso / software / on-line / amster / src / rexx.c < prev    next >
C/C++ Source or Header  |  2000-01-21  |  291b  |  24 lines

  1. /*
  2. ** ARexx Support
  3. */
  4.  
  5. #include "config.h"
  6.  
  7. #include <stdio.h>
  8.  
  9. #include <rexx/storage.h>
  10.  
  11. #include "mui.h"
  12.  
  13.  
  14. MUIF rexx_dispatch(REG(a0) struct Hook *h, REG(a2) Object *app, REG(a1) struct RexxMsg *rm)
  15. {
  16.  
  17. printf("Action: %ld\nCommand: %s\n",rm->rm_Action,rm->rm_Args[0]);
  18.  
  19.  
  20.  
  21.  
  22.     return(0);
  23. }
  24.