GetPrivateProfileSectionW method

int GetPrivateProfileSectionW(
  1. Pointer<Uint16> lpAppName,
  2. Pointer<Uint16> lpReturnedString,
  3. int nSize,
  4. Pointer<Uint16> lpFileName,
)

Implementation

int GetPrivateProfileSectionW(
  ffi.Pointer<ffi.Uint16> lpAppName,
  ffi.Pointer<ffi.Uint16> lpReturnedString,
  int nSize,
  ffi.Pointer<ffi.Uint16> lpFileName,
) {
  return (_GetPrivateProfileSectionW ??= _dylib.lookupFunction<
      _c_GetPrivateProfileSectionW,
      _dart_GetPrivateProfileSectionW>('GetPrivateProfileSectionW'))(
    lpAppName,
    lpReturnedString,
    nSize,
    lpFileName,
  );
}