2023-04-21 16:25:53 +00:00
|
|
|
/* bits/ioctl-defs.h: IO device control requests. */
|
|
|
|
|
|
|
|
#ifndef _BITS_IOCTL_DEFS_H
|
|
|
|
#define _BITS_IOCTL_DEFS_H
|
|
|
|
|
|
|
|
/* Framebuffer requests. */
|
|
|
|
#define FB_GET_WIDTH 0
|
|
|
|
#define FB_GET_HEIGHT 1
|
|
|
|
#define FB_GET_SCANLINE 2
|
|
|
|
|
2023-08-02 13:16:10 +00:00
|
|
|
/* TTY requests. */
|
|
|
|
#define TTYSETGFX 162
|
|
|
|
|
2023-04-21 16:25:53 +00:00
|
|
|
#endif
|