home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 1 / RISC_DISC_1.iso / pd_share / code / oslib / h / shell < prev    next >
Encoding:
Text File  |  1994-09-07  |  1.2 KB  |  42 lines

  1. #ifndef shell_H
  2. #define shell_H
  3.  
  4. /* C header file for Shell
  5.  * written by DefMod (Sep  7 1994) on Wed Sep  7 21:19:22 1994
  6.  * Copyright © Acorn Computers Ltd, 1994
  7.  */
  8.  
  9. /*************************************************************************
  10.  * This source file was written by Acorn Computers Limited. It is part   *
  11.  * of the OSLib library for writing applications for RISC OS. It may be  *
  12.  * used freely in the creation of programs for RISC OS.                  *
  13.  *************************************************************************/
  14.  
  15. #ifndef types_H
  16.    #include "types.h"
  17. #endif
  18.  
  19. #ifndef os_H
  20.    #include "os.h"
  21. #endif
  22.  
  23. /**********************************
  24.  * SWI names and SWI reason codes *
  25.  **********************************/
  26. #undef  Shell_Create
  27. #define Shell_Create                            0x405C0
  28. #undef  XShell_Create
  29. #define XShell_Create                           0x605C0
  30. #undef  Shell_Destroy
  31. #define Shell_Destroy                           0x405C1
  32. #undef  XShell_Destroy
  33. #define XShell_Destroy                          0x605C1
  34.  
  35. /************************
  36.  * Constant definitions *
  37.  ************************/
  38. #define error_SHELL_CREATION                    0x900u
  39. #define error_SHELL_REMOVAL                     0x901u
  40.  
  41. #endif
  42.