123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- /*
- * CDE - Common Desktop Environment
- *
- * Copyright (c) 1993-2012, The Open Group. All rights reserved.
- *
- * These libraries and programs are free software; you can
- * redistribute them and/or modify them under the terms of the GNU
- * Lesser General Public License as published by the Free Software
- * Foundation; either version 2 of the License, or (at your option)
- * any later version.
- *
- * These libraries and programs are distributed in the hope that
- * they will be useful, but WITHOUT ANY WARRANTY; without even the
- * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
- * PURPOSE. See the GNU Lesser General Public License for more
- * details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with these libraries and programs; if not, write
- * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
- * Floor, Boston, MA 02110-1301 USA
- */
- /* $TOG: UserMsg.h /main/6 1998/04/09 17:50:49 mgreess $ */
- /*
- * (c) Copyright 1995 Digital Equipment Corporation.
- * (c) Copyright 1988, 1993, 1994, 1995 Hewlett-Packard Company
- * (c) Copyright 1993, 1994, 1995 International Business Machines Corp.
- * (c) Copyright 1993, 1994, 1995 Sun Microsystems, Inc.
- * (c) Copyright 1993, 1994, 1995 Novell, Inc.
- * (c) Copyright 1995 FUJITSU LIMITED.
- * (c) Copyright 1995 Hitachi.
- */
- /* -*-C-*-
- ********************************************************************************
- *
- * File: usermsg.h
- * Description: Header for error logging routines
- * Status: Experimental (Do Not Distribute)
- *
- ********************************************************************************
- */
- #ifndef _usermsg_h
- #define _usermsg_h
- #include <X11/Intrinsic.h>
- #ifndef __STDC__
- # ifndef const
- # define const
- # endif
- #endif
- #include <bms/XeUserMsg.h>
- typedef enum {
- DtIgnore,
- DtInformation,
- DtWarning,
- DtError,
- DtFatalError,
- DtInternalError
- } DtSeverity;
- extern void _DtSimpleError(
- char *progName,
- DtSeverity severity,
- char *help,
- char *format,
- ...) ;
- extern void _DtSimpleErrnoError(
- char *progName,
- DtSeverity severity,
- char *help,
- char *format,
- ...) ;
- #define DtProgName XeProgName
- extern int _DtPrintDefaultError(
- Display *dpy,
- XErrorEvent *event,
- char *msg );
- #define _DTPRINTDEFAULTERROR_BUFSIZE 1024
- extern int _DtPrintDefaultErrorSafe(
- Display *dpy,
- XErrorEvent *event,
- char *msg,
- int bytes);
- /*
- DESCRIPTION:
- Supply the standard Xerror output to a buffer (instead of stederr)
- so client can do what it wants with it. Also don't exit. Allow
- client to decide what to do.
- An appropriate thing to do would be to pass the buffer to
- DtSimpleError() and return. ie. In your error callback:
- {
- char errmsg[1024];
- int ret ;
- ret = _DtPrintDefaultError (style.display, rep, errmsg);
- DtSimpleError(DtWarning, "><An X Error has occurred...continuing" ,
- errmsg, NULL);
- return ret;
- }
- SYNOPSIS:
- int _DtPrintDefaultError (dpy, event, msg)
- Display *dpy; The application's display structure.
- XErrorEvent *event; Error event returned to error callback.
- char *msg; Buffer returning the formatted text of
- the error message. It won't be more than
- 1024 bytes.
- */
- #endif /* _usermsg_h */
- /* DON'T ADD STUFF AFTER THIS #endif */
|