GetPrivateProfileSectionA method

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

Implementation

int GetPrivateProfileSectionA(
  ffi.Pointer<ffi.Int8> lpAppName,
  ffi.Pointer<ffi.Int8> lpReturnedString,
  int nSize,
  ffi.Pointer<ffi.Int8> lpFileName,
) {
  return (_GetPrivateProfileSectionA ??= _dylib.lookupFunction<
      _c_GetPrivateProfileSectionA,
      _dart_GetPrivateProfileSectionA>('GetPrivateProfileSectionA'))(
    lpAppName,
    lpReturnedString,
    nSize,
    lpFileName,
  );
}