platform_ui.h (411B)
1 #pragma once 2 3 #include "ui.h" 4 5 void platform_ui_init(); 6 void platform_ui_term(); 7 8 void platform_fill_rect( int left, int top, int width, int height, Colour colour, bool bold ); 9 void platform_draw_char( int left, int top, char c, Colour colour, bool bold, bool force_bold_font ); 10 void platform_make_dirty( int left, int top, int width, int height ); 11 12 void platform_set_clipboard( const char * str, size_t len );