From: Mark Spencer Date: Sat, 26 May 2001 22:48:45 +0000 (+0000) Subject: Version 0.1.9 from FTP X-Git-Tag: 0.1.9~46 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6c9f2f25bf15592dce9884eebfc565d7c53192f5;p=thirdparty%2Fasterisk.git Version 0.1.9 from FTP git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@327 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/include/asterisk/channel_pvt.h b/include/asterisk/channel_pvt.h index a8a2e654d8..6431159544 100755 --- a/include/asterisk/channel_pvt.h +++ b/include/asterisk/channel_pvt.h @@ -47,6 +47,10 @@ struct ast_channel_pvt { int (*write)(struct ast_channel *chan, struct ast_frame *frame); /* Display or transmit text */ int (*send_text)(struct ast_channel *chan, char *text); + /* Display or send an image */ + int (*send_image)(struct ast_channel *chan, struct ast_frame *frame); + /* Send HTML data */ + int (*send_html)(struct ast_channel *chan, int subclass, char *data, int len); /* Handle an exception, reading a frame */ struct ast_frame * (*exception)(struct ast_channel *chan); /* Bridge two channels of the same type together */