home *** CD-ROM | disk | FTP | other *** search
- /**********************************************************************
- // DIVE Laboratories, Inc.
- // Copyright(c) 1995
- // All rights reserved.
- // FILE: messages.hpp
- //
- // DESCRIPTION
- // This header file provides functions prototypes for displaying
- // error messages
- //
- // Author: M. Doucet
- //
- // Modification History:
- // 4/20/95 Created
- //
- //**********************************************************************/
- #ifndef _MESSAGES_H
- #define _MESSAGES_H
-
- #ifndef _MESSAGES_OBJS
- void errorMsg(char *msg);
- void infoMsg(char *msg);
- void warningMsg(char *msg);
- void abortMsg(char *msg);
- #else
- extern void errorMsg(char *msg);
- extern void infoMsg(char *msg);
- extern void warningMsg(char *msg);
- extern void abortMsg(char *msg);
- #endif
- #endif
-