DeleteProcThreadAttributeList method

void DeleteProcThreadAttributeList(
  1. Pointer<_PROC_THREAD_ATTRIBUTE_LIST> lpAttributeList
)

Implementation

void DeleteProcThreadAttributeList(
  ffi.Pointer<_PROC_THREAD_ATTRIBUTE_LIST> lpAttributeList,
) {
  return (_DeleteProcThreadAttributeList ??= _dylib.lookupFunction<
      _c_DeleteProcThreadAttributeList,
      _dart_DeleteProcThreadAttributeList>('DeleteProcThreadAttributeList'))(
    lpAttributeList,
  );
}