home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / include / Xm / DrawingA.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-30  |  1.3 KB  |  57 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: DrawingA.h,v $ $Revision: 10.1 $ $Date: 1994/02/03 15:37:43 $ */
  9. /*
  10. *  (c) Copyright 1987, 1988, 1989, 1990, 1991, 1992 HEWLETT-PACKARD COMPANY */
  11. #ifndef _XmDrawingArea_h
  12. #define _XmDrawingArea_h
  13.  
  14. #include <Xm/Xm.h>
  15.  
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19.  
  20. /* Class record constants */
  21.  
  22. externalref WidgetClass xmDrawingAreaWidgetClass;
  23.  
  24. typedef struct _XmDrawingAreaClassRec * XmDrawingAreaWidgetClass;
  25. typedef struct _XmDrawingAreaRec      * XmDrawingAreaWidget;
  26.  
  27.  
  28. #ifndef XmIsDrawingArea
  29. #define XmIsDrawingArea(w)  (XtIsSubclass (w, xmDrawingAreaWidgetClass))
  30. #endif
  31.  
  32.  
  33.  
  34. /********    Public Function Declarations    ********/
  35. #ifdef _NO_PROTO
  36.  
  37. extern Widget XmCreateDrawingArea() ;
  38.  
  39. #else
  40.  
  41. extern Widget XmCreateDrawingArea( 
  42.                         Widget p,
  43.                         String name,
  44.                         ArgList args,
  45.                         Cardinal n) ;
  46.  
  47. #endif /* _NO_PROTO */
  48. /********    End Public Function Declarations    ********/
  49.  
  50.  
  51. #ifdef __cplusplus
  52. }  /* Close scope of 'extern "C"' declaration which encloses file. */
  53. #endif
  54.  
  55. #endif /* _XmDrawingArea_h */
  56. /* DON'T ADD ANYTHING AFTER THIS #endif */
  57.