mirror of https://github.com/tongzx/nt5src
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.
47 lines
1.0 KiB
47 lines
1.0 KiB
/*****************************************************************************\
|
|
* MODULE: basicsec.h
|
|
*
|
|
* Header file for basic-security.
|
|
*
|
|
*
|
|
* Copyright (C) 1996-1997 Microsoft Corporation
|
|
* Copyright (C) 1996-1997 Hewlett Packard
|
|
*
|
|
* History:
|
|
* 24-Aug-1997 HWP-Guys Created.
|
|
*
|
|
\*****************************************************************************/
|
|
|
|
#ifdef NOT_IMPLEMENTED
|
|
|
|
DWORD AuthenticateUser(
|
|
LPVOID *lppvContext,
|
|
LPTSTR lpszServerName,
|
|
LPTSTR lpszScheme,
|
|
DWORD dwFlags,
|
|
LPSTR lpszInBuffer,
|
|
DWORD dwInBufferLength,
|
|
LPTSTR lpszUserName,
|
|
LPTSTR lpszPassword);
|
|
|
|
VOID UnloadAuthenticateUser(
|
|
LPVOID *lppvContext,
|
|
LPTSTR lpszServer,
|
|
LPTSTR lpszScheme);
|
|
|
|
DWORD PreAuthenticateUser(
|
|
LPVOID *lppvContext,
|
|
LPTSTR lpszServerName,
|
|
LPTSTR lpszScheme,
|
|
DWORD dwFlags,
|
|
LPSTR lpszInBuffer,
|
|
DWORD dwInBufferLength,
|
|
LPSTR lpszOutBuffer,
|
|
LPDWORD lpdwOutBufferLength,
|
|
LPTSTR lpszUserName,
|
|
LPTSTR lpszPassword);
|
|
|
|
BOOL GetTokenHandle(
|
|
PHANDLE phToken)
|
|
|
|
#endif
|