Project

General

Profile

Statistics
| Revision:

root / lab4 / .minix-src / include / sys / ioc_fb.h @ 13

History | View | Annotate | Download (417 Bytes)

1 13 up20180614
/*        sys/ioc_fb.h - Framebuffer command codes
2
 *
3
 */
4
5
#ifndef _S_I_FB_H
6
#define _S_I_FB_H
7
8
/* The I/O control requests. */
9
#define FBIOGET_VSCREENINFO        _IOR('V', 1, struct fb_var_screeninfo)
10
#define FBIOPUT_VSCREENINFO     _IOW('V', 2, struct fb_var_screeninfo)
11
#define FBIOGET_FSCREENINFO     _IOR('V', 3, struct fb_fix_screeninfo)
12
#define FBIOPAN_DISPLAY        _IOW('V', 4, struct fb_var_screeninfo)
13
14
#endif /* _S_I_FB_H */