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.

42 lines
1.2 KiB

  1. /********************************************************************
  2. Copyright (c) 1999-2000 Microsoft Corporation
  3. Module Name:
  4. pferrs.h
  5. Abstract:
  6. errors used in product feedback
  7. Revision History:
  8. DerekM modified 04/06/99
  9. DerekM modified 03/30/00
  10. ********************************************************************/
  11. #ifndef PFERR_H
  12. #define PFERR_H
  13. // //////////////////////////////////////////////////////////////////////////
  14. // PCH server error codes
  15. // used by the file manager to indicate that the thread should shutdown
  16. #define E_PCH_SHUTDOWN _HRESULT_TYPEDEF_(0x80061001)
  17. // used by the main thread to indicate a configuration error
  18. #define E_PCH_CONFIGERR _HRESULT_TYPEDEF_(0x80061002)
  19. // used to indicate that bad XML data has been encountered
  20. #define E_PCH_BADXMLDATA _HRESULT_TYPEDEF_(0x80061003)
  21. // used to indicate that a SQL error has occurred
  22. #define E_PCH_SQLERRROR _HRESULT_TYPEDEF_(0x80061004)
  23. // //////////////////////////////////////////////////////////////////////////
  24. // PCH client error codes
  25. // the URL sent by the client is not trusted.
  26. #define E_UNTRUSTED_URL _HRESULT_TYPEDEF_(0x80062001)
  27. #endif