Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
847 B

  1. /***
  2. *Errormes.h - Error / Warning reporting used by the ifstripper, parser and symbol table
  3. *
  4. * Copyright (c) 1988-2001, Microsoft Corporation. All rights reserved.
  5. *
  6. *Purpose:
  7. * Error / Warning reporting used by the ifstripper, parser and symbol table
  8. *
  9. *Revision History:
  10. * ??-??-88 PHG Initial version
  11. *
  12. *******************************************************************************/
  13. #ifndef ERRORMES_H
  14. #define ERRORMES_H
  15. /* error messages, parameters are strings holding the reason and text of the line that caused the error */
  16. extern void error(char *, char *);
  17. /* warning messages, parameters are strings holding the reason and text of the line that caused the error */
  18. extern void warning(char *, char *);
  19. extern FILE *errorfile; /* file to output error/warning messages */
  20. #endif /* ERRORMES_H */