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

📄 vendorp.h

📁 早期freebsd实现
💻 H
字号:
/** $XConsortium: VendorP.h,v 1.20 89/10/04 12:22:55 swick Exp $* $oHeader: VendorP.h,v 1.2 88/08/18 15:56:48 asente Exp $*//***********************************************************Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts,and the Massachusetts Institute of Technology, Cambridge, Massachusetts.                        All Rights ReservedPermission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and thatboth that copyright notice and this permission notice appear in supporting documentation, and that the names of Digital or MIT not beused in advertising or publicity pertaining to distribution of thesoftware without specific, written prior permission.  DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDINGALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALLDIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES ORANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THISSOFTWARE.******************************************************************//*  * VendorP.h - Private definitions for VendorShell widget *  * Author:	Paul Asente * 		Digital Equipment Corporation * 		Western Software Laboratory * Date:	Thu Dec 3, 1987 *//*********************************************************************** * * VendorShell Widget Private Data * ***********************************************************************/#ifndef  _XtVendorPrivate_h#define _XtVendorPrivate_h#include <X11/Vendor.h>/* New fields for the VendorShell widget class record */typedef struct {    XtPointer       extension;          /* pointer to extension record      */} VendorShellClassPart;typedef struct _VendorShellClassRec {  	CoreClassPart      core_class;	CompositeClassPart composite_class;	ShellClassPart  shell_class;	WMShellClassPart   wm_shell_class;	VendorShellClassPart vendor_shell_class;} VendorShellClassRec;externalref VendorShellClassRec vendorShellClassRec;/* New fields for the vendor shell widget. */typedef struct {	int		vendor_specific;} VendorShellPart;typedef  struct {	CorePart 	core;	CompositePart 	composite;	ShellPart 	shell;	WMShellPart	wm;	VendorShellPart	vendor;} VendorShellRec, *VendorShellWidget;#endif  /* _XtVendorPrivate_h */

⌨️ 快捷键说明

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