VendorP.h
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:4k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2. * $Xorg: VendorP.h,v 1.4 2001/02/09 02:03:59 xorgcvs Exp $
  3. * $oHeader: VendorP.h,v 1.2 88/08/18 15:56:48 asente Exp $
  4. */
  5. /***********************************************************
  6. Copyright 1987, 1988, 1998  The Open Group
  7. Permission to use, copy, modify, distribute, and sell this software and its
  8. documentation for any purpose is hereby granted without fee, provided that
  9. the above copyright notice appear in all copies and that both that
  10. copyright notice and this permission notice appear in supporting
  11. documentation.
  12. The above copyright notice and this permission notice shall be included in
  13. all copies or substantial portions of the Software.
  14. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  17. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  18. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  19. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  20. Except as contained in this notice, the name of The Open Group shall not be
  21. used in advertising or otherwise to promote the sale, use or other dealings
  22. in this Software without prior written authorization from The Open Group.
  23. Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts.
  24.                         All Rights Reserved
  25. Permission to use, copy, modify, and distribute this software and its 
  26. documentation for any purpose and without fee is hereby granted, 
  27. provided that the above copyright notice appear in all copies and that
  28. both that copyright notice and this permission notice appear in 
  29. supporting documentation, and that the name of Digital not be
  30. used in advertising or publicity pertaining to distribution of the
  31. software without specific, written prior permission.  
  32. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  33. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  34. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  35. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  36. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  37. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  38. SOFTWARE.
  39. ******************************************************************/
  40. /* 
  41.  * VendorP.h - Private definitions for VendorShell widget
  42.  * 
  43.  * Author: Paul Asente
  44.  *  Digital Equipment Corporation
  45.  *  Western Software Laboratory
  46.  * Date: Thu Dec 3, 1987
  47.  */
  48. /***********************************************************************
  49.  *
  50.  * VendorShell Widget Private Data
  51.  *
  52.  ***********************************************************************/
  53. #ifndef  _XtVendorPrivate_h
  54. #define _XtVendorPrivate_h
  55. #include <X11/Vendor.h>
  56. /* New fields for the VendorShell widget class record */
  57. typedef struct {
  58.     XtPointer       extension;          /* pointer to extension record      */
  59. } VendorShellClassPart;
  60. typedef struct _VendorShellClassRec {
  61.    CoreClassPart      core_class;
  62. CompositeClassPart composite_class;
  63. ShellClassPart  shell_class;
  64. WMShellClassPart   wm_shell_class;
  65. VendorShellClassPart vendor_shell_class;
  66. } VendorShellClassRec;
  67. externalref VendorShellClassRec vendorShellClassRec;
  68. /* New fields for the vendor shell widget. */
  69. typedef struct {
  70. int vendor_specific;
  71. } VendorShellPart;
  72. typedef  struct {
  73. CorePart  core;
  74. CompositePart  composite;
  75. ShellPart  shell;
  76. WMShellPart wm;
  77. VendorShellPart vendor;
  78. } VendorShellRec, *VendorShellWidget;
  79. #endif  /* _XtVendorPrivate_h */