kns_defines.h 324 B

1234567891011121314151617
  1. #ifndef MOTIFOGL
  2. #define MOTIFOGL
  3. #include <GL/glx.h>
  4. typedef struct window_props
  5. {
  6. GLXContext glx_context;
  7. Window window;
  8. Widget widget;
  9. int width;
  10. int height;
  11. int left_button_status;
  12. int middle_button_status;
  13. int right_button_hit;
  14. struct dspec *ptr_D_spec;
  15. } OGLMotifWindowData;
  16. #endif