TlsSetValue method

int TlsSetValue(
  1. int dwTlsIndex,
  2. Pointer<Void> lpTlsValue
)

Implementation

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