1.Dd January 24, 2024 2.Dt SQLITE3REBASER_CONFIGURE 3 3.Os 4.Sh NAME 5.Nm sqlite3rebaser_configure 6.Nd configure a changeset rebaser object 7.Sh SYNOPSIS 8.In sqlite3.h 9.Ft int 10.Fo sqlite3rebaser_configure 11.Fa "sqlite3_rebaser*" 12.Fa "int nRebase" 13.Fa "const void *pRebase" 14.Fc 15.Sh DESCRIPTION 16Configure the changeset rebaser object to rebase changesets according 17to the conflict resolutions described by buffer pRebase (size nRebase 18bytes), which must have been obtained from a previous call to sqlite3changeset_apply_v2(). 19.Sh IMPLEMENTATION NOTES 20These declarations were extracted from the 21interface documentation at line 12463. 22.Bd -literal 23SQLITE_API int sqlite3rebaser_configure( 24 sqlite3_rebaser*, 25 int nRebase, const void *pRebase 26); 27.Ed 28