mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-28 08:39:20 +00:00
Documenting
This commit is contained in:
parent
775692b7a2
commit
e2a22371e0
1 changed files with 7 additions and 1 deletions
|
|
@ -326,12 +326,18 @@ void sqlite3_bctbx_vfs_register( int makeDefault){
|
|||
|
||||
pVfsToUse->xAccess = pDefault->xAccess;
|
||||
pVfsToUse->xCurrentTime = pDefault->xCurrentTime;
|
||||
pVfsToUse->xCurrentTimeInt64 = pDefault->xCurrentTimeInt64;
|
||||
|
||||
pVfsToUse->xFullPathname = pDefault->xFullPathname;
|
||||
pVfsToUse->xDelete = pDefault->xDelete;
|
||||
pVfsToUse->xSleep = pDefault->xSleep;
|
||||
pVfsToUse->xRandomness = pDefault->xRandomness;
|
||||
pVfsToUse->xGetLastError = pDefault->xGetLastError; /* Not implemented by sqlite3 :place holder */
|
||||
/*Functions below should not be a problem sincve we are declaring ourselves
|
||||
in version 1 */
|
||||
|
||||
/* used in version 2 */
|
||||
pVfsToUse->xCurrentTimeInt64 = pDefault->xCurrentTimeInt64;
|
||||
/* used in version 3 */
|
||||
pVfsToUse->xGetSystemCall = pDefault->xGetSystemCall;
|
||||
pVfsToUse->xSetSystemCall = pDefault->xSetSystemCall;
|
||||
pVfsToUse->xNextSystemCall = pDefault->xNextSystemCall;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue