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.

30 lines
995 B

  1. //-----------------------------------------------------------------------------
  2. //
  3. // File: _errorrep.h
  4. // Copyright (C) 1994-1997 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // Error reporting mechanism for Espresso 2.0
  8. //
  9. //-----------------------------------------------------------------------------
  10. #if !defined(LOCUTIL__errorrep_h_INCLUDED)
  11. #define LOCUTIL__errorrep_h_INCLUDED
  12. ////////////////////// the new global issuemessage functions.
  13. UINT LTAPIENTRY EspMessageBox(const CLString strMessage, UINT uiType = MB_OK,
  14. UINT uiDefault=IDOK, UINT uiHelpContext=0);
  15. UINT LTAPIENTRY EspMessageBox(HINSTANCE hResourceDll, UINT uiStringId,
  16. UINT uiType=MB_OK, UINT uiDefault=IDOK, UINT uiHelp = 0);
  17. class CReport;
  18. void LTAPIENTRY SetErrorReport(CReport *, BOOL fBatchMode);
  19. void LTAPIENTRY GetErrorReport(CReport *&, BOOL &);
  20. #if !defined(_DEBUG) || defined(IMPLEMENT)
  21. #include "_errorrep.inl"
  22. #endif
  23. #endif // LOCUTIL__errorrep_h_INCLUDED