GetProfileSectionW method

int GetProfileSectionW(
  1. Pointer<Uint16> lpAppName,
  2. Pointer<Uint16> lpReturnedString,
  3. int nSize
)

Implementation

int GetProfileSectionW(
  ffi.Pointer<ffi.Uint16> lpAppName,
  ffi.Pointer<ffi.Uint16> lpReturnedString,
  int nSize,
) {
  return (_GetProfileSectionW ??=
      _dylib.lookupFunction<_c_GetProfileSectionW, _dart_GetProfileSectionW>(
          'GetProfileSectionW'))(
    lpAppName,
    lpReturnedString,
    nSize,
  );
}