xref: /netbsd-src/external/public-domain/sqlite/man/sqlite3_api_routines.3 (revision c9055873d0546e63388f027d3d7f85381cde0545)
1.Dd January 24, 2024
2.Dt SQLITE3_API_ROUTINES 3
3.Os
4.Sh NAME
5.Nm sqlite3_api_routines
6.Nd loadable extension thunk
7.Sh SYNOPSIS
8.In sqlite3.h
9.Vt typedef struct sqlite3_api_routines sqlite3_api_routines;
10.Sh DESCRIPTION
11A pointer to the opaque sqlite3_api_routines structure is passed as
12the third parameter to entry points of loadable extensions.
13This structure must be typedefed in order to work around compiler warnings
14on some platforms.
15.Sh IMPLEMENTATION NOTES
16These declarations were extracted from the
17interface documentation at line 1265.
18.Bd -literal
19typedef struct sqlite3_api_routines sqlite3_api_routines;
20.Ed
21