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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: MultiSink.h,v 1.4 2001/02/09 02:03:44 xorgcvs Exp $ */
  2. /*
  3.  * Copyright 1991 by OMRON Corporation
  4.  *
  5.  * Permission to use, copy, modify, distribute, and sell this software and its
  6.  * documentation for any purpose is hereby granted without fee, provided that
  7.  * the above copyright notice appear in all copies and that both that
  8.  * copyright notice and this permission notice appear in supporting
  9.  * documentation, and that the name OMRON is not be used in
  10.  * advertising or publicity pertaining to distribution of the software without
  11.  * specific, written prior permission.  OMRON makes no representations
  12.  * about the suitability of this software for any purpose.  It is provided
  13.  * "as is" without express or implied warranty.
  14.  *
  15.  * OMRON DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
  16.  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
  17.  * EVENT SHALL OMRON BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  18.  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
  19.  * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  20.  * TORTUOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  21.  * PERFORMANCE OF THIS SOFTWARE.
  22.  *
  23.  *      Author: Li Yuhong  OMRON Corporation
  24.  */
  25. /***********************************************************
  26. Copyright 1987, 1988, 1994, 1998  The Open Group
  27. Permission to use, copy, modify, distribute, and sell this software and its
  28. documentation for any purpose is hereby granted without fee, provided that
  29. the above copyright notice appear in all copies and that both that
  30. copyright notice and this permission notice appear in supporting
  31. documentation.
  32. The above copyright notice and this permission notice shall be included in
  33. all copies or substantial portions of the Software.
  34. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  35. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  36. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  37. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  38. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  39. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  40. Except as contained in this notice, the name of The Open Group shall not be
  41. used in advertising or otherwise to promote the sale, use or other dealings
  42. in this Software without prior written authorization from The Open Group.
  43. Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts.
  44.                         All Rights Reserved
  45. Permission to use, copy, modify, and distribute this software and its 
  46. documentation for any purpose and without fee is hereby granted, 
  47. provided that the above copyright notice appear in all copies and that
  48. both that copyright notice and this permission notice appear in 
  49. supporting documentation, and that the name of Digital not be
  50. used in advertising or publicity pertaining to distribution of the
  51. software without specific, written prior permission.  
  52. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  53. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  54. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  55. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  56. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  57. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  58. SOFTWARE.
  59. ******************************************************************/
  60. /* $XFree86: xc/lib/Xaw/MultiSink.h,v 1.5 2001/01/17 19:42:27 dawes Exp $ */
  61. #ifndef _XawMultiSink_h
  62. #define _XawMultiSink_h
  63. /*
  64.  * MultiSink Object
  65.  */
  66. #include <X11/Xaw/TextSink.h>
  67. /* Resources:
  68.  Name      Class RepType Default Value
  69.  ----      ----- ------- -------------
  70.  echo                Output             Boolean         True
  71.  displayNonprinting  Output             Boolean         True
  72.  fontSet             FontSet            XFontSet        XtDefaultFontSet
  73. */
  74. #define XtCOutput "Output"
  75. #define XtNdisplayNonprinting "displayNonprinting"
  76. #define XtNecho "echo"
  77. #ifndef XtNfontSet /*Sheeran, Omron KK, 93/03/04*/
  78. #define XtNfontSet "fontSet"
  79. #endif
  80. #ifndef XtCFontSet /*Sheeran, Omron KK, 93/03/04*/
  81. #define XtCFontSet "FontSet"
  82. #endif
  83. /* Class record constants */
  84. extern WidgetClass multiSinkObjectClass;
  85. typedef struct _MultiSinkClassRec *MultiSinkObjectClass;
  86. typedef struct _MultiSinkRec      *MultiSinkObject;
  87. #endif /* _XawMultiSink_h */