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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: VendorEP.h,v 1.4 2001/02/09 02:03:47 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 of OMRON not be used in advertising or
  10.  * publicity pertaining to distribution of the software without specific,
  11.  * written prior permission.  OMRON makes no representations about the
  12.  * suitability of this software for any purpose.  It is provided "as is"
  13.  * without express or implied warranty.
  14.  *
  15.  * OMRON DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  16.  * ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  17.  * OMRON BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  18.  * ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  19.  * WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTUOUS ACTION,
  20.  * ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  21.  * SOFTWARE. 
  22.  *
  23.  * Author: Seiji Kuwari OMRON Corporation
  24.  * kuwa@omron.co.jp
  25.  * kuwa%omron.co.jp@uunet.uu.net
  26.  */
  27. /*
  28. Copyright 1994, 1998  The Open Group
  29. Permission to use, copy, modify, distribute, and sell this software and its
  30. documentation for any purpose is hereby granted without fee, provided that
  31. the above copyright notice appear in all copies and that both that
  32. copyright notice and this permission notice appear in supporting
  33. documentation.
  34. The above copyright notice and this permission notice shall be included in
  35. all copies or substantial portions of the Software.
  36. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  37. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  38. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  39. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  40. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  41. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  42. Except as contained in this notice, the name of The Open Group shall not be
  43. used in advertising or otherwise to promote the sale, use or other dealings
  44. in this Software without prior written authorization from The Open Group.
  45. */
  46. /* $XFree86: xc/lib/Xaw/VendorEP.h,v 1.5 2001/01/17 19:42:36 dawes Exp $ */
  47. #ifndef _VendorEP_h
  48. #define _VendorEP_h
  49. #include <X11/Xaw/XawImP.h>
  50. typedef struct {
  51.     XtPointer extension;
  52. } XawVendorShellExtClassPart;
  53. typedef struct _VendorShellExtClassRec {
  54.     ObjectClassPart object_class;
  55.     XawVendorShellExtClassPart vendor_shell_ext_class;
  56. } XawVendorShellExtClassRec;
  57. typedef struct {
  58.     Widget parent;
  59.     XawImPart im;
  60.     XawIcPart ic;
  61. #ifndef OLDXAW
  62.     XtPointer pad[4]; /* for future use and keep binary compatability */
  63. #endif
  64. } XawVendorShellExtPart;
  65. typedef struct XawVendorShellExtRec {
  66.     ObjectPart object;
  67.     XawVendorShellExtPart vendor_ext;
  68. } XawVendorShellExtRec, *XawVendorShellExtWidget;
  69. #endif /* _VendorEP_h */