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(
    lpAppName,
    lpReturnedString,
    nSize,
  );
}