process.h
来自「uClinux下用的数据库」· C头文件 代码 · 共 72 行
H
72 行
/*** Process Header File (Public)*//************************************************************************* Standard header preamble. Ensure singular inclusion, setup for** function prototypes and c++ inclusion*/#ifndef MAIN_PROCESS_H#define MAIN_PROCESS_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 processQuery __ANSI_PROTO((msqld*, mQuery_t*, int, char*));void processCopyDB __ANSI_PROTO((msqld*, int,char*,char*));void processMoveDB __ANSI_PROTO((msqld*, int,char*,char*));void processDropDB __ANSI_PROTO((msqld*, int,char*));void processListDBs __ANSI_PROTO((msqld*, int));void processCreateDB __ANSI_PROTO((msqld*, int,char*));void processListIndex __ANSI_PROTO((msqld*, int,char*,char*,char*));void processListTables __ANSI_PROTO((msqld*, int,char*));void processListFields __ANSI_PROTO((msqld*, int,char*,char*));void processExportTable __ANSI_PROTO((msqld*, int,char*,char*,char*,mQuery_t*));void processSequenceInfo __ANSI_PROTO((msqld*, int,char*,char*));int processCreateTable __ANSI_PROTO((msqld*, mQuery_t*));int processCreateIndex __ANSI_PROTO((msqld*, mQuery_t*));int processDropSequence __ANSI_PROTO((msqld*, mQuery_t*));int processCreateSequence __ANSI_PROTO((msqld*, mQuery_t*));int processDropTable __ANSI_PROTO((msqld*, mQuery_t*));int processDropIndex __ANSI_PROTO((msqld*, mQuery_t*, int));int processDelete __ANSI_PROTO((msqld*, mQuery_t*));int processInsert __ANSI_PROTO((msqld*, mQuery_t*));int processUpdate __ANSI_PROTO((msqld*, mQuery_t*));/************************************************************************* Standard header file footer. */#ifdef __cplusplus }#endif /* __cplusplus */#endif /* file inclusion */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?