diff options
author | Devin J. Pohly <djpohly@gmail.com> | 2017-10-10 11:30:36 -0500 |
---|---|---|
committer | Devin J. Pohly <djpohly@gmail.com> | 2018-02-25 21:53:24 -0600 |
commit | d5275012b45149a2a6e94679609aacca478221ad (patch) | |
tree | 881a9c32d0d617fc472e23836779a7379c97e875 /win.h | |
parent | 3518dba2a5fb57f601b74528ddeb67f173e4024b (diff) | |
download | st-d5275012b45149a2a6e94679609aacca478221ad.tar.gz st-d5275012b45149a2a6e94679609aacca478221ad.tar.bz2 |
Move zoom functions into x.c
This makes x(un)loadfonts internal to x.c. Needed to reorder includes
and move a typedef to keep the compiler happy.
Signed-off-by: Devin J. Pohly <djpohly@gmail.com>
Diffstat (limited to 'win.h')
-rw-r--r-- | win.h | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -5,8 +5,6 @@ #define XK_NO_MOD 0 #define XK_SWITCH_MOD (1<<13) -typedef XftGlyphFontSpec GlyphFontSpec; - void draw(void); void drawregion(int, int, int, int); @@ -16,11 +14,12 @@ void xclippaste(void); void xhints(void); void xloadcols(void); int xsetcolorname(int, const char *); -void xloadfonts(char *, double); void xsettitle(char *); void xsetpointermotion(int); void xseturgency(int); -void xunloadfonts(void); void xresize(int, int); void xselpaste(void); void xsetsel(char *, Time); +void zoom(const Arg *); +void zoomabs(const Arg *); +void zoomreset(const Arg *); |