index.h
来自「uClinux下用的数据库」· C头文件 代码 · 共 61 行
H
61 行
/*** index Header File (Public)*//************************************************************************* Standard header preamble. Ensure singular inclusion, setup for** function prototypes and c++ inclusion*/#ifndef MAIN_INDEX_H#define MAIN_INDEX_H 1#if defined(__STDC__) || defined(__cplusplus)# define __ANSI_PROTO(x) x#else# define __ANSI_PROTO(x) ()#endif#ifdef __cplusplusextern "C" {#endif/************************************************************************* Macro Definitions*//************************************************************************* Type Definitions*//************************************************************************* Function Prototypes*/void indexCloseIndices __ANSI_PROTO((cache_t*));mIndex_t *indexLoadIndices __ANSI_PROTO((msqld*,char *, char *));int indexInsertIndexValue __ANSI_PROTO((cache_t*,mField_t*,u_int,mIndex_t*));int indexInsertIndices __ANSI_PROTO((cache_t*,mField_t*,u_int));int indexDeleteIndices __ANSI_PROTO((cache_t*,mField_t*,u_int));int indexCheckIndex __ANSI_PROTO((cache_t*,mField_t*,mField_t*,mIndex_t*,u_int));int indexCheckIndices __ANSI_PROTO((cache_t*,mField_t*,mField_t*,u_int));int indexCheckNullFields __ANSI_PROTO((cache_t*,row_t*,mIndex_t*,int*));int indexCheckAllForNullFields __ANSI_PROTO((cache_t*,row_t*,int*));int indexUpdateIndices __ANSI_PROTO((cache_t*,mField_t*,u_int,row_t*,int*,int*,int,mQuery_t*));/************************************************************************* Standard header file footer. */#ifdef __cplusplus }#endif /* __cplusplus */#endif /* file inclusion */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?