X-Git-Url: http://git.joshuawise.com/netwatch.git/blobdiff_plain/4fb81ad02399f6fe21e0b1b050aeb2f82f2b3fde..8ed5907015b127d1312c13216a8e4875c962da8e:/include/vga-overlay.h diff --git a/include/vga-overlay.h b/include/vga-overlay.h index 890f353..9ae273f 100644 --- a/include/vga-overlay.h +++ b/include/vga-overlay.h @@ -1,10 +1,24 @@ +/* vga-overlay.h + * Prototype for VGA text overlay routines + * NetWatch system management mode administration console + * + * Copyright (c) 2008 Jacob Potter and Joshua Wise. All rights reserved. + * This program is free software; you can redistribute and/or modify it under + * the terms found in the file LICENSE in the root of this source tree. + * + */ + #ifndef VGA_OVERLAY_H #define VGA_OVERLAY_H -void strblit(char *src, int row, int col); +void vga_flush_imm(int enb); + +void strblit(char *src, int row, int col, int fill); void dolog(char *s); void dologf(char *s, ...); void outlog(); +void dump_log(char *buffer); + #endif