summaryrefslogtreecommitdiffstats
path: root/win/tclWinLoad.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2012-10-23 21:50:49 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2012-10-23 21:50:49 (GMT)
commitfb0fd528e967d229029a88b65bc2dbfce95d84f9 (patch)
tree5c9ef484f31fe996558b26c4791947245829a42a /win/tclWinLoad.c
parentd769538676cb8b26781e89f7ac1cb5dad28aa999 (diff)
parent3d737d62cf9052d88fc73809b3e3104e047f992f (diff)
downloadtcl-fb0fd528e967d229029a88b65bc2dbfce95d84f9.zip
tcl-fb0fd528e967d229029a88b65bc2dbfce95d84f9.tar.gz
tcl-fb0fd528e967d229029a88b65bc2dbfce95d84f9.tar.bz2
Add "flags" parameter from Tcl_LoadFile to to various internal functions, so these flags are available through the whole filesystem for (future) internal use
Diffstat (limited to 'win/tclWinLoad.c')
-rw-r--r--win/tclWinLoad.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/win/tclWinLoad.c b/win/tclWinLoad.c
index 6294086..3e11224 100644
--- a/win/tclWinLoad.c
+++ b/win/tclWinLoad.c
@@ -57,10 +57,11 @@ TclpDlopen(
Tcl_LoadHandle *loadHandle, /* Filled with token for dynamically loaded
* file which will be passed back to
* (*unloadProcPtr)() to unload the file. */
- Tcl_FSUnloadFileProc **unloadProcPtr)
+ Tcl_FSUnloadFileProc **unloadProcPtr,
/* Filled with address of Tcl_FSUnloadFileProc
* function which should be used for this
* file. */
+ int flags)
{
HINSTANCE hInstance;
const TCHAR *nativeName;