TlsSetValue method

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

Implementation

int TlsSetValue(
  int dwTlsIndex,
  ffi.Pointer<ffi.Void> lpTlsValue,
) {
  return _TlsSetValue(
    dwTlsIndex,
    lpTlsValue,
  );
}