WriteProfileStringW method

int WriteProfileStringW(
  1. Pointer<Uint16> lpAppName,
  2. Pointer<Uint16> lpKeyName,
  3. Pointer<Uint16> lpString
)

Implementation

int WriteProfileStringW(
  ffi.Pointer<ffi.Uint16> lpAppName,
  ffi.Pointer<ffi.Uint16> lpKeyName,
  ffi.Pointer<ffi.Uint16> lpString,
) {
  return (_WriteProfileStringW ??= _dylib.lookupFunction<
      _c_WriteProfileStringW,
      _dart_WriteProfileStringW>('WriteProfileStringW'))(
    lpAppName,
    lpKeyName,
    lpString,
  );
}