Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Z
zmap
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ensembl-gh-mirror
zmap
Commits
3cda83fd
Commit
3cda83fd
authored
20 years ago
by
edgrif
Browse files
Options
Downloads
Patches
Plain Diff
renamed ZMap.h to zmapControl.h for clarity.
parent
61f6acf6
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/include/ZMap/zmapControl.h
+68
-0
68 additions, 0 deletions
src/include/ZMap/zmapControl.h
with
68 additions
and
0 deletions
src/include/ZMap/zmapControl.h
0 → 100755
+
68
−
0
View file @
3cda83fd
/* File: zmapControl.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
* originated by
* Ed Griffiths (Sanger Institute, UK) edgrif@sanger.ac.uk,
* Rob Clack (Sanger Institute, UK) rnc@sanger.ac.uk
*
* Description: Interface for creating, controlling and destroying ZMaps.
*
* HISTORY:
* Last edited: Jul 1 09:42 2004 (edgrif)
* Created: Mon Nov 17 08:04:32 2003 (edgrif)
* CVS info: $Id: zmapControl.h,v 1.1 2004-07-01 08:42:53 edgrif Exp $
*-------------------------------------------------------------------
*/
#ifndef ZMAPCONTROL_H
#define ZMAPCONTROL_H
/* It turns out we need some way to refer to zmapviews at this level, while I don't really
* want to expose all the zmapview stuff I do want the opaque ZMapView type.
* Think about this some more. */
#include
<ZMap/zmapView.h>
/* Opaque type, represents an instance of a ZMap. */
typedef
struct
_ZMapStruct
*
ZMap
;
/* Applications can register functions that will be called back with their own
* data and a reference to the zmap that made the callback. */
typedef
void
(
*
ZMapCallbackFunc
)(
ZMap
zmap
,
void
*
app_data
)
;
ZMap
zMapCreate
(
void
*
app_data
,
ZMapCallbackFunc
zmap_destroyed_cb
)
;
/* NOW THIS IS WHERE WE NEED GERROR........ */
ZMapView
zMapAddView
(
ZMap
zmap
,
char
*
sequence
)
;
gboolean
zMapConnectView
(
ZMap
zmap
,
ZMapView
view
)
;
gboolean
zMapLoadView
(
ZMap
zmap
,
ZMapView
view
)
;
gboolean
zMapStopView
(
ZMap
zmap
,
ZMapView
view
)
;
gboolean
zMapDeleteView
(
ZMap
zmap
,
ZMapView
view
)
;
char
*
zMapGetZMapID
(
ZMap
zmap
)
;
char
*
zMapGetZMapStatus
(
ZMap
zmap
)
;
gboolean
zMapReset
(
ZMap
zmap
)
;
gboolean
zMapDestroy
(
ZMap
zmap
)
;
#endif
/* !ZMAPCONTROL_H */
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment