GetProfileIntW method

int GetProfileIntW(
  1. Pointer<Uint16> lpAppName,
  2. Pointer<Uint16> lpKeyName,
  3. int nDefault
)

Implementation

int GetProfileIntW(
  ffi.Pointer<ffi.Uint16> lpAppName,
  ffi.Pointer<ffi.Uint16> lpKeyName,
  int nDefault,
) {
  return (_GetProfileIntW ??=
      _dylib.lookupFunction<_c_GetProfileIntW, _dart_GetProfileIntW>(
          'GetProfileIntW'))(
    lpAppName,
    lpKeyName,
    nDefault,
  );
}