GetProfileIntA method

int GetProfileIntA(
  1. Pointer<Int8> lpAppName,
  2. Pointer<Int8> lpKeyName,
  3. int nDefault
)

Implementation

int GetProfileIntA(
  ffi.Pointer<ffi.Int8> lpAppName,
  ffi.Pointer<ffi.Int8> lpKeyName,
  int nDefault,
) {
  return (_GetProfileIntA ??=
      _dylib.lookupFunction<_c_GetProfileIntA, _dart_GetProfileIntA>(
          'GetProfileIntA'))(
    lpAppName,
    lpKeyName,
    nDefault,
  );
}