|
||
void message_area_write ( char *text, int line, int color );
char *text; // character string to display int line; // line number to display text
|
|
Synopsis |
#include "silver.h"
The message_area_write function writes the specified text string in the message area.
|
Parameters |
text is the message string to be displayed. line is an integer specifying the line in the message area to display the text string, where 1 is the first line, and so on. fg_color is the color used to render the text, and should be in the range [0, num_colors - 1].
|
Return Value |
None
|
Comments |
message_area_configure must be called to allocate the message area before calling message_area_write.
|
See Also |
message_area_configure, clear_status
|
|