home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 22 gnu / 22-gnu.zip / gwm18a.zip / wl_cursor.h < prev    next >
C/C++ Source or Header  |  1995-07-03  |  2KB  |  57 lines

  1. /* Copyright 1989 GROUPE BULL -- See license conditions in file COPYRIGHT
  2.  * Copyright 1989 Massachusetts Institute of Technology
  3.  */
  4. /*************************\
  5. *               *
  6. *  WOOL_OBJECT: WLCursor  *
  7. *  DEFINITIONS          *
  8. *               *
  9. \*************************/
  10.  
  11. #ifndef INCLUDE_WL_CURSOR_H
  12. #define INCLUDE_WL_CURSOR_H
  13.  
  14. /* type */
  15.  
  16. typedef struct _WOOL_Cursor {
  17.     WOOL_HEADER;
  18.     Cursor    cursor;    
  19. }              *WOOL_Cursor;
  20.  
  21. /* exported functions */
  22.  
  23. EXT WOOL_OBJECT wool_cursor_make();
  24. EXT WOOL_OBJECT WLCursor_print();
  25. EXT WOOL_OBJECT WLCursor_free();
  26.  
  27. /* methods */
  28.  
  29. EXT WOOL_METHOD WLCursor[]
  30. #ifdef DO_INIT
  31. = {
  32.    (WOOL_METHOD) 0,        /* METHODS_ARRAY */
  33.    WLNumber_eval,        /* WOOL_eval 1 */
  34.    WLCursor_print,        /* WOOL_print 2 */
  35.    WLCursor_free,        /* WOOL_free 3 */
  36.    wool_undefined_method_2,    /* WOOL_execute 4 */
  37.    wool_undefined_method_2,    /* WOOL_set 5 */
  38.    wool_undefined_method_1,    /* WOOL_get_C_value 6 */
  39.    wool_undefined_method_1,    /* WOOL_open 7 */
  40.    wool_undefined_method_1,    /* WOOL_close 8 */
  41.    wool_undefined_method_2,    /* WOOL_process_event 9 */
  42.    wool_undefined_method_1,    /* WOOL_copy 10 */
  43.    wool_undefined_method_2,    /* WOOL_get_dimensions 11 */
  44.    wool_undefined_method_2,    /* WOOL_draw 12 */
  45.    wool_undefined_method_2,    /* WOOL_equal 13 */
  46.    wool_undefined_method_2,
  47.    wool_undefined_method_2,
  48.    wool_undefined_method_1,
  49.    wool_undefined_method_1,
  50.    wool_undefined_method_1,
  51.    wool_undefined_method_1,
  52.    wool_undefined_method_1
  53. }
  54. #endif /* DO_INIT */
  55.                ;
  56. #endif /* INCLUDE_WL_CURSOR_H */
  57.