tclLoadNone.c
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:4k
源码类别:

通讯编程

开发平台:

Visual C++

  1. /* 
  2.  * tclLoadNone.c --
  3.  *
  4.  * This procedure provides a version of the TclLoadFile for use
  5.  * in systems that don't support dynamic loading; it just returns
  6.  * an error.
  7.  *
  8.  * Copyright (c) 1995-1997 Sun Microsystems, Inc.
  9.  *
  10.  * See the file "license.terms" for information on usage and redistribution
  11.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  12.  *
  13.  * RCS: @(#) $Id: tclLoadNone.c,v 1.11 2002/07/18 16:26:03 vincentdarley Exp $
  14.  */
  15. #include "tclInt.h"
  16. /*
  17.  *----------------------------------------------------------------------
  18.  *
  19.  * TclpDlopen --
  20.  *
  21.  * This procedure is called to carry out dynamic loading of binary
  22.  * code;  it is intended for use only on systems that don't support
  23.  * dynamic loading (it returns an error).
  24.  *
  25.  * Results:
  26.  * The result is TCL_ERROR, and an error message is left in
  27.  * the interp's result.
  28.  *
  29.  * Side effects:
  30.  * None.
  31.  *
  32.  *----------------------------------------------------------------------
  33.  */
  34. int
  35. TclpDlopen(interp, pathPtr, loadHandle, unloadProcPtr)
  36.     Tcl_Interp *interp; /* Used for error reporting. */
  37.     Tcl_Obj *pathPtr; /* Name of the file containing the desired
  38.  * code (UTF-8). */
  39.     Tcl_LoadHandle *loadHandle; /* Filled with token for dynamically loaded
  40.  * file which will be passed back to 
  41.  * (*unloadProcPtr)() to unload the file. */
  42.     Tcl_FSUnloadFileProc **unloadProcPtr;
  43. /* Filled with address of Tcl_FSUnloadFileProc
  44.  * function which should be used for
  45.  * this file. */
  46. {
  47.     Tcl_SetResult(interp,
  48.     "dynamic loading is not currently available on this system",
  49.     TCL_STATIC);
  50.     return TCL_ERROR;
  51. }
  52. /*
  53.  *----------------------------------------------------------------------
  54.  *
  55.  * TclpFindSymbol --
  56.  *
  57.  * Looks up a symbol, by name, through a handle associated with
  58.  * a previously loaded piece of code (shared library).
  59.  *
  60.  * Results:
  61.  * Returns a pointer to the function associated with 'symbol' if
  62.  * it is found.  Otherwise returns NULL and may leave an error
  63.  * message in the interp's result.
  64.  *
  65.  *----------------------------------------------------------------------
  66.  */
  67. Tcl_PackageInitProc*
  68. TclpFindSymbol(interp, loadHandle, symbol) 
  69.     Tcl_Interp *interp;
  70.     Tcl_LoadHandle loadHandle;
  71.     CONST char *symbol;
  72. {
  73.     return NULL;
  74. }
  75. /*
  76.  *----------------------------------------------------------------------
  77.  *
  78.  * TclGuessPackageName --
  79.  *
  80.  * If the "load" command is invoked without providing a package
  81.  * name, this procedure is invoked to try to figure it out.
  82.  *
  83.  * Results:
  84.  * Always returns 0 to indicate that we couldn't figure out a
  85.  * package name;  generic code will then try to guess the package
  86.  * from the file name.  A return value of 1 would have meant that
  87.  * we figured out the package name and put it in bufPtr.
  88.  *
  89.  * Side effects:
  90.  * None.
  91.  *
  92.  *----------------------------------------------------------------------
  93.  */
  94. int
  95. TclGuessPackageName(fileName, bufPtr)
  96.     CONST char *fileName; /* Name of file containing package (already
  97.  * translated to local form if needed). */
  98.     Tcl_DString *bufPtr; /* Initialized empty dstring.  Append
  99.  * package name to this if possible. */
  100. {
  101.     return 0;
  102. }
  103. /*
  104.  *----------------------------------------------------------------------
  105.  *
  106.  * TclpUnloadFile --
  107.  *
  108.  *    This procedure is called to carry out dynamic unloading of binary
  109.  *    code;  it is intended for use only on systems that don't support
  110.  *    dynamic loading (it does nothing).
  111.  *
  112.  * Results:
  113.  *    None.
  114.  *
  115.  * Side effects:
  116.  *    None.
  117.  *
  118.  *----------------------------------------------------------------------
  119.  */
  120. void
  121. TclpUnloadFile(loadHandle)
  122.     Tcl_LoadHandle loadHandle; /* loadHandle returned by a previous call
  123.  * to TclpDlopen().  The loadHandle is 
  124.  * a token that represents the loaded 
  125.  * file. */
  126. {
  127. }