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.

29 lines
938 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1997.
  5. //
  6. // File: N S L O G . H
  7. //
  8. // Contents: Functions to log setup errors
  9. //
  10. // Notes:
  11. //
  12. // Author: kumarp 13-May-98
  13. //
  14. //----------------------------------------------------------------------------
  15. #pragma once
  16. void NetSetupLogStatusVa(IN LogSeverity ls,
  17. IN PCWSTR szFormat,
  18. IN va_list arglist);
  19. void NetSetupLogStatusV(IN LogSeverity ls,
  20. IN PCWSTR szFormat,
  21. IN ...);
  22. void NetSetupLogComponentStatus(IN PCWSTR szCompId,
  23. IN PCWSTR szAction,
  24. IN HRESULT hr);
  25. void NetSetupLogHrStatusV(IN HRESULT hr,
  26. IN PCWSTR szFormat,
  27. ...);