/* Copyright 1996 Acorn Computers Ltd * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /**************************************************************************** * This source file was written by Acorn Computers Limited. It is part of * * the "cwimp" library for writing applications in C for RISC OS. It may be * * used freely in the creation of programs for Archimedes. It should be * * used with Acorn's C Compiler Release 2 or later. * * * * No support can be given to programmers using this code and, while we * * believe that it is correct, no correspondence can be entered into * * concerning behaviour or bugs. * * * * Upgrades of this code may or may not appear, and while every effort will * * be made to keep such upgrades upwards compatible, no guarantees can be * * given. * ***************************************************************************/ /* * Title : c.werr * Purpose: provide error reporting in wimp programs * Version: 0.1 */ #define BOOL int #define TRUE 1 #define FALSE 0 #include <stdarg.h> #include <stdlib.h> #include <stdio.h> #include <string.h> #include <swis.h> #include "h.os" #include "h.wimp" #include "h.werr" #include "h.wimpt" void werr(int fatal, char* format, ...) { va_list va; os_error e; e.errnum = 0; va_start (va, format); vsprintf (e.errmess, format, va); va_end (va); if (fatal) /*FIX G-RO-???? JRC Raise SIGOSERROR here - lets the application trap its own errors and save files etc*/ os_swi1 (OS_GenerateError, (int) &e); else wimp_reporterror (&e, 0, wimpt_programname()); } /* end */