home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / evbl0627.zip / everblue_20010627.zip / x11 / x11pmhk.h < prev    next >
Text File  |  1999-11-02  |  575b  |  24 lines

  1.  
  2. typedef enum _xgrabtypelist {
  3.     __GrabFree__, 
  4.     GrabPointer,              
  5.     GrabKeyboard,             
  6.     GrabButton,               
  7.     GrabKey,                  
  8.     GrabServer,               
  9.     GrabAny                   
  10. } xgrabtypelist;              
  11.  
  12. typedef struct _xgrab {
  13.     int type, special, pid;
  14.     Window window;
  15.     Bool owner_events;
  16.     unsigned int event_mask, button, modifiers;
  17.     int pointer_mode, keyboard_mode, keycode;
  18.     Window confine_to;
  19.     Cursor cursor;
  20.     Time time;
  21.     struct _xgrab *next;
  22. } Xlib_Grab;
  23.  
  24.