X-Git-Url: http://git.joshuawise.com/netwatch.git/blobdiff_plain/cdde55f54a0880bde5694fcdea8e386ada0cd5ce..refs/heads/master:/include/text.h diff --git a/include/text.h b/include/text.h index 9506d40..7e1ab5c 100644 --- a/include/text.h +++ b/include/text.h @@ -1,9 +1,19 @@ +/* text.h + * Prototypes for text rendering 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 _TEXT_H #include extern void text_init(); -extern void text_render(unsigned char *buf, unsigned int x, unsigned int y, unsigned int w, unsigned int h); +extern void text_render(char *buf, int x, int y, int w, int h); extern uint32_t text_checksum(int x, int y, int w, int h); #endif