Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ExeBy/smexe_ro.../usr/include/linux
File: tiocl.h
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
[0] Fix | Delete
#ifndef _LINUX_TIOCL_H
[1] Fix | Delete
#define _LINUX_TIOCL_H
[2] Fix | Delete
[3] Fix | Delete
#define TIOCL_SETSEL 2 /* set a selection */
[4] Fix | Delete
#define TIOCL_SELCHAR 0 /* select characters */
[5] Fix | Delete
#define TIOCL_SELWORD 1 /* select whole words */
[6] Fix | Delete
#define TIOCL_SELLINE 2 /* select whole lines */
[7] Fix | Delete
#define TIOCL_SELPOINTER 3 /* show the pointer */
[8] Fix | Delete
#define TIOCL_SELCLEAR 4 /* clear visibility of selection */
[9] Fix | Delete
#define TIOCL_SELMOUSEREPORT 16 /* report beginning of selection */
[10] Fix | Delete
#define TIOCL_SELBUTTONMASK 15 /* button mask for report */
[11] Fix | Delete
/* selection extent */
[12] Fix | Delete
struct tiocl_selection {
[13] Fix | Delete
unsigned short xs; /* X start */
[14] Fix | Delete
unsigned short ys; /* Y start */
[15] Fix | Delete
unsigned short xe; /* X end */
[16] Fix | Delete
unsigned short ye; /* Y end */
[17] Fix | Delete
unsigned short sel_mode; /* selection mode */
[18] Fix | Delete
};
[19] Fix | Delete
[20] Fix | Delete
#define TIOCL_PASTESEL 3 /* paste previous selection */
[21] Fix | Delete
#define TIOCL_UNBLANKSCREEN 4 /* unblank screen */
[22] Fix | Delete
[23] Fix | Delete
#define TIOCL_SELLOADLUT 5
[24] Fix | Delete
/* set characters to be considered alphabetic when selecting */
[25] Fix | Delete
/* u32[8] bit array, 4 bytes-aligned with type */
[26] Fix | Delete
[27] Fix | Delete
/* these two don't return a value: they write it back in the type */
[28] Fix | Delete
#define TIOCL_GETSHIFTSTATE 6 /* write shift state */
[29] Fix | Delete
#define TIOCL_GETMOUSEREPORTING 7 /* write whether mouse event are reported */
[30] Fix | Delete
#define TIOCL_SETVESABLANK 10 /* set vesa blanking mode */
[31] Fix | Delete
#define TIOCL_SETKMSGREDIRECT 11 /* restrict kernel messages to a vt */
[32] Fix | Delete
#define TIOCL_GETFGCONSOLE 12 /* get foreground vt */
[33] Fix | Delete
#define TIOCL_SCROLLCONSOLE 13 /* scroll console */
[34] Fix | Delete
#define TIOCL_BLANKSCREEN 14 /* keep screen blank even if a key is pressed */
[35] Fix | Delete
#define TIOCL_BLANKEDSCREEN 15 /* return which vt was blanked */
[36] Fix | Delete
#define TIOCL_GETKMSGREDIRECT 17 /* get the vt the kernel messages are restricted to */
[37] Fix | Delete
[38] Fix | Delete
#endif /* _LINUX_TIOCL_H */
[39] Fix | Delete
[40] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function