WritePrivateProfileSectionA method

int WritePrivateProfileSectionA(
  1. Pointer<Int8> lpAppName,
  2. Pointer<Int8> lpString,
  3. Pointer<Int8> lpFileName
)

Implementation

int WritePrivateProfileSectionA(
  ffi.Pointer<ffi.Int8> lpAppName,
  ffi.Pointer<ffi.Int8> lpString,
  ffi.Pointer<ffi.Int8> lpFileName,
) {
  return _WritePrivateProfileSectionA(
    lpAppName,
    lpString,
    lpFileName,
  );
}