#ifndef _NTEXAPI_H
/**
* The SYSTEM_TRUSTEDAPPS_RUNTIME_INFORMATION structure describes runtime
* information related to Trusted Apps support.
*/
typedef struct _SYSTEM_TRUSTEDAPPS_RUNTIME_INFORMATION
{
union
{
ULONGLONG Flags;
struct
{
ULONGLONG Supported : 1;
ULONGLONG Spare : 63;
};
};
PVOID RemoteBreakingRoutine;
} SYSTEM_TRUSTEDAPPS_RUNTIME_INFORMATION, *PSYSTEM_TRUSTEDAPPS_RUNTIME_INFORMATION;
View code on GitHubNo description available.