summaryrefslogtreecommitdiffstats
path: root/win/tclWinLoad.c
diff options
context:
space:
mode:
authorvincentdarley <vincentdarley>2002-07-18 16:26:00 (GMT)
committervincentdarley <vincentdarley>2002-07-18 16:26:00 (GMT)
commit4bb72e7bf13c65b6744c9dd1ab7580494cfeaa69 (patch)
tree637913dec4ebf406528191827f1ccc5700d994e7 /win/tclWinLoad.c
parent20201e313950ca2b4b8af678b6527c4c14c8f7c5 (diff)
downloadtcl-4bb72e7bf13c65b6744c9dd1ab7580494cfeaa69.zip
tcl-4bb72e7bf13c65b6744c9dd1ab7580494cfeaa69.tar.gz
tcl-4bb72e7bf13c65b6744c9dd1ab7580494cfeaa69.tar.bz2
Tcl_LoadHandle usage
Diffstat (limited to 'win/tclWinLoad.c')
-rw-r--r--win/tclWinLoad.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/win/tclWinLoad.c b/win/tclWinLoad.c
index 620aa6c..acbdecc 100644
--- a/win/tclWinLoad.c
+++ b/win/tclWinLoad.c
@@ -10,7 +10,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclWinLoad.c,v 1.13 2002/07/18 15:04:54 vincentdarley Exp $
+ * RCS: @(#) $Id: tclWinLoad.c,v 1.14 2002/07/18 16:26:05 vincentdarley Exp $
*/
#include "tclWinInt.h"
@@ -39,7 +39,7 @@ TclpDlopen(interp, pathPtr, loadHandle, unloadProcPtr)
Tcl_Interp *interp; /* Used for error reporting. */
Tcl_Obj *pathPtr; /* Name of the file containing the desired
* code (UTF-8). */
- TclLoadHandle *loadHandle; /* Filled with token for dynamically loaded
+ Tcl_LoadHandle *loadHandle; /* Filled with token for dynamically loaded
* file which will be passed back to
* (*unloadProcPtr)() to unload the file. */
Tcl_FSUnloadFileProc **unloadProcPtr;
@@ -56,7 +56,7 @@ TclpDlopen(interp, pathPtr, loadHandle, unloadProcPtr)
handle = (*tclWinProcs->loadLibraryProc)(nativeName);
Tcl_DStringFree(&ds);
- *loadHandle = (TclLoadHandle) handle;
+ *loadHandle = (Tcl_LoadHandle) handle;
if (handle == NULL) {
DWORD lastError = GetLastError();
@@ -131,7 +131,7 @@ TclpDlopen(interp, pathPtr, loadHandle, unloadProcPtr)
Tcl_PackageInitProc*
TclpFindSymbol(interp, loadHandle, symbol)
Tcl_Interp *interp;
- TclLoadHandle loadHandle;
+ Tcl_LoadHandle loadHandle;
CONST char *symbol;
{
Tcl_PackageInitProc *proc = NULL;
@@ -174,7 +174,7 @@ TclpFindSymbol(interp, loadHandle, symbol)
void
TclpUnloadFile(loadHandle)
- TclLoadHandle loadHandle; /* loadHandle returned by a previous call
+ Tcl_LoadHandle loadHandle; /* loadHandle returned by a previous call
* to TclpDlopen(). The loadHandle is
* a token that represents the loaded
* file. */