#ifndef _NTMISC_H
// private
typedef struct _MTA_USAGE_GLOBALS
{
_Reserved_ ULONG StackCapture;
PULONG MTAInits; // A pointer to the total number of MTA inits
PULONG MTAIncInits; // A pointer to the number of MTA inits from CoIncrementMTAUsage
PULONG MTAWaiters; // A pointer to the number of callers waiting inside CoWaitMTACompletion
PULONG MTAIncrementorSize; // A pointer to the size of the cookie returned by CoIncrementMTAUsage
ULONG CompletionTimeOut; // A timeout for CoWaitMTACompletion in milliseconds
_Reserved_ PLIST_ENTRY ListEntryHeadMTAUsageIncrementor;
_Reserved_ PULONG MTAIncrementorCompleted;
_Reserved_ PVOID* MTAUsageCompletedIncrementorHead;
PMTA_HOST_USAGE_FLAGS MTAHostUsageFlags; // A pointer to the MTA usage flags // since THRESHOLD
} MTA_USAGE_GLOBALS, *PMTA_USAGE_GLOBALS;
View code on GitHubNo description available.