tclwinint.h

来自「linux系统下的音频通信」· C头文件 代码 · 共 47 行

H
47
字号
/* * tclWinInt.h -- * *	Declarations of Windows-specific shared variables and procedures. * * Copyright (c) 1994-1996 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: @(#) tclWinInt.h 1.7 97/06/25 10:56:14 */#ifndef _TCLWININT#define _TCLWININT#ifndef _TCLINT#include "tclInt.h"#endif#ifndef _TCLPORT#include "tclPort.h"#endif#ifdef BUILD_tcl# undef TCL_STORAGE_CLASS# define TCL_STORAGE_CLASS DLLEXPORT#endif/* * Some versions of Borland C have a define for the OSVERSIONINFO for * Win32s and for NT, but not for Windows 95. */#ifndef VER_PLATFORM_WIN32_WINDOWS#define VER_PLATFORM_WIN32_WINDOWS 1#endifEXTERN int		TclWinGetPlatformId(void);EXTERN void		TclWinInit(HINSTANCE hInst);EXTERN int		TclWinSynchSpawn(void *args, int type, void **trans,				      Tcl_Pid *pidPtr);# undef TCL_STORAGE_CLASS# define TCL_STORAGE_CLASS DLLIMPORT#endif	/* _TCLWININT */

⌨️ 快捷键说明

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