input.h (342B)
1 #pragma once 2 3 #include <stddef.h> 4 5 void input_return(); 6 void input_backspace(); 7 void input_delete(); 8 9 void input_up(); 10 void input_down(); 11 void input_left(); 12 void input_right(); 13 14 void input_add( const char * buffer, int len ); 15 16 void input_set_pos( int x, int y ); 17 void input_set_size( int w, int h ); 18 bool input_is_dirty(); 19 void input_draw();