InitializeProcThreadAttributeList function kernel32
Initializes the specified list of attributes for process and thread creation.
BOOL InitializeProcThreadAttributeList(
LPPROC_THREAD_ATTRIBUTE_LIST lpAttributeList,
DWORD dwAttributeCount,
DWORD dwFlags,
PSIZE_T lpSize
);
Implementation
int InitializeProcThreadAttributeList(
Pointer lpAttributeList,
int dwAttributeCount,
int dwFlags,
Pointer<IntPtr> lpSize,
) => _InitializeProcThreadAttributeList(
lpAttributeList,
dwAttributeCount,
dwFlags,
lpSize,
);