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.

28 lines
524 B

  1. /**************************************************************************************************
  2. FILENAME: ErrLog.h
  3. COPYRIGHT 2001 Microsoft Corporation and Executive Software International, Inc.
  4. */
  5. //Initializes the error log.
  6. BOOL
  7. InitializeErrorLog (
  8. IN PTCHAR pErrLogName,
  9. IN PTCHAR pLoggerIdentifier
  10. );
  11. //Writes a message to the error log.
  12. void
  13. WriteErrorToErrorLog(
  14. IN LPTSTR pMessage,
  15. IN HRESULT hr,
  16. IN LPTSTR pParameter1
  17. );
  18. //Closes the error log.
  19. void
  20. ExitErrorLog (
  21. );