summaryrefslogtreecommitdiffstats
path: root/generic/tclPlatDecls.h
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2018-07-03 19:24:45 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2018-07-03 19:24:45 (GMT)
commit572883ec08458425e314f1bae57a5e04b46fc887 (patch)
treef6b60451a12773d16803ee0c2830a9f92297f933 /generic/tclPlatDecls.h
parent79f1d89388b7f8956b21b3f074ed61cf941bfef5 (diff)
downloadtcl-572883ec08458425e314f1bae57a5e04b46fc887.zip
tcl-572883ec08458425e314f1bae57a5e04b46fc887.tar.gz
tcl-572883ec08458425e314f1bae57a5e04b46fc887.tar.bz2
More size_t API changes (*.decls files are complete now)
Diffstat (limited to 'generic/tclPlatDecls.h')
-rw-r--r--generic/tclPlatDecls.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tclPlatDecls.h b/generic/tclPlatDecls.h
index abe984b..7218490 100644
--- a/generic/tclPlatDecls.h
+++ b/generic/tclPlatDecls.h
@@ -62,12 +62,12 @@ EXTERN char * Tcl_WinTCharToUtf(const TCHAR *str, size_t len,
/* 0 */
EXTERN int Tcl_MacOSXOpenBundleResources(Tcl_Interp *interp,
const char *bundleName, int hasResourceFile,
- int maxPathLen, char *libraryPath);
+ size_t maxPathLen, char *libraryPath);
/* 1 */
EXTERN int Tcl_MacOSXOpenVersionedBundleResources(
Tcl_Interp *interp, const char *bundleName,
const char *bundleVersion,
- int hasResourceFile, int maxPathLen,
+ int hasResourceFile, size_t maxPathLen,
char *libraryPath);
#endif /* MACOSX */
@@ -80,8 +80,8 @@ typedef struct TclPlatStubs {
char * (*tcl_WinTCharToUtf) (const TCHAR *str, size_t len, Tcl_DString *dsPtr); /* 1 */
#endif /* WIN */
#ifdef MAC_OSX_TCL /* MACOSX */
- int (*tcl_MacOSXOpenBundleResources) (Tcl_Interp *interp, const char *bundleName, int hasResourceFile, int maxPathLen, char *libraryPath); /* 0 */
- int (*tcl_MacOSXOpenVersionedBundleResources) (Tcl_Interp *interp, const char *bundleName, const char *bundleVersion, int hasResourceFile, int maxPathLen, char *libraryPath); /* 1 */
+ int (*tcl_MacOSXOpenBundleResources) (Tcl_Interp *interp, const char *bundleName, int hasResourceFile, size_t maxPathLen, char *libraryPath); /* 0 */
+ int (*tcl_MacOSXOpenVersionedBundleResources) (Tcl_Interp *interp, const char *bundleName, const char *bundleVersion, int hasResourceFile, size_t maxPathLen, char *libraryPath); /* 1 */
#endif /* MACOSX */
} TclPlatStubs;