OSDN Git Service

Please enter the commit message for your changes. Lines starting
[eos/hostdependX86LINUX64.git] / util / X86LINUX64 / include / tdbcInt.h
1 /*
2  * tdbcInt.h --
3  *
4  *      Declarations of the public API for Tcl DataBase Connectivity (TDBC)
5  *
6  * Copyright (c) 2006 by Kevin B. Kenny
7  *
8  * See the file "license.terms" for information on usage and redistribution of
9  * this file, and for a DISCLAIMER OF ALL WARRANTIES.
10  *
11  * RCS: @(#) $Id$
12  *
13  *-----------------------------------------------------------------------------
14  */
15 #ifndef TDBCINT_H_INCLUDED
16 #define TDBCINT_H_INCLUDED 1
17
18 #include "tdbc.h"
19
20 /*
21  * Used to tag functions that are only to be visible within the module being
22  * built and not outside it (where this is supported by the linker).
23  */
24
25 #ifndef MODULE_SCOPE
26 #   ifdef __cplusplus
27 #       define MODULE_SCOPE extern "C"
28 #   else
29 #       define MODULE_SCOPE extern
30 #   endif
31 #endif
32
33 /*
34  * Linkage to procedures not exported from this module
35  */
36
37 MODULE_SCOPE int TdbcTokenizeObjCmd(ClientData clientData, Tcl_Interp* interp,
38                                     int objc, Tcl_Obj *const objv[]);
39
40 #endif