File: console_splash.h

package info (click to toggle)
tuxonice-userui 1.1%2Bdfsg1.gc3bdd83-4
  • links: PTS, VCS
  • area: contrib
  • in suites: bookworm, bullseye, buster, stretch
  • size: 664 kB
  • ctags: 2,034
  • sloc: ansic: 5,786; makefile: 91; sh: 63; python: 46
file content (13 lines) | stat: -rw-r--r-- 463 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef _LINUX_CONSOLE_SPLASH_H_
#define _LINUX_CONSOLE_SPLASH_H_ 1

/* A structure used by the framebuffer splash code (drivers/video/fbsplash.c) */
struct vc_splash {
	__u8 bg_color;				/* The color that is to be treated as transparent */
	__u8 state;				/* Current splash state: 0 = off, 1 = on */
	__u16 tx, ty;				/* Top left corner coordinates of the text field */
	__u16 twidth, theight;			/* Width and height of the text field */
	char* theme;
};

#endif