windows-nt/Source/XPSP1/NT/base/fs/utils/dfrg/inc/errlog.h

29 lines
524 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
/**************************************************************************************************
FILENAME: ErrLog.h
COPYRIGHT<EFBFBD> 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 (
);