sqlite3_port.h
上传用户:sunhongbo
上传日期:2022-01-25
资源大小:3010k
文件大小:0k
源码类别:

数据库系统

开发平台:

C/C++

  1. /* 2008-11-05 */
  2. #ifndef __SQLITE3_PORT_H__
  3. #define __SQLITE3_PORT_H__
  4. typedef struct
  5. {
  6. void* (*SQLITE3_port_malloc)(int size);
  7. void* (*SQLITE3_port_realloc)(void * ptr,int size);
  8. void  (*SQLITE3_port_free)(void * ptr);
  9. void  (*SQLITE3_port_printf)(char * inf);
  10. }SQLITE3_port_s;
  11. /******
  12. ******/
  13. void SQLITE3_API_register_port(SQLITE3_port_s * port);
  14. /******
  15. ******/
  16. void SQLITE3_API_debug(int enable);
  17. #endif