Changeset 1277 for libcaca/trunk/cxx
- Timestamp:
- Nov 5, 2006, 7:06:09 PM (14 years ago)
- Location:
- libcaca/trunk/cxx
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/cxx/cucul++.cpp
r1276 r1277 98 98 } 99 99 100 void Cucul::putChar(int x, int y, charch)100 void Cucul::putChar(int x, int y, unsigned long int ch) 101 101 { 102 102 cucul_putchar(cv, x, y, ch); 103 } 104 105 unsigned long int Cucul::getChar(int x, int y) 106 { 107 return cucul_getchar(cv, x, y); 103 108 } 104 109 -
libcaca/trunk/cxx/cucul++.h
r1269 r1277 126 126 int setColorARGB(unsigned int f, unsigned int b); 127 127 void Printf(int x , int y , char const * format,...); 128 void putChar(int x, int y, charch);128 void putChar(int x, int y, unsigned long int ch); 129 129 unsigned long int getChar(cucul_canvas_t *, int, int); 130 130 void putStr(int x, int y, char *str);
Note: See TracChangeset
for help on using the changeset viewer.