A
download gitkrdone.c
Language: C
LOC: 20
Project Info
GITK - Generalized Interface Toolkit(gitk)
Server: SourceForge
Type: cvs
...k\gitk\gitk‑renderer‑phone\
   autogen.sh
   config.h.in
   configure.in
   gitkr-phoneConf.sh.in
   gitkrdefines.h
   gitkrdone.c
   gitkrdone.h
   gitkreventloop.c
   gitkreventloop.h
   gitkrglobal.c
   gitkrglobal.h
   gitkrhideshow.c
   gitkrhideshow.h
   gitkrincludes.h
   gitkrinfo.c
   gitkrinfo.h
   gitkrinit.c
   gitkrinit.h
   gitkrlayout.c
   gitkrlayout.h
   gitkrrenderer.c
   gitkrrenderer.h
   gitkrtools.c
   gitkrtools.h
   Makefile.am

/** $Id: gitkrdone.c,v 1.5 2004/05/28 07:44:36 sast Exp $
 *
 * @file   gitk-renderer-phone/gitkrdone.c
 * @author Steffen Ast <sast@users.sf.net>
 * @date   Thu Oct 09 09:43:54 2003
 * 
 * @brief  gitk renderer done routine
 * @ingroup gitkrendererphone
 * 
 * 
 */

#define GITK_RENDERER_C
#define GITKR_DONE_C

#include "gitkrincludes.h"

/** @brief frees memory and data used by the the renderer
 */
void gitkr_done(void) {
  gitk_log("phone mode render plugin done invoked");
  
  //-- hide and free context selecting dialog
  if(context_selection_dialog) {
		gitk_dialog_hide(context_selection_dialog);
		gitk_dialog_free(context_selection_dialog);
		context_selection_dialog=NULL;
  }

  //-- finalize curses library
  endwin();
  
if(ftinfo){
  	festival_done(ftinfo);
  	free(gitkr_phone_speech_name);gitkr_phone_speech_name=NULL;
  }
  if(capiinfo){
  	capi_done(capiinfo);
  	capi_incoming_connected = (FALSE);
  }
}

About Koders | Resources | Downloads | Support | Black Duck | Terms of Service | DMCA | Privacy Policy | Contact Us