diff options
author | vincentdarley <vincentdarley> | 2002-07-18 15:04:51 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2002-07-18 15:04:51 (GMT) |
commit | b355103baab13c260a35798a589f4357f9fd115a (patch) | |
tree | f356d5d56da72d498b37011b9e007ccb03fade54 /win | |
parent | 20f90f51f25cf3474e10150eebc6f1e23f68a0db (diff) | |
download | tcl-b355103baab13c260a35798a589f4357f9fd115a.zip tcl-b355103baab13c260a35798a589f4357f9fd115a.tar.gz tcl-b355103baab13c260a35798a589f4357f9fd115a.tar.bz2 |
load comments and clientData replacement
Diffstat (limited to 'win')
-rw-r--r-- | win/tclWinLoad.c | 30 |
1 files changed, 22 insertions, 8 deletions
diff --git a/win/tclWinLoad.c b/win/tclWinLoad.c index 48a6c3b..620aa6c 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.12 2002/07/17 20:00:46 vincentdarley Exp $ + * RCS: @(#) $Id: tclWinLoad.c,v 1.13 2002/07/18 15:04:54 vincentdarley Exp $ */ #include "tclWinInt.h" @@ -19,11 +19,10 @@ /* *---------------------------------------------------------------------- * - * TclpLoadFile -- + * TclpDlopen -- * * Dynamically loads a binary code file into memory and returns - * the addresses of two procedures within that file, if they - * are defined. + * a handle to the new code. * * Results: * A standard Tcl completion code. If an error occurs, an error @@ -114,6 +113,21 @@ TclpDlopen(interp, pathPtr, loadHandle, unloadProcPtr) return TCL_OK; } +/* + *---------------------------------------------------------------------- + * + * TclpFindSymbol -- + * + * Looks up a symbol, by name, through a handle associated with + * a previously loaded piece of code (shared library). + * + * Results: + * Returns a pointer to the function associated with 'symbol' if + * it is found. Otherwise returns NULL and may leave an error + * message in the interp's result. + * + *---------------------------------------------------------------------- + */ Tcl_PackageInitProc* TclpFindSymbol(interp, loadHandle, symbol) Tcl_Interp *interp; @@ -159,15 +173,15 @@ TclpFindSymbol(interp, loadHandle, symbol) */ void -TclpUnloadFile(clientData) - ClientData clientData; /* ClientData returned by a previous call - * to TclpLoadFile(). The clientData is +TclpUnloadFile(loadHandle) + TclLoadHandle loadHandle; /* loadHandle returned by a previous call + * to TclpDlopen(). The loadHandle is * a token that represents the loaded * file. */ { HINSTANCE handle; - handle = (HINSTANCE) clientData; + handle = (HINSTANCE) loadHandle; FreeLibrary(handle); } |