]> Joshua Wise's Git repositories - netwatch.git/blame - include/text.h
More ICH2-specific code diked out.
[netwatch.git] / include / text.h
CommitLineData
3c4e084d
JP
1/* text.h
2 * Prototypes for text rendering 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
cdde55f5
JW
11#ifndef _TEXT_H
12
13#include <stdint.h>
14
15extern void text_init();
66cd7e82 16extern void text_render(char *buf, int x, int y, int w, int h);
cdde55f5
JW
17extern uint32_t text_checksum(int x, int y, int w, int h);
18
19#endif
This page took 0.023232 seconds and 4 git commands to generate.