home *** CD-ROM | disk | FTP | other *** search
- #ifndef shell_H
- #define shell_H
-
- /* C header file for Shell
- * written by DefMod (Sep 7 1994) on Wed Sep 7 21:19:22 1994
- * Copyright © Acorn Computers Ltd, 1994
- */
-
- /*************************************************************************
- * This source file was written by Acorn Computers Limited. It is part *
- * of the OSLib library for writing applications for RISC OS. It may be *
- * used freely in the creation of programs for RISC OS. *
- *************************************************************************/
-
- #ifndef types_H
- #include "types.h"
- #endif
-
- #ifndef os_H
- #include "os.h"
- #endif
-
- /**********************************
- * SWI names and SWI reason codes *
- **********************************/
- #undef Shell_Create
- #define Shell_Create 0x405C0
- #undef XShell_Create
- #define XShell_Create 0x605C0
- #undef Shell_Destroy
- #define Shell_Destroy 0x405C1
- #undef XShell_Destroy
- #define XShell_Destroy 0x605C1
-
- /************************
- * Constant definitions *
- ************************/
- #define error_SHELL_CREATION 0x900u
- #define error_SHELL_REMOVAL 0x901u
-
- #endif
-