From 18657a960e125336f704ea058e25c27bd3900dcb Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 5 May 2024 19:28:19 +0200 Subject: Adding upstream version 3.40.1. Signed-off-by: Daniel Baumann --- www/c3ref/file.html | 141 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 141 insertions(+) create mode 100644 www/c3ref/file.html (limited to 'www/c3ref/file.html') diff --git a/www/c3ref/file.html b/www/c3ref/file.html new file mode 100644 index 0000000..199ab66 --- /dev/null +++ b/www/c3ref/file.html @@ -0,0 +1,141 @@ + + + + + +OS Interface Open File Handle + + + +
+ + + +
+
+Small. Fast. Reliable.
Choose any three. +
+ + +
+
+ + + +
+
+
+ + +
+

SQLite C Interface

+

OS Interface Open File Handle

+
+
+typedef struct sqlite3_file sqlite3_file;
+struct sqlite3_file {
+  const struct sqlite3_io_methods *pMethods;  /* Methods for an open file */
+};
+
+

+An sqlite3_file object represents an open file in the +OS interface layer. Individual OS interface +implementations will +want to subclass this object by appending additional fields +for their own use. The pMethods entry is a pointer to an +sqlite3_io_methods object that defines methods for performing +I/O operations on the open file. +

See also lists of + Objects, + Constants, and + Functions.

+ -- cgit v1.2.3