My build of suckless st terminal
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
399 B

  1. /* See LICENSE for license details. */
  2. /* X modifiers */
  3. #define XK_ANY_MOD UINT_MAX
  4. #define XK_NO_MOD 0
  5. #define XK_SWITCH_MOD (1<<13)
  6. void draw(void);
  7. void drawregion(int, int, int, int);
  8. void xbell(void);
  9. void xclipcopy(void);
  10. void xhints(void);
  11. void xloadcols(void);
  12. int xsetcolorname(int, const char *);
  13. void xsettitle(char *);
  14. void xsetpointermotion(int);
  15. void xsetsel(char *, Time);