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