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

redundant header file.

parent c0cf3d1d
No related branches found
No related tags found
No related merge requests found
/* File: zmapSys.h
* Author: Ed Griffiths (edgrif@sanger.ac.uk)
* Copyright (c) Sanger Institute, 2003
*-------------------------------------------------------------------
* ZMap is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* or see the on-line version at http://www.gnu.org/copyleft/gpl.txt
*-------------------------------------------------------------------
* This file is part of the ZMap genome database package
* and was written by
* Rob Clack (Sanger Institute, UK) rnc@sanger.ac.uk,
* Ed Griffiths (Sanger Institute, UK) edgrif@sanger.ac.uk and
* Simon Kelley (Sanger Institute, UK) srk@sanger.ac.uk
*
* Description:
* Exported functions: See XXXXXXXXXXXXX.h
* HISTORY:
* Last edited: May 27 10:27 2005 (rds)
* Created: Thu Jul 24 14:36:17 2003 (edgrif)
* CVS info: $Id: zmapSys.h,v 1.3 2005-06-01 13:09:32 rds Exp $
*-------------------------------------------------------------------
*/
#ifndef ZMAP_SYS_H
#define ZMAP_SYS_H
#include <stdlib.h>
#include <stdio.h>
#include <glib.h>
/* I would like the data passed to be ZMapWinConn but this produces circularities
* in header dependencies between zmapApp.h and zmapManager.h....think about this. */
typedef void (*zmapAppCallbackFunc)(void *app_data, void * zmap) ;
/* This isn't good in fact the more I think about it, it's bad, but I need to get stuff done */
typedef struct _ZMapAppCallbacksStruct
{
zmapAppCallbackFunc zmap_deleted_func;
zmapAppCallbackFunc zmap_set_info_func;
} ZMapAppCallbacksStruct, *ZMapAppCallbacks;
/* Simple callback function. */
typedef void (*zmapVoidIntCallbackFunc)(void *cb_data, int reason_code) ;
#endif /* !ZMAP_SYS_H */
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