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
776 B

  1. //-----------------------------------------------------------------------------
  2. //
  3. // File: _errorrep.inl
  4. // Copyright (C) 1994-1997 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. //
  8. //
  9. //-----------------------------------------------------------------------------
  10. //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  11. //
  12. // TODO - comment this function
  13. //
  14. //-----------------------------------------------------------------------------
  15. inline
  16. UINT
  17. EspMessageBox(
  18. HINSTANCE hResourceDll,
  19. UINT uiStringId,
  20. UINT uiType,
  21. UINT uiDefault,
  22. UINT uiHelp)
  23. {
  24. CLString strMessage;
  25. strMessage.LoadString(hResourceDll, uiStringId);
  26. return EspMessageBox(strMessage, uiType, uiDefault, uiHelp);
  27. }