Import Tcl 8.6.12
This commit is contained in:
34
pkgs/tdbc1.1.3/generic/tdbcStubInit.c
Normal file
34
pkgs/tdbc1.1.3/generic/tdbcStubInit.c
Normal file
@@ -0,0 +1,34 @@
|
||||
/*
|
||||
* tdbcStubInit.c --
|
||||
*
|
||||
* Initialization of the Stubs table for the exported API of
|
||||
* Tcl DataBase Connectivity (TDBC)
|
||||
*
|
||||
* Copyright (c) 2008 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$
|
||||
*
|
||||
*/
|
||||
|
||||
#include "tdbcInt.h"
|
||||
|
||||
MODULE_SCOPE const TdbcStubs tdbcStubs;
|
||||
|
||||
#define Tdbc_Init_ Tdbc_Init
|
||||
|
||||
/* !BEGIN!: Do not edit below this line. */
|
||||
|
||||
const TdbcStubs tdbcStubs = {
|
||||
TCL_STUB_MAGIC,
|
||||
TDBC_STUBS_EPOCH,
|
||||
TDBC_STUBS_REVISION,
|
||||
0,
|
||||
Tdbc_Init_, /* 0 */
|
||||
Tdbc_TokenizeSql, /* 1 */
|
||||
Tdbc_MapSqlState, /* 2 */
|
||||
};
|
||||
|
||||
/* !END!: Do not edit above this line. */
|
||||
Reference in New Issue
Block a user