WriteProfileSectionW method

int WriteProfileSectionW(
  1. Pointer<Uint16> lpAppName,
  2. Pointer<Uint16> lpString
)

Implementation

int WriteProfileSectionW(
  ffi.Pointer<ffi.Uint16> lpAppName,
  ffi.Pointer<ffi.Uint16> lpString,
) {
  return (_WriteProfileSectionW ??= _dylib.lookupFunction<
      _c_WriteProfileSectionW,
      _dart_WriteProfileSectionW>('WriteProfileSectionW'))(
    lpAppName,
    lpString,
  );
}