diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-05-14 22:26:54 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-05-14 22:26:54 (GMT) |
commit | 7ac6053161fe49bc32f962b38e67f94f172ce709 (patch) | |
tree | 5378cd05b831bdc6aaee9578907424d241259a6d /generic/tcl.decls | |
parent | 515c4f1a4cc29e7f4dd2fb0ca65aaec0e0172cab (diff) | |
download | tcl-7ac6053161fe49bc32f962b38e67f94f172ce709.zip tcl-7ac6053161fe49bc32f962b38e67f94f172ce709.tar.gz tcl-7ac6053161fe49bc32f962b38e67f94f172ce709.tar.bz2 |
revert part of [9922ac54e8]: remove Tcl_MacOSXOpenBundleResources and Tcl_MacOSXOpenVersionedBundleResources from the UNIX stub table, instead let cygwin make use of the win32 stub table
Diffstat (limited to 'generic/tcl.decls')
-rw-r--r-- | generic/tcl.decls | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/generic/tcl.decls b/generic/tcl.decls index 41e3d1d..db9950c 100644 --- a/generic/tcl.decls +++ b/generic/tcl.decls @@ -1493,7 +1493,6 @@ declare 420 { declare 421 { Tcl_HashEntry *Tcl_FindHashEntry(Tcl_HashTable *tablePtr, const char *key) } - declare 422 { Tcl_HashEntry *Tcl_CreateHashEntry(Tcl_HashTable *tablePtr, const char *key, int *newPtr) @@ -1798,12 +1797,16 @@ declare 573 { ############################################################################## -# Define the platform specific public Tcl interface. These functions are -# only available on the designated platform. +# Define the platform specific public Tcl interface. These functions are only +# available on the designated platform. interface tclPlat ################################ +# Unix specific functions +# (none) + +################################ # Windows specific functions # Added in Tcl 8.1 @@ -1867,12 +1870,12 @@ declare 8 mac { ################################ # Mac OS X specific functions -declare 0 unix { +declare 0 macosx { int Tcl_MacOSXOpenBundleResources(Tcl_Interp *interp, const char *bundleName, int hasResourceFile, int maxPathLen, char *libraryPath) } -declare 1 unix { +declare 1 macosx { int Tcl_MacOSXOpenVersionedBundleResources(Tcl_Interp *interp, const char *bundleName, const char *bundleVersion, int hasResourceFile, int maxPathLen, char *libraryPath) |