FlsGetValue method

Pointer<Void> FlsGetValue(
  1. int dwFlsIndex
)

Implementation

ffi.Pointer<ffi.Void> FlsGetValue(
  int dwFlsIndex,
) {
  return (_FlsGetValue ??= _dylib
      .lookupFunction<_c_FlsGetValue, _dart_FlsGetValue>('FlsGetValue'))(
    dwFlsIndex,
  );
}