home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 6 / AACD06.ISO / AACD / Programming / ICU / src / icu / source / tools / genrb / error.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-08-16  |  1.0 KB  |  28 lines

  1. /*
  2. *******************************************************************************
  3. *                                                                             *
  4. * COPYRIGHT:                                                                  *
  5. *   (C) Copyright International Business Machines Corporation, 1998, 1999     *
  6. *   Licensed Material - Program-Property of IBM - All Rights Reserved.        *
  7. *   US Government Users Restricted Rights - Use, duplication, or disclosure   *
  8. *   restricted by GSA ADP Schedule Contract with IBM Corp.                    *
  9. *                                                                             *
  10. *******************************************************************************
  11. *
  12. * File error.h
  13. *
  14. * Modification History:
  15. *
  16. *   Date        Name        Description
  17. *   05/28/99    stephen     Creation.
  18. *******************************************************************************
  19. */
  20.  
  21. #ifndef ERROR_H
  22. #define ERROR_H 1
  23.  
  24. void setErrorText(const char *s);
  25. const char* getErrorText();
  26.  
  27. #endif
  28.