GetProfileSectionA method

int GetProfileSectionA(
  1. Pointer<Int8> lpAppName,
  2. Pointer<Int8> lpReturnedString,
  3. int nSize
)

Implementation

int GetProfileSectionA(
  ffi.Pointer<ffi.Int8> lpAppName,
  ffi.Pointer<ffi.Int8> lpReturnedString,
  int nSize,
) {
  return (_GetProfileSectionA ??=
      _dylib.lookupFunction<_c_GetProfileSectionA, _dart_GetProfileSectionA>(
          'GetProfileSectionA'))(
    lpAppName,
    lpReturnedString,
    nSize,
  );
}