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
547 B
28 lines
547 B
/****************************************************************************/
|
|
// errorlog.h
|
|
//
|
|
// Copyright (C) 1997-1999 Microsoft Corp.
|
|
/****************************************************************************/
|
|
|
|
#include <notifyev.h>
|
|
|
|
void
|
|
TsInitLogging();
|
|
|
|
void
|
|
TsStopLogging();
|
|
|
|
void
|
|
TsLogError(
|
|
IN DWORD dwEventID,
|
|
IN DWORD dwErrorType,
|
|
IN int nStringsCount,
|
|
IN WCHAR * pStrings[],
|
|
DWORD LineNumber
|
|
);
|
|
|
|
void TsPopupError(
|
|
IN DWORD dwEventID,
|
|
IN WCHAR * pStrings[]
|
|
);
|
|
|