Changeset 179 for libcaca/trunk/libee/ee.h
- Timestamp:
- Nov 15, 2003, 10:58:20 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/libee/ee.h
r171 r179 52 52 }; 53 53 54 extern c har *ee_color_names[16];54 extern const char *ee_color_names[16]; 55 55 56 56 /* … … 63 63 */ 64 64 int ee_init(void); 65 void ee_set_delay(int); 66 int ee_get_width(void); 67 int ee_get_height(void); 65 void ee_set_delay(unsigned int); 66 unsigned int ee_get_rendertime(void); 67 unsigned int ee_get_width(void); 68 unsigned int ee_get_height(void); 68 69 void ee_refresh(void); 69 70 void ee_end(void); … … 74 75 int ee_get_color(void); 75 76 void ee_putchar(int, int, char); 76 void ee_putstr(int, int, c har *);77 void ee_putstr(int, int, const char *); 77 78 void ee_clear(void); 78 79 79 80 void ee_draw_line(int, int, int, int, char); 80 void ee_draw_polyline( int[],int[], int, char);81 void ee_draw_polyline(const int[], const int[], int, char); 81 82 void ee_draw_thin_line(int, int, int, int); 82 void ee_draw_thin_polyline( int[],int[], int);83 void ee_draw_thin_polyline(const int[], const int[], int); 83 84 84 85 void ee_draw_circle(int, int, int, char);
Note: See TracChangeset
for help on using the changeset viewer.