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.
32 lines
631 B
32 lines
631 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 1995.
|
|
//
|
|
// File: mapsam.h
|
|
//
|
|
// Contents:
|
|
//
|
|
// Classes:
|
|
//
|
|
// Functions:
|
|
//
|
|
// History: 10-17-96 RichardW Created
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#ifndef __MAPSAM_H__
|
|
#define __MAPSAM_H__
|
|
|
|
extern "C" {
|
|
|
|
NTSTATUS
|
|
SamIOpenUserByAlternateId(
|
|
IN SAMPR_HANDLE DomainHandle,
|
|
IN ACCESS_MASK DesiredAccess,
|
|
IN PUNICODE_STRING AlternateId,
|
|
OUT SAMPR_HANDLE * UserHandle );
|
|
|
|
}
|
|
|
|
#endif // __MAPSAM_H__
|