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

通讯编程

开发平台:

Visual C++

  1. /* 
  2.  * tkAppInit.c --
  3.  *
  4.  * Provides a default version of the Tcl_AppInit procedure for
  5.  * use in wish and similar Tk-based applications.
  6.  *
  7.  * Copyright (c) 1993 The Regents of the University of California.
  8.  * Copyright (c) 1994 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.  * SCCS: @(#) tkAppInit.c 1.21 96/03/26 16:47:07
  14.  */
  15. #ifdef notdef
  16. #include "tk.h"
  17. #endif
  18. #include "tclcl.h"
  19. extern "C" {
  20. #include <otcl.h>
  21. }
  22. /*
  23.  * The following variable is a special hack that is needed in order for
  24.  * Sun shared libraries to be used for Tcl.
  25.  */
  26. extern "C"  {
  27. extern int matherr();
  28. int *tclDummyMathPtr = (int *) matherr;
  29. }
  30. extern "C" {
  31. /* override the playform init routine in the tk library */
  32. int
  33. TkPlatformInit(Tcl_Interp *interp)
  34. {
  35. extern void TkCreateXEventSource(void);
  36. Tcl_SetVar(interp, "tk_library", ".", TCL_GLOBAL_ONLY);
  37. return (TCL_OK);
  38. }
  39. }
  40. /*
  41.  *----------------------------------------------------------------------
  42.  *
  43.  * main --
  44.  *
  45.  * This is the main program for the application.
  46.  *
  47.  * Results:
  48.  * None: Tk_Main never returns here, so this procedure never
  49.  * returns either.
  50.  *
  51.  * Side effects:
  52.  * Whatever the application does.
  53.  *
  54.  *----------------------------------------------------------------------
  55.  */
  56. int
  57. main(int argc, char** argv)
  58. {
  59.     Tcl_Main(argc, argv, Tcl_AppInit);
  60.     return 0; /* Needed only to prevent compiler warning. */
  61. }
  62. /*
  63.  *----------------------------------------------------------------------
  64.  *
  65.  * Tcl_AppInit --
  66.  *
  67.  * This procedure performs application-specific initialization.
  68.  * Most applications, especially those that incorporate additional
  69.  * packages, will have their own version of this procedure.
  70.  *
  71.  * Results:
  72.  * Returns a standard Tcl completion code, and leaves an error
  73.  * message in interp->result if an error occurs.
  74.  *
  75.  * Side effects:
  76.  * Depends on the startup script.
  77.  *
  78.  *----------------------------------------------------------------------
  79.  */
  80. int
  81. Tcl_AppInit(Tcl_Interp *interp)
  82. {
  83.     if (Tcl_Init(interp) == TCL_ERROR) {
  84. return TCL_ERROR;
  85.     }
  86.     /*
  87.      * Call the init procedures for included packages.  Each call should
  88.      * look like this:
  89.      *
  90.      * if (Mod_Init(interp) == TCL_ERROR) {
  91.      *     return TCL_ERROR;
  92.      * }
  93.      *
  94.      * where "Mod" is the name of the module.
  95.      */
  96.     if (Otcl_Init(interp) == TCL_ERROR)
  97.     return TCL_ERROR;
  98.     Tcl::init(interp, "xtclsh");
  99. #ifdef notdef
  100.     EmbeddedTcl::load_Tk();
  101.     EmbeddedTcl::define_rate_variable();
  102.     EmbeddedTcl::init();
  103. #endif
  104.     /*
  105.      * Call Tcl_CreateCommand for application-specific commands, if
  106.      * they weren't already created by the init procedures called above.
  107.      */
  108.     /*
  109.      * Specify a user-specific startup file to invoke if the application
  110.      * is run interactively.  Typically the startup file is "~/.apprc"
  111.      * where "app" is the name of the application.  If this line is deleted
  112.      * then no user-specific startup file will be run under any conditions.
  113.      */
  114.     Tcl_SetVar(interp, "tcl_rcFileName", "~/.tclshrc", TCL_GLOBAL_ONLY);
  115.     return TCL_OK;
  116. }