diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2013-09-28 21:10:22 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2013-09-28 21:10:22 (GMT) |
commit | 789e4ada24cc5f08a6d5300e354a752cdb066eec (patch) | |
tree | 237232116c040b5ba99802070b265f1cf95e5946 /generic/tclOO.decls | |
parent | ad4355066f0d4cdafaa288933a1517e6c79817ad (diff) | |
download | tcl-789e4ada24cc5f08a6d5300e354a752cdb066eec.zip tcl-789e4ada24cc5f08a6d5300e354a752cdb066eec.tar.gz tcl-789e4ada24cc5f08a6d5300e354a752cdb066eec.tar.bz2 |
[dfc08326e3]: Corrected symbol export for TclOO to match Tcl so things work as
expected in a static build.
Diffstat (limited to 'generic/tclOO.decls')
-rw-r--r-- | generic/tclOO.decls | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/generic/tclOO.decls b/generic/tclOO.decls index 31d1113..19d3f03 100644 --- a/generic/tclOO.decls +++ b/generic/tclOO.decls @@ -1,12 +1,25 @@ +# tclOO.decls -- +# +# This file contains the declarations for all supported public functions +# that are exported by the TclOO package that is embedded within the Tcl +# library via the stubs table. This file is used to generate the +# tclOODecls.h, tclOOIntDecls.h, tclOOStubInit.c, and tclOOStubLib.c +# files. +# +# Copyright (c) 2008-2013 by Donal K. Fellows. +# +# See the file "license.terms" for information on usage and redistribution of +# this file, and for a DISCLAIMER OF ALL WARRANTIES. + library tclOO +scspec EXTERN ###################################################################### -# public API +# Public API, exposed for general users of TclOO. # interface tclOO hooks tclOOInt -scspec TCLOOAPI declare 0 { Tcl_Object Tcl_CopyObjectInstance(Tcl_Interp *interp, @@ -116,7 +129,9 @@ declare 28 { } ###################################################################### -# private API, exposed to support advanced OO systems that plug in on top +# Private API, exposed to support advanced OO systems that plug in on top of +# TclOO; not intended for general use and does not have any commitment to +# long-term support. # interface tclOOInt |