summaryrefslogtreecommitdiff
path: root/st-0.8.4/win.h
diff options
context:
space:
mode:
authorstkhan <personal@slickd.xyz>2022-05-22 10:30:20 +0000
committerstkhan <personal@slickd.xyz>2022-05-22 10:30:20 +0000
commitbac5029e9cca6460451fb06d1b8dd756cae0c3f9 (patch)
treedd775a0ed1cf5dcecb561fb6526b632b26b0e037 /st-0.8.4/win.h
parent86ddffe08d938c555013f7d9bc0a926f5a0e7421 (diff)
Removed old st, updated new one
Diffstat (limited to 'st-0.8.4/win.h')
-rw-r--r--st-0.8.4/win.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/st-0.8.4/win.h b/st-0.8.4/win.h
deleted file mode 100644
index a6ef1b9..0000000
--- a/st-0.8.4/win.h
+++ /dev/null
@@ -1,39 +0,0 @@
-/* See LICENSE for license details. */
-
-enum win_mode {
- MODE_VISIBLE = 1 << 0,
- MODE_FOCUSED = 1 << 1,
- MODE_APPKEYPAD = 1 << 2,
- MODE_MOUSEBTN = 1 << 3,
- MODE_MOUSEMOTION = 1 << 4,
- MODE_REVERSE = 1 << 5,
- MODE_KBDLOCK = 1 << 6,
- MODE_HIDE = 1 << 7,
- MODE_APPCURSOR = 1 << 8,
- MODE_MOUSESGR = 1 << 9,
- MODE_8BIT = 1 << 10,
- MODE_BLINK = 1 << 11,
- MODE_FBLINK = 1 << 12,
- MODE_FOCUS = 1 << 13,
- MODE_MOUSEX10 = 1 << 14,
- MODE_MOUSEMANY = 1 << 15,
- MODE_BRCKTPASTE = 1 << 16,
- MODE_NUMLOCK = 1 << 17,
- MODE_MOUSE = MODE_MOUSEBTN|MODE_MOUSEMOTION|MODE_MOUSEX10\
- |MODE_MOUSEMANY,
-};
-
-void xbell(void);
-void xclipcopy(void);
-void xdrawcursor(int, int, Glyph, int, int, Glyph);
-void xdrawline(Line, int, int, int);
-void xfinishdraw(void);
-void xloadcols(void);
-int xsetcolorname(int, const char *);
-void xsettitle(char *);
-int xsetcursor(int);
-void xsetmode(int, unsigned int);
-void xsetpointermotion(int);
-void xsetsel(char *);
-int xstartdraw(void);
-void xximspot(int, int);