aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/tiocl.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
commit1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch)
tree0bba044c4ce775e45a88a51686b5d9f90697ea9d /include/linux/tiocl.h
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
Diffstat (limited to 'include/linux/tiocl.h')
-rw-r--r--include/linux/tiocl.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/include/linux/tiocl.h b/include/linux/tiocl.h
new file mode 100644
index 000000000000..2c9e847f6ed1
--- /dev/null
+++ b/include/linux/tiocl.h
@@ -0,0 +1,38 @@
1#ifndef _LINUX_TIOCL_H
2#define _LINUX_TIOCL_H
3
4#define TIOCL_SETSEL 2 /* set a selection */
5#define TIOCL_SELCHAR 0 /* select characters */
6#define TIOCL_SELWORD 1 /* select whole words */
7#define TIOCL_SELLINE 2 /* select whole lines */
8#define TIOCL_SELPOINTER 3 /* show the pointer */
9#define TIOCL_SELCLEAR 4 /* clear visibility of selection */
10#define TIOCL_SELMOUSEREPORT 16 /* report beginning of selection */
11#define TIOCL_SELBUTTONMASK 15 /* button mask for report */
12/* selection extent */
13struct tiocl_selection {
14 unsigned short xs; /* X start */
15 unsigned short ys; /* Y start */
16 unsigned short xe; /* X end */
17 unsigned short ye; /* Y end */
18 unsigned short sel_mode; /* selection mode */
19};
20
21#define TIOCL_PASTESEL 3 /* paste previous selection */
22#define TIOCL_UNBLANKSCREEN 4 /* unblank screen */
23
24#define TIOCL_SELLOADLUT 5
25 /* set characters to be considered alphabetic when selecting */
26 /* u32[8] bit array, 4 bytes-aligned with type */
27
28/* these two don't return a value: they write it back in the type */
29#define TIOCL_GETSHIFTSTATE 6 /* write shift state */
30#define TIOCL_GETMOUSEREPORTING 7 /* write whether mouse event are reported */
31#define TIOCL_SETVESABLANK 10 /* set vesa blanking mode */
32#define TIOCL_SETKMSGREDIRECT 11 /* restrict kernel messages to a vt */
33#define TIOCL_GETFGCONSOLE 12 /* get foreground vt */
34#define TIOCL_SCROLLCONSOLE 13 /* scroll console */
35#define TIOCL_BLANKSCREEN 14 /* keep screen blank even if a key is pressed */
36#define TIOCL_BLANKEDSCREEN 15 /* return which vt was blanked */
37
38#endif /* _LINUX_TIOCL_H */