ENCLAVE_INIT_INFO_VBS structure (winnt.h)

Contains architecture-specific information to use to initialize an enclave when the enclave type is ENCLAVE_TYPE_VBS, which specifies a virtualization-based security (VBS) enclave.

Syntax

typedef struct _ENCLAVE_INIT_INFO_VBS {
  DWORD Length;
  DWORD ThreadCount;
} ENCLAVE_INIT_INFO_VBS, *PENCLAVE_INIT_INFO_VBS;

Members

Length

The total length of the ENCLAVE_INIT_INFO_VBS structure, in bytes.

ThreadCount

Upon entry to the InitializeEnclave function, specifies the number of threads to create in the enclave. Upon successful return from InitializeEnclave, contains the number of threads the function actually created.

Requirements

Requirement Value
Minimum supported client Windows 10, version 1709 [desktop apps only]
Minimum supported server Windows Server 2016 [desktop apps only]
Header winnt.h

See also

Enclave Structures

InitializeEnclave