/* * $Id: stdlib_showerror.c,v 1.1.1.1 2004-07-26 16:32:06 obarthel Exp $ * * :ts=4 * * Portable ISO 'C' (1994) runtime library for the Amiga computer * Copyright (c) 2002-2004 by Olaf Barthel * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * - Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * - Neither the name of Olaf Barthel nor the names of contributors * may be used to endorse or promote products derived from this * software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ #include #include #include #include /****************************************************************************/ #include #define __NOLIBBASE__ #define __NOGLOBALIFACE__ #include #include /****************************************************************************/ #include /****************************************************************************/ #include "macros.h" /****************************************************************************/ #ifndef _STDLIB_HEADERS_H #include "stdlib_headers.h" #endif /* _STDLIB_HEADERS_H */ #ifndef _STDIO_HEADERS_H #include "stdio_headers.h" #endif /* _STDIO_HEADERS_H */ /****************************************************************************/ void __show_error(const char * message) { #if defined(__amigaos4__) struct IntuitionIFace * IIntuition = NULL; struct DOSIFace * IDOS = NULL; #endif /* __amigaos4__ */ struct Library * IntuitionBase = NULL; struct Library * DOSBase = NULL; PROFILE_OFF(); if(__detach || __WBenchMsg != NULL || __no_standard_io) { IntuitionBase = OpenLibrary("intuition.library",0); if(IntuitionBase == NULL) goto out; #if defined(__amigaos4__) { IIntuition = (struct IntuitionIFace *)GetInterface((struct Library *)IntuitionBase, "main", 1, 0); if (IIntuition == NULL) goto out; } #endif /* __amigaos4__ */ if(IntuitionBase->lib_Version >= 37) { struct EasyStruct es; memset(&es,0,sizeof(es)); es.es_StructSize = sizeof(es); es.es_Title = (STRPTR)__WBenchMsg->sm_ArgList[0].wa_Name; es.es_TextFormat = (STRPTR)message; es.es_GadgetFormat = (STRPTR)"Sorry"; EasyRequestArgs(NULL,&es,NULL,NULL); } else { static struct TextAttr default_font = { (STRPTR)"topaz.font",8,FS_NORMAL,FPF_ROMFONT|FPF_DESIGNED }; static struct IntuiText sorry_text = {0,1,JAM1,6,3,&default_font,(STRPTR)"Sorry",NULL}; static struct IntuiText body_text = {0,1,JAM1,5,3,&default_font,(STRPTR)NULL,NULL}; body_text.IText = (STRPTR)message; AutoRequest(NULL,&body_text,NULL,&sorry_text,0,0,37 + 8 * strlen(message),46); } } else { BPTR output; DOSBase = OpenLibrary("dos.library",0); if(DOSBase == NULL) goto out; #if defined(__amigaos4__) { IDOS = (struct DOSIFace *)GetInterface((struct Library *)DOSBase, "main", 1, 0); if (IDOS == NULL) goto out; } #endif /* __amigaos4__ */ output = Output(); Write(output,(STRPTR)message,(LONG)strlen(message)); Write(output,"\n",1); } out: #if defined(__amigaos4__) { if(IIntuition != NULL) DropInterface((struct Interface *)IIntuition); if(IDOS != NULL) DropInterface((struct Interface *)IDOS); } #endif /* __amigaos4__ */ if (IntuitionBase != NULL) CloseLibrary(IntuitionBase); if (DOSBase != NULL) CloseLibrary(DOSBase); PROFILE_ON(); }