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.
49 lines
735 B
49 lines
735 B
//
|
|
// Interface Attributes
|
|
//
|
|
|
|
[
|
|
uuid(369ce4f0-0fdc-11d3-bde8-00c04f8eee78),
|
|
version(1.0),
|
|
#ifdef __midl
|
|
ms_union,
|
|
#endif // __midl
|
|
pointer_default(unique)
|
|
]
|
|
|
|
|
|
|
|
//
|
|
// Interface Keyword
|
|
//
|
|
|
|
interface pmapapi
|
|
|
|
//
|
|
// Interface Body
|
|
//
|
|
|
|
{
|
|
|
|
import "imports.idl";
|
|
|
|
error_status_t
|
|
RemoteRemapUserProfile (
|
|
[in] handle_t hBinding,
|
|
[in] DWORD Flags,
|
|
[in, unique, size_is(CurrentSidSize)] LPBYTE CurrentSid,
|
|
[in] DWORD CurrentSidSize,
|
|
[in, unique, size_is(NewSidSize)] LPBYTE NewSid,
|
|
[in] DWORD NewSidSize
|
|
);
|
|
|
|
error_status_t
|
|
RemoteRemapAndMoveUser (
|
|
[in] handle_t hBinding,
|
|
[in] DWORD Flags,
|
|
[in, string, unique] LPWSTR ExistingUser,
|
|
[in, string, unique] LPWSTR NewUser
|
|
);
|
|
|
|
}
|
|
|