File: logo_types.h

package info (click to toggle)
linuxlogo 5.11-9
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 1,016 kB
  • ctags: 272
  • sloc: ansic: 3,171; sh: 380; makefile: 269; perl: 7
file content (14 lines) | stat: -rw-r--r-- 289 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#define SYSINFO_RIGHT  0
#define SYSINFO_BOTTOM 1

struct logo_info {
      char *description;
      char *name;
      int default_is_ascii;
      int sysinfo_position;
      char *logo;
      char *ascii_logo;
      int ysize;
      int ascii_ysize;
      struct logo_info *next_logo;
};