blob: acbeb7a1f5e4887ce284141fe1325b8b64956695 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/****************************** 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
|