#ifndef _NTUSER_H
// rev
/**
* The NtUserSetProcessRestrictionExemption routine marks the current process as exempt from certain win32k/user restrictions.
* Note: This requires a developer mode/license check.
*
* \param Enable Indicates whether to enable or disable the exemption.
* \return Successful or errant status.
*/
NTSYSCALLAPI
NTSTATUS
NTAPI
NtUserSetProcessRestrictionExemption(
_In_ BOOL EnableExemption
);
View code on GitHubNo description available.