⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 uidx.h

📁 uClinux下用的数据库
💻 H
字号:
/*** Union Index Header File*//************************************************************************* Standard header preamble.  Ensure singular inclusion, setup for** function prototypes and c++ inclusion*/#ifndef CRA_UIDX_H#define CRA_UIDX_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*/typedef struct {	void	*native;	int	type;} uidx_t;/************************************************************************* Function Prototypes*/int unionIdxCreate __ANSI_PROTO((idx_hnd*));int unionIdxCreateTmpIndex __ANSI_PROTO((idx_hnd*,idx_hnd*,mIndex_t*,mCond_t*));int unionIdxLookup __ANSI_PROTO((idx_hnd*,int));int unionIdxGet __ANSI_PROTO((idx_hnd*,int));int unionIdxLookup __ANSI_PROTO((idx_hnd*,int));void unionIdxFree __ANSI_PROTO((idx_hnd*));/************************************************************************* Standard header file footer.  */#ifdef __cplusplus	}#endif /* __cplusplus */#endif /* file inclusion */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -