Changeset 826 for libcaca/trunk/cucul/cucul.h
- Timestamp:
- Apr 21, 2006, 8:44:04 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/cucul/cucul.h
r824 r826 75 75 * @{ */ 76 76 cucul_canvas_t * cucul_create_canvas(unsigned int, unsigned int); 77 cucul_canvas_t * cucul_load_canvas(void *, unsigned int);78 77 void cucul_set_canvas_size(cucul_canvas_t *, unsigned int, unsigned int); 79 78 unsigned int cucul_get_canvas_width(cucul_canvas_t *); … … 206 205 /* @} */ 207 206 208 /** \defgroup exporter libcucul exportersto various formats209 * 210 * These functions export the current canvas to various text formats. It211 * is necessary to call cucul_free_buffer() to dispose of the data.212 * 213 * @{ */ 214 cucul_buffer_t * cucul_ create_export(cucul_canvas_t *, char const *);207 /** \defgroup importexport libcucul importers/exporters from/to various formats 208 * 209 * These functions import various file formats into a new canvas, or export 210 * the current canvas to various text formats. 211 * 212 * @{ */ 213 cucul_buffer_t * cucul_export_canvas(cucul_canvas_t *, char const *); 215 214 char const * const * cucul_get_export_list(void); 215 cucul_canvas_t * cucul_import_canvas(void const *, unsigned int, char const *); 216 char const * const * cucul_get_import_list(void); 216 217 /* @} */ 217 218
Note: See TracChangeset
for help on using the changeset viewer.