NWFSE_ACTIVE_STACKS
Returns information about active protocol stacks. Used by NWGetActiveProtocolStacks.
typedef struct
{
SERVER_AND_VCONSOLE_INFO serverTimeAndVConsoleInfo:
nuint16 reserved ;
nuint32 maxNumOfStacks ;
nuint32 stackCount ;
nuint32 nextStartNum ;
STACK_INFO stackInfo [FSE_MAX_NUM_OF_STACKINFO];
} NWFSE_ACTIVE_STACKS;
uses calwin32
NWFSE_ACTIVE_STACKS = packed Record
serverTimeAndVConsoleInfo : SERVER_AND_VCONSOLE_INFO;
reserved : nuint16;
padding : nuint16;
maxNumOfStacks : nuint32;
stackCount : nuint32;
nextStartNum : nuint32;
stackInfo : Array[0.. FSE_MAX_NUM_OF_STACKINFO -1] Of STACK_INFO;
End;