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

通讯编程

开发平台:

Visual C++

  1. /* 
  2.  * pkge.c --
  3.  *
  4.  * This file contains a simple Tcl package "pkge" that is intended
  5.  * for testing the Tcl dynamic loading facilities.  Its Init
  6.  * procedure returns an error in order to test how this is handled.
  7.  *
  8.  * Copyright (c) 1995 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: pkge.c,v 1.5 2000/04/04 08:06:07 hobbs Exp $
  14.  */
  15. #include "tcl.h"
  16. /*
  17.  *----------------------------------------------------------------------
  18.  *
  19.  * Pkge_Init --
  20.  *
  21.  * This is a package initialization procedure, which is called
  22.  * by Tcl when this package is to be added to an interpreter.
  23.  *
  24.  * Results:
  25.  * Returns TCL_ERROR and leaves an error message in interp->result.
  26.  *
  27.  * Side effects:
  28.  * None.
  29.  *
  30.  *----------------------------------------------------------------------
  31.  */
  32. int
  33. Pkge_Init(interp)
  34.     Tcl_Interp *interp; /* Interpreter in which the package is
  35.  * to be made available. */
  36. {
  37.     static char script[] = "if 44 {open non_existent}";
  38.     if (Tcl_InitStubs(interp, TCL_VERSION, 1) == NULL) {
  39. return TCL_ERROR;
  40.     }
  41.     return Tcl_Eval(interp, script);
  42. }