diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2016-08-04 16:25:33 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2016-08-04 16:27:03 -0400 |
commit | 27129d003f63d96624a90d052b9899bc7f900e07 (patch) | |
tree | 452b573b3aa01c11a56824c85fe931cd4bcf85ca /vgasrc/vgabios.h | |
parent | 4e3a1a5df143f910dc2dfce4ecbd202f5e1efb29 (diff) | |
download | seabios-27129d003f63d96624a90d052b9899bc7f900e07.tar.gz |
swcursor: Move swcursor code from vgafb.c to new file swcursor.c
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'vgasrc/vgabios.h')
-rw-r--r-- | vgasrc/vgabios.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vgasrc/vgabios.h b/vgasrc/vgabios.h index 9fbfb14a..97640206 100644 --- a/vgasrc/vgabios.h +++ b/vgasrc/vgabios.h @@ -132,6 +132,8 @@ void vgafb_write_char(struct cursorpos cp, struct carattr ca); struct carattr vgafb_read_char(struct cursorpos cp); void vgafb_write_pixel(u8 color, u16 x, u16 y); u8 vgafb_read_pixel(u16 x, u16 y); + +// swcursor.c void vgafb_set_swcursor(int enable); // vbe.c |