blob: 2c86d229914dcd42db7725ca42718f3cb8355baa (
plain)
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
32
|
#pragma once
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
#ifdef __cplusplus
extern "C" {
#endif
HRESULT DAPI UserBuildDomainUserName(
__out_ecount_z(cchDest) LPWSTR wzDest,
__in int cchDest,
__in_z LPCWSTR pwzName,
__in_z LPCWSTR pwzDomain
);
HRESULT DAPI UserCheckIsMember(
__in_z LPCWSTR pwzName,
__in_z LPCWSTR pwzDomain,
__in_z LPCWSTR pwzGroupName,
__in_z LPCWSTR pwzGroupDomain,
__out LPBOOL lpfMember
);
HRESULT DAPI UserCreateADsPath(
__in_z LPCWSTR wzObjectDomain,
__in_z LPCWSTR wzObjectName,
__out BSTR *pbstrAdsPath
);
#ifdef __cplusplus
}
#endif
|