SealdEncryptionSessionArray_Add method
void
SealdEncryptionSessionArray_Add()
SealdEncryptionSessionArray_Add adds an encryption session to the array.
@param array The SealdEncryptionSessionArray to add the encryption session to. @param es The Encryption Session to add.
Implementation
void SealdEncryptionSessionArray_Add(
ffi.Pointer<NativeSealdEncryptionSessionArray> array,
ffi.Pointer<NativeSealdEncryptionSession> es,
) {
return _SealdEncryptionSessionArray_Add(
array,
es,
);
}