| /* | |
| * tdbc.h -- | |
| * | |
| * Declarations of the public API for Tcl DataBase Connectivity (TDBC) | |
| * | |
| * Copyright (c) 2006 by Kevin B. Kenny | |
| * | |
| * See the file "license.terms" for information on usage and redistribution of | |
| * this file, and for a DISCLAIMER OF ALL WARRANTIES. | |
| * | |
| * RCS: @(#) $Id$ | |
| * | |
| *----------------------------------------------------------------------------- | |
| */ | |
| extern "C" { | |
| DLLEXPORT int Tdbc_Init(Tcl_Interp *interp); | |
| extern int Tdbc_Init(Tcl_Interp* interp); | |
| DLLIMPORT int Tdbc_Init(Tcl_Interp* interp); | |
| TDBCAPI const char* TdbcInitializeStubs( | |
| Tcl_Interp* interp, const char* version, int epoch, int revision); | |
| } | |
| /* | |
| * TDBC_VERSION and TDBC_PATCHLEVEL here must match the ones that | |
| * appear near the top of configure.ac. | |
| */ | |
| /* | |
| * Include the Stubs declarations for the public API, generated from | |
| * tdbc.decls. | |
| */ | |
| /* | |
| * Local Variables: | |
| * mode: c | |
| * c-basic-offset: 4 | |
| * fill-column: 78 | |
| * End: | |
| */ | |