home *** CD-ROM | disk | FTP | other *** search
/ VRML Tools for 3D Cyberspace / VRML_Tools_For_3D_Cyberspace.iso / amber / include / messages.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-01  |  785 b   |  32 lines

  1. /**********************************************************************
  2. //  DIVE Laboratories, Inc.
  3. //  Copyright(c) 1995
  4. //  All rights reserved.
  5. //  FILE:   messages.hpp
  6. //
  7. //  DESCRIPTION
  8. //  This header file provides functions prototypes for displaying 
  9. //     error messages
  10. //
  11. //  Author: M. Doucet
  12. //
  13. //  Modification History:
  14. //  4/20/95     Created
  15. //
  16. //**********************************************************************/
  17. #ifndef _MESSAGES_H
  18. #define _MESSAGES_H
  19.  
  20. #ifndef _MESSAGES_OBJS
  21. void errorMsg(char *msg);
  22. void infoMsg(char *msg);
  23. void warningMsg(char *msg);
  24. void abortMsg(char *msg);
  25. #else
  26. extern void errorMsg(char *msg);
  27. extern void infoMsg(char *msg);
  28. extern void warningMsg(char *msg);
  29. extern void abortMsg(char *msg);
  30. #endif
  31. #endif
  32.