/*********************************************************************** * * TITLE: * message.h * * AUTHOR: * Kevin J. Miller * * DESCRIPTION: * * * CHANGE HISTORY * * $Log: message.h,v $ * Revision 1.2 1996/12/19 22:33:49 kevin * fixed compiler warnings * * Revision 1.1 1994/01/17 23:02:20 clm * Initial revision * *********************************************************************** * * WARNINGS: * * EXTERNAL CALLABLE COMPONENTS (PUBLIC): * * GLOBALS: * * WAIVERS: * * NOTES: * * MANPAGE: * ***********************************************************************/ #ifndef message_h #define message_h #ifndef lint static const char rcsid_message[] = "$Id: message.h,v 1.2 1996/12/19 22:33:49 kevin OEL $"; #endif /* * global function prototypes */ extern Widget InitMessage(Widget, ...); extern void Message(char *, ...); extern void Warning(char *, ...); #endif