⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tkunixinit.c

📁 linux系统下的音频通信
💻 C
字号:
/*  * tkUnixInit.c -- * *	This file contains Unix-specific interpreter initialization *	functions. * * Copyright (c) 1995-1997 Sun Microsystems, Inc. * * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * * SCCS: @(#) tkUnixInit.c 1.24 97/07/24 14:46:09 */#include "tkInt.h"#include "tkUnixInt.h"/* * The Init script (common to Windows and Unix platforms) is * defined in tkInitScript.h */#include "tkInitScript.h"/* *---------------------------------------------------------------------- * * TkpInit -- * *	Performs Unix-specific interpreter initialization related to the *      tk_library variable. * * Results: *	Returns a standard Tcl result.  Leaves an error message or result *	in interp->result. * * Side effects: *	Sets "tk_library" Tcl variable, runs "tk.tcl" script. * *---------------------------------------------------------------------- */extern char lib_tk[];extern char lib_button[];extern char lib_entry[];extern char lib_listbox[];extern char lib_menu[];extern char lib_scale[];extern char lib_scrlbar[];extern char lib_text[];extern char lib_bgerror[];extern char lib_clrpick[];extern char lib_comdlg[];extern char lib_dialog[];extern char lib_focus[];extern char lib_msgbox[];extern char lib_obsolete[];extern char lib_optMenu[];extern char lib_palette[];extern char lib_safetk[];extern char lib_tearoff[];extern char lib_tkfbox[];extern char lib_xmfbox[];intTkpInit(interp)    Tcl_Interp *interp;{    TkCreateXEventSource();    if (Tcl_Eval(interp, lib_bgerror) != TCL_OK) {    	return TCL_ERROR;    }    if (Tcl_Eval(interp, lib_clrpick) != TCL_OK) {    	return TCL_ERROR;    }    if (Tcl_Eval(interp, lib_comdlg) != TCL_OK) {    	return TCL_ERROR;    }    if (Tcl_Eval(interp, lib_dialog) != TCL_OK) {    	return TCL_ERROR;    }    if (Tcl_Eval(interp, lib_focus) != TCL_OK) {    	return TCL_ERROR;    }    if (Tcl_Eval(interp, lib_msgbox) != TCL_OK) {    	return TCL_ERROR;    }    if (Tcl_Eval(interp, lib_obsolete) != TCL_OK) {    	return TCL_ERROR;    }    if (Tcl_Eval(interp, lib_optMenu) != TCL_OK) {    	return TCL_ERROR;    }    if (Tcl_Eval(interp, lib_palette) != TCL_OK) {    	return TCL_ERROR;    }    if (Tcl_Eval(interp, lib_safetk) != TCL_OK) {    	return TCL_ERROR;    }    if (Tcl_Eval(interp, lib_tearoff) != TCL_OK) {    	return TCL_ERROR;    }    if (Tcl_Eval(interp, lib_tkfbox) != TCL_OK) {    	return TCL_ERROR;    }    if (Tcl_Eval(interp, lib_xmfbox) != TCL_OK) {    	return TCL_ERROR;    }    if (Tcl_Eval(interp, initScript) != TCL_OK) {    	return TCL_ERROR;    }    if (Tcl_Eval(interp, lib_tk) != TCL_OK) {    	return TCL_ERROR;    }    if (Tcl_Eval(interp, lib_button) != TCL_OK) {    	return TCL_ERROR;    }    if (Tcl_Eval(interp, lib_entry) != TCL_OK) {    	return TCL_ERROR;    }    if (Tcl_Eval(interp, lib_listbox) != TCL_OK) {    	return TCL_ERROR;    }    if (Tcl_Eval(interp, lib_menu) != TCL_OK) {    	return TCL_ERROR;    }    if (Tcl_Eval(interp, lib_scale) != TCL_OK) {    	return TCL_ERROR;    }    if (Tcl_Eval(interp, lib_scrlbar) != TCL_OK) {    	return TCL_ERROR;    }    if (Tcl_Eval(interp, lib_text) != TCL_OK) {    	return TCL_ERROR;    }    return TCL_OK;}/* *---------------------------------------------------------------------- * * TkpGetAppName -- * *	Retrieves the name of the current application from a platform *	specific location.  For Unix, the application name is the tail *	of the path contained in the tcl variable argv0. * * Results: *	Returns the application name in the given Tcl_DString. * * Side effects: *	None. * *---------------------------------------------------------------------- */voidTkpGetAppName(interp, namePtr)    Tcl_Interp *interp;    Tcl_DString *namePtr;	/* A previously initialized Tcl_DString. */{    char *p, *name;    name = Tcl_GetVar(interp, "argv0", TCL_GLOBAL_ONLY);    if ((name == NULL) || (*name == 0)) {	name = "tk";    } else {	p = strrchr(name, '/');	if (p != NULL) {	    name = p+1;	}    }    Tcl_DStringAppend(namePtr, name, -1);}/* *---------------------------------------------------------------------- * * TkpDisplayWarning -- * *	This routines is called from Tk_Main to display warning *	messages that occur during startup. * * Results: *	None. * * Side effects: *	Generates messages on stdout. * *---------------------------------------------------------------------- */voidTkpDisplayWarning(msg, title)    char *msg;			/* Message to be displayed. */    char *title;		/* Title of warning. */{    Tcl_Channel errChannel = Tcl_GetStdChannel(TCL_STDERR);    if (errChannel) {	Tcl_Write(errChannel, title, -1);	Tcl_Write(errChannel, ": ", 2);	Tcl_Write(errChannel, msg, -1);	Tcl_Write(errChannel, "\n", 1);    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -