Home | History | Annotate | Line # | Download | only in Xaw
      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 (at) omron.co.jp
     24  *				kuwa%omron.co.jp (at) uunet.uu.net
     25  */
     26 
     27 /*
     28 
     29 Copyright 1994, 1998  The Open Group
     30 
     31 Permission to use, copy, modify, distribute, and sell this software and its
     32 documentation for any purpose is hereby granted without fee, provided that
     33 the above copyright notice appear in all copies and that both that
     34 copyright notice and this permission notice appear in supporting
     35 documentation.
     36 
     37 The above copyright notice and this permission notice shall be included in
     38 all copies or substantial portions of the Software.
     39 
     40 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
     41 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
     42 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
     43 OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
     44 AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
     45 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
     46 
     47 Except as contained in this notice, the name of The Open Group shall not be
     48 used in advertising or otherwise to promote the sale, use or other dealings
     49 in 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 
     58 typedef struct {
     59     XtPointer	extension;
     60 } XawVendorShellExtClassPart;
     61 
     62 typedef	struct _VendorShellExtClassRec {
     63     ObjectClassPart	object_class;
     64     XawVendorShellExtClassPart	vendor_shell_ext_class;
     65 } XawVendorShellExtClassRec;
     66 
     67 typedef 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 
     76 typedef	struct XawVendorShellExtRec {
     77     ObjectPart	object;
     78     XawVendorShellExtPart	vendor_ext;
     79 } XawVendorShellExtRec, *XawVendorShellExtWidget;
     80 
     81 #endif	/* _VendorEP_h */
     82