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.

27 lines
692 B

  1. //-----------------------------------------------------------------------------
  2. //
  3. // File: ShowWarnings.h
  4. // Copyright (C) 1994-1997 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. //
  8. //
  9. //-----------------------------------------------------------------------------
  10. #if !defined(PKGUTIL__ShowWarnings_h__INCLUDED)
  11. #define PKGUTIL__ShowWarnings_h__INCLUDED
  12. enum eWarningFilter
  13. {
  14. wfNote,
  15. wfWarning,
  16. wfError,
  17. wfAbort,
  18. wfAll
  19. };
  20. int LTAPIENTRY ShowWarnings(const CBufferReport * pBufMsg, LPCTSTR pszTitle = NULL,
  21. eWarningFilter wf = wfWarning, BOOL fShowContext = FALSE, UINT nMsgBoxFlags = MB_OK);
  22. #endif // PKGUTIL__ShowWarnings_h__INCLUDED