OSDN Git Service

Please enter the commit message for your changes. Lines starting
[eos/base.git] / util / src / TclTk / tcl8.6.12 / pkgs / tdbc1.1.3 / generic / tdbcStubInit.c
1 /*
2  * tdbcStubInit.c --
3  *
4  *      Initialization of the Stubs table for the exported API of
5  *      Tcl DataBase Connectivity (TDBC)
6  *
7  * Copyright (c) 2008 by Kevin B. Kenny.
8  *
9  * See the file "license.terms" for information on usage and redistribution of
10  * this file, and for a DISCLAIMER OF ALL WARRANTIES.
11  *
12  * RCS: @(#) $Id$
13  *
14  */
15
16 #include "tdbcInt.h"
17
18 MODULE_SCOPE const TdbcStubs tdbcStubs;
19
20 #define Tdbc_Init_ Tdbc_Init
21
22 /* !BEGIN!: Do not edit below this line. */
23
24 const TdbcStubs tdbcStubs = {
25     TCL_STUB_MAGIC,
26     TDBC_STUBS_EPOCH,
27     TDBC_STUBS_REVISION,
28     0,
29     Tdbc_Init_, /* 0 */
30     Tdbc_TokenizeSql, /* 1 */
31     Tdbc_MapSqlState, /* 2 */
32 };
33
34 /* !END!: Do not edit above this line. */