/[hurd]/hurd/hurd/console.h
ViewVC logotype

Diff of /hurd/hurd/console.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.4 by marcus, Tue Sep 10 18:05:41 2002 UTC revision 1.5 by marcus, Mon Sep 16 02:48:56 2002 UTC
# Line 31  typedef enum Line 31  typedef enum
31    
32  typedef struct  typedef struct
33  {  {
34      /* The intensity is traditionally a color attribute.  */
35  #define CONS_ATTR_INTENSITY_NORMAL      000000000000  #define CONS_ATTR_INTENSITY_NORMAL      000000000000
36  #define CONS_ATTR_INTENSITY_BOLD        000000000001  #define CONS_ATTR_INTENSITY_BOLD        000000000001
37  #define CONS_ATTR_INTENSITY_DIM         000000000002  #define CONS_ATTR_INTENSITY_DIM         000000000002
38    uint32_t intensity : 2;    uint32_t intensity : 2;
39    
40    uint32_t underlined : 1;    uint32_t underlined : 1;
41    uint32_t blinking : 1;    uint32_t blinking : 1;
42    uint32_t reversed : 1;    uint32_t reversed : 1;
43    uint32_t concealed : 1;    uint32_t concealed : 1;
44    
45      /* Color attributes.  */
46    uint32_t bgcol : 3;    uint32_t bgcol : 3;
47    uint32_t fgcol : 3;    uint32_t fgcol : 3;
48  } conchar_attr_t;  
49      /* Font attributes.  */
50      uint32_t italic : 1;
51      uint32_t bold : 1;
52    } conchar_attr_t;
53        
54  typedef struct  typedef struct
55  {  {

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26