home *** CD-ROM | disk | FTP | other *** search
- #ifndef frontend_H
- #define frontend_H
-
- /* C header file for FrontEnd
- * written by DefMod (Jun 20 1995) on Tue Jun 20 15:08:08 1995
- * Written by Jonathan Coxhead, Acorn Computers Ltd
- */
-
- #ifndef types_H
- #include "types.h"
- #endif
-
- /**********************************
- * SWI names and SWI reason codes *
- **********************************/
- #undef FrontEnd_ExtendedCmdLine
- #define FrontEnd_ExtendedCmdLine 0x81400
- #undef XFrontEnd_ExtendedCmdLine
- #define XFrontEnd_ExtendedCmdLine 0xA1400
- #undef FrontEnd_FreeCmdLine
- #define FrontEnd_FreeCmdLine 0x81401
- #undef XFrontEnd_FreeCmdLine
- #define XFrontEnd_FreeCmdLine 0xA1401
-
- /*************************
- * Function declarations *
- *************************/
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- /* ------------------------------------------------------------------------
- * Function: frontend_extended_cmd_line()
- *
- * Description: Calls SWI 0x81400
- */
-
- extern os_error *xfrontend_extended_cmd_line (void);
- __swi (0x81400) void frontend_extended_cmd_line (void);
-
- /* ------------------------------------------------------------------------
- * Function: frontend_free_cmd_line()
- *
- * Description: Calls SWI 0x81401
- */
-
- extern os_error *xfrontend_free_cmd_line (void);
- __swi (0x81401) void frontend_free_cmd_line (void);
-
- #ifdef __cplusplus
- }
- #endif
-
- #endif
-