/* 
 * (c) Copyright 1989, 1990, 1991, 1992 OPEN SOFTWARE FOUNDATION, INC.
 * ALL RIGHTS RESERVED
*/ 
/*   $RCSfile: Label.h,v $ $Revision: 1.10 $ $Date: 92/05/14 12:52:33 $ */
/*
*  (c) Copyright 1989, DIGITAL EQUIPMENT CORPORATION, MAYNARD, MASS. */
/*
*  (c) Copyright 1987, 1988, 1989, 1990, 1991, 1992 HEWLETT-PACKARD COMPANY */
#ifndef _XmLabel_h
#define _XmLabel_h

#include <Xm/Xm.h>

#ifdef __cplusplus
extern "C" {
#endif

/*  Widget class and record definitions  */

externalref WidgetClass xmLabelWidgetClass;

typedef struct _XmLabelClassRec     * XmLabelWidgetClass;
typedef struct _XmLabelRec      * XmLabelWidget;

/*fast subclass define */
#ifndef XmIsLabel
#define XmIsLabel(w)     XtIsSubclass(w, xmLabelWidgetClass)
#endif /* XmIsLabel */


/********    Public Function Declarations    ********/
#ifdef _NO_PROTO

extern Widget XmCreateLabel() ;

#else

extern Widget XmCreateLabel( 
                        Widget parent,
                        char *name,
                        Arg *arglist,
                        Cardinal argCount) ;

#endif /* _NO_PROTO */
/********    End Public Function Declarations    ********/


#ifdef __cplusplus
}  /* Close scope of 'extern "C"' declaration which encloses file. */
#endif

#endif /* _XmLabel_h */
/* DON'T ADD ANYTHING AFTER THIS #endif */
