TlsGetValue method

Pointer<Void> TlsGetValue(
  1. int dwTlsIndex
)

Implementation

ffi.Pointer<ffi.Void> TlsGetValue(
  int dwTlsIndex,
) {
  return (_TlsGetValue ??= _dylib
      .lookupFunction<_c_TlsGetValue, _dart_TlsGetValue>('TlsGetValue'))(
    dwTlsIndex,
  );
}