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.

20 lines
389 B

  1. void ShowError(HRESULT hr,
  2. const String &message)
  3. {
  4. LOG_FUNCTION(ShowError);
  5. if(hr==E_FAIL)
  6. {
  7. popup.Error(Win::GetDesktopWindow(),message);
  8. }
  9. else
  10. {
  11. if(message.empty())
  12. {
  13. popup.Error(Win::GetDesktopWindow(),GetErrorMessage(hr));
  14. }
  15. else
  16. {
  17. popup.Error(Win::GetDesktopWindow(),hr,message);
  18. }
  19. }
  20. }