]>
Commit | Line | Data |
---|---|---|
3c4e084d JP |
1 | /* vga-overlay.h |
2 | * Prototype for VGA text overlay routines | |
3 | * NetWatch system management mode administration console | |
4 | * | |
5 | * Copyright (c) 2008 Jacob Potter and Joshua Wise. All rights reserved. | |
6 | * This program is free software; you can redistribute and/or modify it under | |
7 | * the terms found in the file LICENSE in the root of this source tree. | |
8 | * | |
9 | */ | |
10 | ||
91a6abf7 JP |
11 | #ifndef VGA_OVERLAY_H |
12 | #define VGA_OVERLAY_H | |
13 | ||
6bd08bbc JW |
14 | void vga_flush_imm(int enb); |
15 | ||
a02e8abd | 16 | void strblit(char *src, int row, int col, int fill); |
91a6abf7 JP |
17 | |
18 | void dolog(char *s); | |
d24901e6 | 19 | void dologf(char *s, ...); |
91a6abf7 JP |
20 | void outlog(); |
21 | ||
d5cffad7 JP |
22 | void dump_log(char *buffer); |
23 | ||
91a6abf7 | 24 | #endif |