GetPrivateProfileIntW method

int GetPrivateProfileIntW(
  1. Pointer<Uint16> lpAppName,
  2. Pointer<Uint16> lpKeyName,
  3. int nDefault,
  4. Pointer<Uint16> lpFileName,
)

Implementation

int GetPrivateProfileIntW(
  ffi.Pointer<ffi.Uint16> lpAppName,
  ffi.Pointer<ffi.Uint16> lpKeyName,
  int nDefault,
  ffi.Pointer<ffi.Uint16> lpFileName,
) {
  return (_GetPrivateProfileIntW ??= _dylib.lookupFunction<
      _c_GetPrivateProfileIntW,
      _dart_GetPrivateProfileIntW>('GetPrivateProfileIntW'))(
    lpAppName,
    lpKeyName,
    nDefault,
    lpFileName,
  );
}