home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / include / Xm / MenuShell.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-30  |  1.3 KB  |  55 lines

  1. /* 
  2.  * (c) Copyright 1989, 1990, 1991, 1992 OPEN SOFTWARE FOUNDATION, INC. 
  3.  * ALL RIGHTS RESERVED 
  4. */ 
  5. /* 
  6.  * Motif Release 1.2
  7. */ 
  8. /*   $RCSfile: MenuShell.h,v $ $Revision: 10.1 $ $Date: 1994/02/03 15:43:56 $ */
  9. /*
  10. *  (c) Copyright 1989, DIGITAL EQUIPMENT CORPORATION, MAYNARD, MASS. */
  11. /*
  12. *  (c) Copyright 1987, 1988, 1989, 1990, 1991, 1992 HEWLETT-PACKARD COMPANY */
  13. #ifndef _XmMenuShell_h
  14. #define _XmMenuShell_h
  15.  
  16. #include <Xm/Xm.h>
  17.  
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21.  
  22. externalref WidgetClass xmMenuShellWidgetClass;
  23.  
  24. typedef struct _XmMenuShellClassRec       * XmMenuShellWidgetClass;
  25. typedef struct _XmMenuShellWidgetRec      * XmMenuShellWidget;
  26.  
  27. #ifndef XmIsMenuShell
  28. #define XmIsMenuShell(w) XtIsSubclass(w, xmMenuShellWidgetClass)
  29. #endif /* XmIsMenuShell */
  30.  
  31.  
  32. /********    Public Function Declarations    ********/
  33. #ifdef _NO_PROTO
  34.  
  35. extern Widget XmCreateMenuShell() ;
  36.  
  37. #else
  38.  
  39. extern Widget XmCreateMenuShell( 
  40.                         Widget parent,
  41.                         char *name,
  42.                         ArgList al,
  43.                         Cardinal ac) ;
  44.  
  45. #endif /* _NO_PROTO */
  46. /********    End Public Function Declarations    ********/
  47.  
  48.  
  49. #ifdef __cplusplus
  50. }  /* Close scope of 'extern "C"' declaration which encloses file. */
  51. #endif
  52.  
  53. #endif /* _XmMenuShell_h */
  54. /* DON'T ADD STUFF AFTER THIS #endif */
  55.