|
||||
File indexing completed on 2025-01-17 09:56:08
0001 /* 0002 * tdbcInt.h -- 0003 * 0004 * Declarations of the public API for Tcl DataBase Connectivity (TDBC) 0005 * 0006 * Copyright (c) 2006 by Kevin B. Kenny 0007 * 0008 * See the file "license.terms" for information on usage and redistribution of 0009 * this file, and for a DISCLAIMER OF ALL WARRANTIES. 0010 * 0011 * RCS: @(#) $Id$ 0012 * 0013 *----------------------------------------------------------------------------- 0014 */ 0015 #ifndef TDBCINT_H_INCLUDED 0016 #define TDBCINT_H_INCLUDED 1 0017 0018 #include "tdbc.h" 0019 0020 /* 0021 * Used to tag functions that are only to be visible within the module being 0022 * built and not outside it (where this is supported by the linker). 0023 */ 0024 0025 #ifndef MODULE_SCOPE 0026 # ifdef __cplusplus 0027 # define MODULE_SCOPE extern "C" 0028 # else 0029 # define MODULE_SCOPE extern 0030 # endif 0031 #endif 0032 0033 /* 0034 * Linkage to procedures not exported from this module 0035 */ 0036 0037 MODULE_SCOPE int TdbcTokenizeObjCmd(ClientData clientData, Tcl_Interp* interp, 0038 int objc, Tcl_Obj *const objv[]); 0039 0040 #endif
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |