Skip to content
Snippets Groups Projects
Commit c4661eb8 authored by edgrif's avatar edgrif
Browse files

add app. exit callback to controls callbacks interface.

parent 96efa230
No related branches found
No related tags found
No related merge requests found
......@@ -25,9 +25,9 @@
* Description: Interface for creating, controlling and destroying ZMaps.
*
* HISTORY:
* Last edited: May 31 14:01 2005 (rds)
* Last edited: Feb 14 16:56 2006 (edgrif)
* Created: Mon Nov 17 08:04:32 2003 (edgrif)
* CVS info: $Id: zmapControl.h,v 1.12 2005-05-31 13:02:23 rds Exp $
* CVS info: $Id: zmapControl.h,v 1.13 2006-02-17 14:07:43 edgrif Exp $
*-------------------------------------------------------------------
*/
#ifndef ZMAP_CONTROL_H
......@@ -54,12 +54,13 @@ typedef void (*ZMapCallbackFunc)(ZMap zmap, void *app_data) ;
* to a ZMap. */
typedef struct _ZMapCallbacksStruct
{
ZMapCallbackFunc destroy ;
ZMapCallbackFunc destroy ; /* Reports that this zmap instance has
been destroyed. */
ZMapCallbackFunc exit ; /* Requests application termination. */
} ZMapCallbacksStruct, *ZMapCallbacks ;
void zMapInit(ZMapCallbacks callbacks) ;
ZMap zMapCreate(void *app_data) ;
ZMapView zMapAddView(ZMap zmap, char *sequence, int start, int end) ;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment