Advertisement
Guest User

Untitled

a guest
Jul 28th, 2015
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.49 KB | None | 0 0
  1. static void (*handler[LASTEvent]) (XEvent *) = {
  2.     [ButtonPress] = buttonpress,
  3.     [ClientMessage] = clientmessage,
  4.     [ConfigureRequest] = configurerequest,
  5.     [ConfigureNotify] = configurenotify,
  6.     [DestroyNotify] = destroynotify,
  7.     [EnterNotify] = enternotify,
  8.     [Expose] = expose,
  9.     [FocusIn] = focusin,
  10.     [KeyPress] = keypress,
  11.     [MappingNotify] = mappingnotify,
  12.     [MapRequest] = maprequest,
  13.     [MotionNotify] = motionnotify,
  14.     [PropertyNotify] = propertynotify,
  15.     [UnmapNotify] = unmapnotify
  16. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement