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.
54 lines
751 B
54 lines
751 B
/*++
|
|
|
|
Copyright (c) 1991 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
wswksta.h
|
|
|
|
Abstract:
|
|
|
|
Private header file to be included by Workstation service modules
|
|
need information from the LSA authentication package.
|
|
|
|
Author:
|
|
|
|
Rita Wong (ritaw) 15-May-1991
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef _WSLSA_INCLUDED_
|
|
#define _WSLSA_INCLUDED_
|
|
|
|
#include <ntmsv1_0.h>
|
|
|
|
NET_API_STATUS
|
|
WsInitializeLsa(
|
|
VOID
|
|
);
|
|
|
|
VOID
|
|
WsShutdownLsa(
|
|
VOID
|
|
);
|
|
|
|
NET_API_STATUS
|
|
WsLsaEnumUsers(
|
|
OUT LPBYTE *EnumUsersResponse
|
|
);
|
|
|
|
NET_API_STATUS
|
|
WsLsaGetUserInfo(
|
|
IN PLUID LogonId,
|
|
OUT LPBYTE *UserInfoResponse,
|
|
OUT LPDWORD UserInfoResponseLength
|
|
);
|
|
|
|
NET_API_STATUS
|
|
WsLsaRelogonUsers(
|
|
IN LPTSTR LogonServer
|
|
);
|
|
|
|
#endif // _WSLSA_INCLUDED_
|