Luna/libc/include/bits/ioctl-defs.h
apio f8cb6e03df
All checks were successful
continuous-integration/drone/push Build is passing
kernel: Allow turning off the TTY by setting it to graphical mode
2023-08-02 15:16:10 +02:00

15 lines
261 B
C

/* 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
/* TTY requests. */
#define TTYSETGFX 162
#endif