Changeset 8006 for trunk/tools/database/db.h
- Timestamp:
- Feb 24, 2002, 3:58:29 AM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/database/db.h
r6678 r8006 1 /* $Id: db.h,v 1.1 6 2001-09-07 10:31:44bird Exp $ */1 /* $Id: db.h,v 1.17 2002-02-24 02:58:29 bird Exp $ */ 2 2 /* 3 3 * DB - contains all database routines … … 101 101 char * _System dbGetLastErrorDesc(void); 102 102 103 BOOL_System dbConnect(const char *pszHost,103 KBOOL _System dbConnect(const char *pszHost, 104 104 const char *pszUser, 105 105 const char *pszPassword, 106 106 const char *pszDatabase); 107 BOOL_System dbDisconnect();107 KBOOL _System dbDisconnect(); 108 108 signed long _System dbGetDll(const char *pszDllName); 109 109 signed long _System dbCountFunctionInDll(signed long ulDll, 110 BOOL fNotAliases);110 KBOOL fNotAliases); 111 111 signed long _System dbCheckInsertDll(const char *pszDll, char fchType); 112 112 unsigned short _System dbGet(const char *pszTable, … … 114 114 const char *pszMatch1, 115 115 const char *pszMatchValue1); 116 BOOL_System dbInsertUpdateFunction(signed long lDll,116 KBOOL _System dbInsertUpdateFunction(signed long lDll, 117 117 const char *pszFunction, 118 118 const char *pszIntFunction, 119 119 unsigned long ulOrdinal, 120 BOOL fIgnoreOrdinal,120 KBOOL fIgnoreOrdinal, 121 121 char fchType); 122 BOOL_System dbInsertUpdateFile(signed long lDll,122 KBOOL _System dbInsertUpdateFile(signed long lDll, 123 123 const char *pszFilename, 124 124 const char *pszDescription, … … 126 126 signed long lLastAuthor, 127 127 const char *pszRevision); 128 BOOL_System dbFindFunction(const char *pszFunctionName,128 KBOOL _System dbFindFunction(const char *pszFunctionName, 129 129 PFNFINDBUF pFnFindBuf, 130 130 signed long lDll); … … 135 135 signed long lDll, 136 136 char *pszError); 137 BOOL_System dbRemoveDesignNotes(signed long lFile);138 BOOL_System dbAddDesignNote(signed long lDll,137 KBOOL _System dbRemoveDesignNotes(signed long lFile); 138 KBOOL _System dbAddDesignNote(signed long lDll, 139 139 signed long lFile, 140 140 const char *pszTitle, … … 144 144 signed long lSeqNbrNote, 145 145 signed long lLine, 146 BOOLfSubSection,146 KBOOL fSubSection, 147 147 signed long *plRefCode); 148 148 unsigned long _System dbCreateHistory(char *pszError); … … 152 152 void * _System dbExecuteQuery(const char *pszQuery); 153 153 signed long _System dbQueryResultRows(void *pres); 154 BOOL_System dbFreeResult(void *pres);155 BOOL_System dbFetch(void *pres,154 KBOOL _System dbFreeResult(void *pres); 155 KBOOL _System dbFetch(void *pres, 156 156 DBCALLBACKFETCH dbFetchCallBack, 157 157 void *pvUser); 158 158 signed long _System dbDateToDaysAfterChrist(const char *pszDate); 159 BOOL_System dbDaysAfterChristToDate(signed long ulDays,159 KBOOL _System dbDaysAfterChristToDate(signed long ulDays, 160 160 char *pszDate); 161 161 /* StateUpd stuff */ 162 BOOL_System dbGetNotUpdatedFunction(signed long lDll,162 KBOOL _System dbGetNotUpdatedFunction(signed long lDll, 163 163 DBCALLBACKFETCH dbFetchCallBack); 164 164 signed long _System dbGetNumberOfUpdatedFunction(signed long lDll); 165 165 166 166 /* APIImport stuff */ 167 BOOL_System dbClearUpdateFlagFile(signed long lDll);168 BOOL _System dbClearUpdateFlagFunction(signed long lDll,BOOL fAll);169 BOOL_System dbDeleteNotUpdatedFiles(signed long lDll);170 BOOL _System dbDeleteNotUpdatedFunctions(signed long lDll,BOOL fAll);167 KBOOL _System dbClearUpdateFlagFile(signed long lDll); 168 KBOOL _System dbClearUpdateFlagFunction(signed long lDll, KBOOL fAll); 169 KBOOL _System dbDeleteNotUpdatedFiles(signed long lDll); 170 KBOOL _System dbDeleteNotUpdatedFunctions(signed long lDll, KBOOL fAll); 171 171 172 172 #ifdef __cplusplus
Note:
See TracChangeset
for help on using the changeset viewer.