mirror of https://github.com/lianthony/NT4.0
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.
31 lines
601 B
31 lines
601 B
/****************************** Module Header ******************************\
|
|
* Module Name: sas.h
|
|
*
|
|
* Copyright (c) 1991, Microsoft Corporation
|
|
*
|
|
* Defines apis to perform event logging in winlogon.
|
|
*
|
|
* History:
|
|
* 03-19-93 Robertre Created.
|
|
\***************************************************************************/
|
|
|
|
#ifdef LOGGING
|
|
|
|
BOOL
|
|
WriteLog(
|
|
HANDLE FileHandle,
|
|
LPWSTR LogString
|
|
);
|
|
|
|
BOOL
|
|
OpenLogFile(
|
|
PHANDLE LogFileHandle
|
|
);
|
|
|
|
BOOL SetLoggingFileVariables(PGLOBALS pGlobals);
|
|
|
|
BOOL DeleteLoggingFileVariables(PGLOBALS pGlobals);
|
|
|
|
extern HANDLE LogFileHandle;
|
|
|
|
#endif
|