/Sources/sdk/xsccvwp.h

http://github.com/Nashev/OracleOutsideIn4Delphi · C Header · 57 lines · 37 code · 15 blank · 5 comment · 0 complexity · 2aeda21c085ff2df4f16685a28d2662a MD5 · raw file

  1. /* Copyright (c) 2001, 2010, Oracle and/or its affiliates. All rights reserved. */
  2. #ifndef xsccvwp_h
  3. #define xsccvwp_h
  4. #include <X11/IntrinsicP.h>
  5. #include <X11/CoreP.h>
  6. #include "xsccvw.h"
  7. #ifdef __cplusplus
  8. extern "C" {
  9. #endif
  10. /* Widget Class Declaration */
  11. typedef struct _SccViewerClassPart
  12. {
  13. int dummy;
  14. } SccViewerClassPart;
  15. typedef struct _SccViewerClassRec
  16. {
  17. CoreClassPart core_class;
  18. SccViewerClassPart sccViewer_class;
  19. } SccViewerClassRec;
  20. extern SccViewerClassRec sccViewerClassRec;
  21. /* Widget Instance Declaration */
  22. typedef struct _SccViewerPart
  23. {
  24. /* resources */
  25. Dimension sccViewerScrollBarWidth;
  26. Widget sccViewerHScrollBar;
  27. Widget sccViewerVScrollBar;
  28. Widget sccViewerViewWindow;
  29. XFontStruct *sccViewerMessageFont;
  30. XtCallbackList sccViewerCallBack;
  31. /* Private data */
  32. void * pViewInfo;
  33. } SccViewerPart;
  34. typedef struct _SccViewerRec
  35. {
  36. CorePart core;
  37. SccViewerPart sccViewer;
  38. } SccViewerRec;
  39. #ifdef __cplusplus
  40. } /* Close scope of 'extern "C"' declaration which encloses file. */
  41. #endif
  42. #endif /* End of xsccvwp.h*/