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.

25 lines
688 B

  1. /**************************************************************************************************
  2. FILENAME: ErrMsg.h
  3. COPYRIGHT 2001 Microsoft Corporation and Executive Software International, Inc.
  4. DESCRIPTION:
  5. Error messaging for specific user friendly errors: not bugs.
  6. For example, not a valid drive.
  7. ***************************************************************************************************/
  8. //The MessageBox routine which will print out the user friendly errors.
  9. BOOL
  10. ErrorMessageBox(
  11. TCHAR* cMsg,
  12. TCHAR* cTitle
  13. );
  14. //Dialog to tell the user to file a bug report with Microsoft.
  15. BOOL
  16. FileBugReportMessage(
  17. TCHAR* cMsg,
  18. TCHAR* cTitle
  19. );