apidocs with doxygen

This commit is contained in:
pedromorgan
2021-01-16 16:05:28 +00:00
parent 0e3a627ee6
commit da730d3696
27 changed files with 6316 additions and 136 deletions

View File

@@ -30,6 +30,11 @@
#endif
#include "connectparams.h"
/** \addtogroup odbc
* @{
*/
/*
* * Last resort place to check for INI file. This is usually set at compile time
* * by build scripts.
@@ -312,3 +317,4 @@ ODBCINSTGetProperties(HODBCINSTPROPERTY hLastProperty)
}
#endif
/** @}*/

View File

@@ -25,6 +25,10 @@
#include <mdbfakeglib.h>
#endif
/** \addtogroup odbc
* @{
*/
typedef struct
{
GString* dsnName;
@@ -44,3 +48,4 @@ gchar* ExtractDSN (ConnectParams* params, const gchar* connectString);
gchar* ExtractDBQ (ConnectParams* params, const gchar* connectString);
#endif
/** @}*/

View File

@@ -35,6 +35,10 @@
extern "C" {
#endif
/** \addtogroup odbc
* @{
*/
struct _henv {
GPtrArray *connections;
char sqlState[6];
@@ -81,3 +85,4 @@ struct _sql_bind_info {
}
#endif
#endif
/** @}*/

View File

@@ -28,6 +28,10 @@
#include <limits.h>
#include "mdbodbc.h"
/** \addtogroup odbc
* @{
*/
//#define TRACE(x) fprintf(stderr,"Function %s\n", x);
#define TRACE(x)
@@ -2375,3 +2379,4 @@ static const char * _odbc_get_client_type_name(MdbColumn *col)
return NULL;
}
/** @}*/