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.

28 lines
623 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. typedef XftGlyphFontSpec GlyphFontSpec;
  7. void draw(void);
  8. void drawregion(int, int, int, int);
  9. void run(void);
  10. void xbell(int);
  11. void xclipcopy(void);
  12. void xclippaste(void);
  13. void xhints(void);
  14. void xinit(void);
  15. void xloadcols(void);
  16. int xsetcolorname(int, const char *);
  17. void xloadfonts(char *, double);
  18. void xsettitle(char *);
  19. void xsetpointermotion(int);
  20. void xseturgency(int);
  21. void xunloadfonts(void);
  22. void xresize(int, int);
  23. void xselpaste(void);
  24. void xsetsel(char *, Time);