Subversion Repositories HelenOS-historic

Rev

Rev 1575 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1575 Rev 1630
Line 28... Line 28...
28
 
28
 
29
#ifndef __SCREENBUFFER_H__
29
#ifndef __SCREENBUFFER_H__
30
#define __SCREENBUFFER_H__
30
#define __SCREENBUFFER_H__
31
 
31
 
32
 
32
 
33
#define DEFAULT_FOREGROUND 0xffff00 /**< default console foreground color */
33
#define DEFAULT_FOREGROUND 0x0  /**< default console foreground color */
34
#define DEFAULT_BACKGROUND 0x000080 /**< default console background color */
34
#define DEFAULT_BACKGROUND 0xf0f0f0 /**< default console background color */
35
 
35
 
36
typedef struct {
36
typedef struct {
37
    unsigned int bg_color;      /**< background color */
37
    unsigned int bg_color;      /**< background color */
38
    unsigned int fg_color;      /**< foreground color */
38
    unsigned int fg_color;      /**< foreground color */
39
} style_t;
39
} style_t;