Changeset 2761 for trunk/tools/database/db.h
- Timestamp:
- Feb 12, 2000, 12:54:25 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/database/db.h
r2759 r2761 1 /* $Id: db.h,v 1. 3 2000-02-11 18:35:54bird Exp $ */1 /* $Id: db.h,v 1.4 2000-02-11 23:54:25 bird Exp $ */ 2 2 /* 3 3 * DB - contains all database routines … … 19 19 * Defined Constants * 20 20 *******************************************************************************/ 21 #define NBR_FUNCTIONS 20 22 #define NBR_AUTHORS 20 21 #define NBR_FUNCTIONS 20 22 #define NBR_AUTHORS 20 23 #define ALIAS_NULL -1 24 #define ALIAS_DONTMIND -2 25 23 26 24 27 /******************************************************************************* … … 36 39 long cRefCodes; 37 40 long alRefCode[NBR_FUNCTIONS]; 41 signed long lImpDll; /* -1 is SQL-NULL, -2 is do not mind, >= 0 ref to dll. */ 38 42 39 43 /* parameters */ … … 58 62 signed long alRefCode[NBR_FUNCTIONS]; 59 63 signed long alDllRefCode[NBR_FUNCTIONS]; 64 signed long alAliasFn[NBR_FUNCTIONS]; /* -1 is SQL-NULL, -2 is do not mind, >= 0 ref to function. */ 60 65 } FNFINDBUF, *PFNFINDBUF; 61 66 … … 86 91 BOOL fIgnoreOrdinal); 87 92 BOOL _System dbFindFunction(const char *pszFunctionName, 88 PFNFINDBUF pFnFindBuf); 93 PFNFINDBUF pFnFindBuf, 94 signed long lDll); 89 95 signed long _System dbFindAuthor(const char *pszAuthor); 90 96 signed long _System dbGetFunctionState(signed long lRefCode); 91 97 unsigned long _System dbUpdateFunction(PFNDESC pFnDesc, 98 signed long lDll, 92 99 char *pszError); 93 100 unsigned long _System dbCreateHistory(char *pszError);
Note:
See TracChangeset
for help on using the changeset viewer.