diff options
author | Olivier Bertrand <bertrandop@gmail.com> | 2013-02-09 01:08:15 +0100 |
---|---|---|
committer | Olivier Bertrand <bertrandop@gmail.com> | 2013-02-09 01:08:15 +0100 |
commit | 82e746ea1bd4f0e91e196863c63af75187bd121a (patch) | |
tree | 41f06e7f7f3da8aa3671929498273b10b394d949 /storage/connect/filamdbf.h | |
parent | ec2112f32d423aea353feef388ed31e36337de2b (diff) | |
download | mariadb-git-82e746ea1bd4f0e91e196863c63af75187bd121a.tar.gz |
Put almost all function prototypes in header files that are
included by the program using them.
Continuing implementing the "catalog" tables (ex "info").
Already existing were the ODBC data source table and the
WMI column info table.
A common way to handle them will permit to develop many
other such tables. Implemented:
The ODBC column catalog table.
The ODBC tables catalog table.
The ODBC drivers catalog table.
The INFO table option is replaced by the CATFUNC string option
whode first letter specifies the information to retrieve:
C: Columns (of a table)
T: Tables (of a database)
S: Data sources
D: Drivers
Modified:
ha_connect.cc
odbconn.cpp
odbconn.h
tabodbc.h
tabodbc.cpp
rcmsg.c
tabfmt.h
tabmysql.cpp
tabwmi.cpp
tabwmi.h
resource.h
myconn.h
filamdbf.h
connect.cc
connect.h
Added:
myutil.h
Diffstat (limited to 'storage/connect/filamdbf.h')
-rw-r--r-- | storage/connect/filamdbf.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/storage/connect/filamdbf.h b/storage/connect/filamdbf.h index 5325f4f9deb..d38e7f9b90f 100644 --- a/storage/connect/filamdbf.h +++ b/storage/connect/filamdbf.h @@ -17,6 +17,11 @@ typedef class DBFFAM *PDBFFAM; typedef class DBMFAM *PDBMFAM; /****************************************************************************/ +/* Functions used externally. */ +/****************************************************************************/ +PQRYRES DBFColumns(PGLOBAL g, char *fn, BOOL info); + +/****************************************************************************/ /* This is the base class for dBASE file access methods. */ /****************************************************************************/ class DllExport DBFBASE { |