Source code of Windows XP (NT5)
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.

21 lines
382 B

  1. /*
  2. * Filename: NLB_XMLError.h
  3. * Description:
  4. * Author: shouse, 04.10.01
  5. */
  6. #ifndef __NLB_XMLERROR_H__
  7. #define __NLB_XMLERROR_H__
  8. typedef struct _NLB_XMLError {
  9. LONG code;
  10. LONG line;
  11. LONG character;
  12. WCHAR wszURL[MAX_PATH];
  13. WCHAR wszReason[MAX_PATH];
  14. } NLB_XMLError;
  15. #define FACILITY_NLB 49
  16. #define NLB_XML_E_IPADDRESS_ADAPTER 1
  17. #endif