diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-03-24 11:13:27 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-03-24 11:13:27 (GMT) |
commit | fa618f393f32c0e0ea7f0e0ba033d4a06ad8b938 (patch) | |
tree | 57b35e925aa5176d0e438a57d50f42456ac90d5f /macosx/tclMacOSXBundle.c | |
parent | ac5b43b0958ce33516d3cd4e285c8357876beb35 (diff) | |
parent | 3f3b063fc15a47c803a2c5d2fb14f719b256dba9 (diff) | |
download | tcl-fa618f393f32c0e0ea7f0e0ba033d4a06ad8b938.zip tcl-fa618f393f32c0e0ea7f0e0ba033d4a06ad8b938.tar.gz tcl-fa618f393f32c0e0ea7f0e0ba033d4a06ad8b938.tar.bz2 |
Merge 8.7.
Remove Tcl_MacOSXOpenBundleResources() completely.
Diffstat (limited to 'macosx/tclMacOSXBundle.c')
-rw-r--r-- | macosx/tclMacOSXBundle.c | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/macosx/tclMacOSXBundle.c b/macosx/tclMacOSXBundle.c index df6fbdd..09fc4b6 100644 --- a/macosx/tclMacOSXBundle.c +++ b/macosx/tclMacOSXBundle.c @@ -146,38 +146,6 @@ OpenResourceMap( /* *---------------------------------------------------------------------- * - * Tcl_MacOSXOpenBundleResources -- - * - * Given the bundle name for a shared library, this routine sets - * libraryPath to the Resources/Scripts directory in the framework - * package. If hasResourceFile is true, it will also open the main - * resource file for the bundle. - * - * Results: - * TCL_OK if the bundle could be opened, and the Scripts folder found. - * TCL_ERROR otherwise. - * - * Side effects: - * libraryVariableName may be set, and the resource file opened. - * - *---------------------------------------------------------------------- - */ - -int -Tcl_MacOSXOpenBundleResources( - Tcl_Interp *interp, - const char *bundleName, - int hasResourceFile, - size_t maxPathLen, - char *libraryPath) -{ - return Tcl_MacOSXOpenVersionedBundleResources(interp, bundleName, NULL, - hasResourceFile, maxPathLen, libraryPath); -} - -/* - *---------------------------------------------------------------------- - * * Tcl_MacOSXOpenVersionedBundleResources -- * * Given the bundle and version name for a shared library (version name |