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.

24 lines
784 B

  1. /* Copyright (C) Boris Nikolaus, Germany, 1996-1997. All rights reserved. */
  2. /* Copyright (C) Microsoft Corporation, 1997-1998. All rights reserved. */
  3. #ifndef _ASN1C_ERROR_H_
  4. #define _ASN1C_ERROR_H_
  5. #define E_success 0
  6. #define E_systemerror 1
  7. #define E_COMPONENTS_OF_in_extension 2
  8. #define E_applied_COMPONENTS_OF_to_bad_type 3
  9. #define E_COMPONENTS_OF_extended_type 4
  10. #define E_bad_component_in_selectiontype 5
  11. #define E_selection_of_bad_type 6
  12. #define E_recursive_type_definition 7
  13. #define E_undefined_typereference 8
  14. #define E_unterminated_string 9
  15. #define E_bad_character 10
  16. #define E_duplicate_tag 11
  17. #define E_bad_directive 12
  18. #define E_constraint_too_complex 13
  19. void error(int errornr, LLPOS *pos);
  20. #endif // _ASN1C_ERROR_H_