首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

OS Interface Open File Handle

代码语言:javascript
复制
typedef struct sqlite3_file sqlite3_file;
struct sqlite3_file {
  const struct sqlite3_io_methods *pMethods;  /* Methods for an open file */
};

sqlite3_file对象表示OS界面层中的打开文件。单独的操作系统接口实现将希望通过为其自己的附加附加字段来为该对象创建子类。pMethods条目是指向sqlite3_io_methods对象的指针,该对象定义了在打开的文件上执行I / O操作的方法。

扫码关注腾讯云开发者

领取腾讯云代金券