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.
35 lines
450 B
35 lines
450 B
/*++
|
|
|
|
Copyright (c) 2001 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
tktlogon.hxx
|
|
|
|
Abstract:
|
|
|
|
tktlogon
|
|
|
|
Author:
|
|
|
|
Larry Zhu (LZhu) January 1, 2002
|
|
|
|
Environment:
|
|
|
|
User Mode
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef TKT_LOGON_HXX
|
|
#define TKT_LOGON_HXX
|
|
|
|
NTSTATUS
|
|
TicketLogon(
|
|
IN LUID* pLogonId,
|
|
IN PCSTR pszServicePrincipal,
|
|
OUT HANDLE* phToken
|
|
);
|
|
|
|
#endif // #ifndef TKT_LOGON_HXX
|