diff options
Diffstat (limited to 'include/linux/vt.h')
-rw-r--r-- | include/linux/vt.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/linux/vt.h b/include/linux/vt.h index 02c1c0288770..89c03a11e193 100644 --- a/include/linux/vt.h +++ b/include/linux/vt.h | |||
@@ -74,4 +74,18 @@ struct vt_consize { | |||
74 | #define VT_UNLOCKSWITCH 0x560C /* allow vt switching */ | 74 | #define VT_UNLOCKSWITCH 0x560C /* allow vt switching */ |
75 | #define VT_GETHIFONTMASK 0x560D /* return hi font mask */ | 75 | #define VT_GETHIFONTMASK 0x560D /* return hi font mask */ |
76 | 76 | ||
77 | struct vt_event { | ||
78 | unsigned int event; | ||
79 | #define VT_EVENT_SWITCH 0x0001 /* Console switch */ | ||
80 | #define VT_EVENT_BLANK 0x0002 /* Screen blank */ | ||
81 | #define VT_EVENT_UNBLANK 0x0004 /* Screen unblank */ | ||
82 | #define VT_EVENT_RESIZE 0x0008 /* Resize display */ | ||
83 | #define VT_MAX_EVENT 0x000F | ||
84 | unsigned int old; /* Old console */ | ||
85 | unsigned int new; /* New console (if changing) */ | ||
86 | unsigned int pad[4]; /* Padding for expansion */ | ||
87 | }; | ||
88 | |||
89 | #define VT_WAITEVENT 0x560E /* Wait for an event */ | ||
90 | |||
77 | #endif /* _LINUX_VT_H */ | 91 | #endif /* _LINUX_VT_H */ |