NtUserSetProcessRestrictionExemption - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#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
    );

#endif

View code on GitHub

NtDoc

No description available.