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

通讯编程

开发平台:

Visual C++

  1. /* 
  2.  * pkgf.c --
  3.  *
  4.  * This file contains a simple Tcl package "pkgf" 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: pkgf.c,v 1.4 1999/04/16 00:48:06 stanton Exp $
  14.  */
  15. #include "tcl.h"
  16. /*
  17.  * Prototypes for procedures defined later in this file:
  18.  */
  19. static int Pkgd_SubCmd _ANSI_ARGS_((ClientData clientData,
  20.     Tcl_Interp *interp, int argc, char **argv));
  21. static int Pkgd_UnsafeCmd _ANSI_ARGS_((ClientData clientData,
  22.     Tcl_Interp *interp, int argc, char **argv));
  23. /*
  24.  *----------------------------------------------------------------------
  25.  *
  26.  * Pkgf_Init --
  27.  *
  28.  * This is a package initialization procedure, which is called
  29.  * by Tcl when this package is to be added to an interpreter.
  30.  *
  31.  * Results:
  32.  * Returns TCL_ERROR and leaves an error message in interp->result.
  33.  *
  34.  * Side effects:
  35.  * None.
  36.  *
  37.  *----------------------------------------------------------------------
  38.  */
  39. int
  40. Pkgf_Init(interp)
  41.     Tcl_Interp *interp; /* Interpreter in which the package is
  42.  * to be made available. */
  43. {
  44.     static char script[] = "if 44 {open non_existent}";
  45.     if (Tcl_InitStubs(interp, TCL_VERSION, 1) == NULL) {
  46. return TCL_ERROR;
  47.     }
  48.     return Tcl_Eval(interp, script);
  49. }