|  | ||
| 
 | 
 void qmessage ( char *text, int fg_color, int bg_color ); 
 char *text; // character string to display int fg_color; // foreground color int bg_color; // background color 
 | 
 | 
| Synopsis | #include "silver.h" 
 The qmessage function is used to print a status message in the status area at the bottom of the main SilverScreen window. 
 | 
 | 
| Parameters | text is a pointer to the text that is to be displayed. fg_color and bg_color are color numbers in the range of [0, num_colors - 1] that specify the foreground and background colors that are to be used in displaying the text. If they are both 0,then the default color is used. 
 | 
 | 
| Return Value | None. 
 | 
 | 
| See Also | 
 | |
| 
 | 
 |