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.

26 lines
589 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 xbell(int);
  10. void xclipcopy(void);
  11. void xclippaste(void);
  12. void xhints(void);
  13. void xloadcols(void);
  14. int xsetcolorname(int, const char *);
  15. void xloadfonts(char *, double);
  16. void xsettitle(char *);
  17. void xsetpointermotion(int);
  18. void xseturgency(int);
  19. void xunloadfonts(void);
  20. void xresize(int, int);
  21. void xselpaste(void);
  22. void xsetsel(char *, Time);