improve Print_in_window_limited(), add Print_in_window_limited_unicode()

This commit is contained in:
Thomas Bernard
2019-02-01 12:23:37 +01:00
parent e3bf51f753
commit ad1c38e2ca
2 changed files with 23 additions and 6 deletions

View File

@@ -70,6 +70,7 @@ void Print_in_window_underscore(short x,short y,const char * str,byte text_color
void Print_in_window(short x,short y,const char * str,byte text_color,byte background_color);
void Print_in_window_unicode(short x,short y,const word * str,byte text_color,byte background_color);
void Print_in_window_limited(short x,short y,const char * str,byte size,byte text_color,byte background_color);
void Print_in_window_limited_unicode(short x, short y, const word * str, byte size, byte text_color, byte background_color);
void Print_char_in_window(short x_pos,short y_pos, unsigned int c,byte text_color,byte background_color);
void Print_in_menu(const char * str, short position);
void Print_coordinates(void);