windows-nt/Source/XPSP1/NT/base/fs/utils/dfrg/inc/errlog.h
2020-09-26 16:20:57 +08:00

29 lines
524 B
C

/**************************************************************************************************
FILENAME: ErrLog.h
COPYRIGHT© 2001 Microsoft Corporation and Executive Software International, Inc.
*/
//Initializes the error log.
BOOL
InitializeErrorLog (
IN PTCHAR pErrLogName,
IN PTCHAR pLoggerIdentifier
);
//Writes a message to the error log.
void
WriteErrorToErrorLog(
IN LPTSTR pMessage,
IN HRESULT hr,
IN LPTSTR pParameter1
);
//Closes the error log.
void
ExitErrorLog (
);