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.

31 lines
788 B

  1. /*
  2. File error.h
  3. Defines the error display/handling mechanisms used by the Ras Server
  4. UI for connections.
  5. 10/20/97
  6. */
  7. #ifndef _rassrvui_error_h
  8. #define _rassrvui_error_h
  9. #include <windows.h>
  10. // Displays the error for the given catagory, subcatagory, and code. The
  11. // parameters define what error messages are loaded from the resources
  12. // of this project.
  13. DWORD ErrDisplayError (HWND hwndParent,
  14. DWORD dwErrCode,
  15. DWORD dwCatagory,
  16. DWORD dwSubCatagory,
  17. DWORD dwData);
  18. // Sends debug output to a debugger terminal
  19. DWORD ErrOutputDebugger (LPSTR szError);
  20. // Sends trace information out
  21. DWORD DbgOutputTrace (LPSTR pszTrace, ...);
  22. #endif