#ifndef _NTSAM_H
/**
* The SamSetInformationDomain method updates attributes of a domain object.
*
* \param DomainHandle A handle representing a domain.
* \param DomainInformationClass An enumeration indicating which attributes to update.
* \param Buffer The provided attributes on output.
* \return NTSTATUS Successful or errant status.
*/
NTSYSAPI
NTSTATUS
NTAPI
SamSetInformationDomain(
_In_ SAM_HANDLE DomainHandle,
_In_ DOMAIN_INFORMATION_CLASS DomainInformationClass,
_In_ PVOID Buffer
);
View code on GitHubThis function is a wrapper over an RPC method documented in the [MS-SAMR] specification.