Changeset 76fca31 in mainline for uspace/srv/console/screenbuffer.h
- Timestamp:
- 2008-12-16T19:02:07Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5ae4443
- Parents:
- 8fe5980
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/console/screenbuffer.h
r8fe5980 r76fca31 36 36 #define __SCREENBUFFER_H__ 37 37 38 #include <stdint.h> 38 39 39 40 #define DEFAULT_FOREGROUND 0x0 /**< default console foreground color */ … … 41 42 42 43 typedef struct { 43 u nsigned int bg_color;/**< background color */44 u nsigned int fg_color;/**< foreground color */44 uint32_t bg_color; /**< background color */ 45 uint32_t fg_color; /**< foreground color */ 45 46 } style_t; 46 47
Note:
See TracChangeset
for help on using the changeset viewer.