diff options
author | malc <av1474@comtv.ru> | 2009-10-01 22:20:47 +0400 |
---|---|---|
committer | malc <av1474@comtv.ru> | 2009-10-01 22:45:02 +0400 |
commit | 99a0949b720a0936da2052cb9a46db04ffc6db29 (patch) | |
tree | f9e39633853e35b49fc4465337cc196b9650866e /console.h | |
parent | bc6291a1b95a2c4c546fde6e5cb4c68366f06649 (diff) |
Get rid of _t suffix
Some not so obvious bits, slirp and Xen were left alone for the time
being.
Signed-off-by: malc <av1474@comtv.ru>
Diffstat (limited to 'console.h')
-rw-r--r-- | console.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -279,8 +279,8 @@ static inline int ds_get_bytes_per_pixel(DisplayState *ds) return ds->surface->pf.bytes_per_pixel; } -typedef unsigned long console_ch_t; -static inline void console_write_ch(console_ch_t *dest, uint32_t ch) +typedef unsigned long a_console_ch; +static inline void console_write_ch(a_console_ch *dest, uint32_t ch) { cpu_to_le32wu((uint32_t *) dest, ch); } @@ -288,7 +288,7 @@ static inline void console_write_ch(console_ch_t *dest, uint32_t ch) typedef void (*vga_hw_update_ptr)(void *); typedef void (*vga_hw_invalidate_ptr)(void *); typedef void (*vga_hw_screen_dump_ptr)(void *, const char *); -typedef void (*vga_hw_text_update_ptr)(void *, console_ch_t *); +typedef void (*vga_hw_text_update_ptr)(void *, a_console_ch *); DisplayState *graphic_console_init(vga_hw_update_ptr update, vga_hw_invalidate_ptr invalidate, @@ -299,7 +299,7 @@ DisplayState *graphic_console_init(vga_hw_update_ptr update, void vga_hw_update(void); void vga_hw_invalidate(void); void vga_hw_screen_dump(const char *filename); -void vga_hw_text_update(console_ch_t *chardata); +void vga_hw_text_update(a_console_ch *chardata); int is_graphic_console(void); int is_fixedsize_console(void); |