TlsSetValue method
Implementation
int TlsSetValue(
int dwTlsIndex,
ffi.Pointer<ffi.Void> lpTlsValue,
) {
return (_TlsSetValue ??= _dylib
.lookupFunction<_c_TlsSetValue, _dart_TlsSetValue>('TlsSetValue'))(
dwTlsIndex,
lpTlsValue,
);
}