/* 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. */ /************************************************************************/ /* � Acorn Computers Ltd, 1992. */ /* */ /* This file forms part of an unsupported source release of RISC_OSLib. */ /* */ /* It may be freely used to create executable images for saleable */ /* products but cannot be sold in source form or as an object library */ /* without the prior written consent of Acorn Computers Ltd. */ /* */ /* If this file is re-distributed (even if modified) it should retain */ /* this copyright notice. */ /* */ /************************************************************************/ /* * Title : c.werr * Purpose: provide error reporting in wimp programs * History: IDJ: 07-Feb-92: prepared for source release * */ #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 "os.h" #include "wimp.h" #include "werr.h" #include "wimpt.h" 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) os_swi1 (OS_GenerateError, (int) &e); else wimp_reporterror (&e, 0, wimpt_programname()); } /* end */