1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
/*
This file is part of SUPPL - the supplemental library for DOS
Copyright (C) 1996-2000 Steffen Kaiser
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/* $Id: MSGLIB.H 1.13 1998/10/07 04:42:53 ska Rel ska $
$Locker: ska $ $Name: $ $State: Rel $
Global message handling definitions.
*/
#ifndef __MSGLIB_H
#define __MSGLIB_H
#include <stdio.h>
#include <portable.h>
/*
* Some macros of message groups
*/
#define GLOBAL_GROUP 8
#define LOCAL_GROUP 0
#define msgIsGlobal(grp) ((grp) >= GLOBAL_GROUP)
#define msgIsLocal(grp) ((grp) < GLOBAL_GROUP)
#ifndef MSG_METHOD
/* No method specified -> default to access method #1 */
#define MSG_METHOD 1
#endif /*# !defined(MSG_METHOD) */
/*
* At this point exactly one of MSG_METHOD? is defined and valid
*/
#if MSG_METHOD == 1
#include <msglib/msgconf1.h>
#endif /*# MSG_METHOD == 1 */
#if MSG_METHOD == 2
#include <msglib/msgconf2.h>
#endif /*# MSG_METHOD == 2 */
/* Source-In the initialization for all access methods */
#include <msglib/msgconf0.h>
/**REMOVE ON**/
#define Y_errMR "Error in message retreiver:\n"
#define Y_noMem "Out of memory\n"
#define MSG_errNrMR 125
/**REMOVE OFF**/
#endif /*# !defined(__MSGLIB_H) */
|