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
df1a6ae0
Commit
df1a6ae0
authored
16 years ago
by
edgrif
Browse files
Options
Downloads
Patches
Plain Diff
add new prototypes for getting feature sets and styles.
parent
5446ff56
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/zmapServer/zmapServerPrototype.h
+9
-8
9 additions, 8 deletions
src/zmapServer/zmapServerPrototype.h
with
9 additions
and
8 deletions
src/zmapServer/zmapServerPrototype.h
+
9
−
8
View file @
df1a6ae0
...
...
@@ -28,9 +28,9 @@
* include this header, its not really for general consumption.
*
* HISTORY:
* Last edited:
Feb
8
1
5:1
4 2008 (edgrif)
* Last edited:
Aug
1
1
3:5
4 2008 (edgrif)
* Created: Wed Aug 6 15:48:47 2003 (edgrif)
* CVS info: $Id: zmapServerPrototype.h,v 1.2
1
2008-0
6-10 15:05:25 rds
Exp $
* CVS info: $Id: zmapServerPrototype.h,v 1.2
2
2008-0
9-24 14:49:10 edgrif
Exp $
*-------------------------------------------------------------------
*/
#ifndef ZMAP_SERVER_PROTOTYPEP_H
...
...
@@ -56,17 +56,18 @@ typedef ZMapServerResponseType (*ZMapServerOpenFunc)(void *server_conn) ;
typedef
ZMapServerResponseType
(
*
ZMapServerGetServerInfo
)(
void
*
server_in
,
char
**
database_path_out
)
;
typedef
ZMapServerResponseType
(
*
ZMapServerGetStyles
)(
void
*
server_in
,
GData
**
styles_out
)
;
typedef
ZMapServerResponseType
(
*
ZMapServerGetFeatureSets
)(
void
*
server_in
,
GList
**
feature_sets_inout
,
GList
**
required_styles
)
;
typedef
ZMapServerResponseType
(
*
ZMapServerGetStyles
)(
void
*
server_in
,
GData
**
styles_out
)
;
typedef
ZMapServerResponseType
(
*
ZMapServerStylesHaveModes
)(
void
*
server_in
,
gboolean
*
have_modes_out
)
;
typedef
ZMapServerResponseType
(
*
ZMapServerGetSequence
)(
void
*
server_in
,
GList
*
sequences_inout
)
;
typedef
ZMapServerResponseType
(
*
ZMapServerGetFeatureSets
)(
void
*
server_in
,
GList
**
feature_sets_out
)
;
typedef
ZMapServerResponseType
(
*
ZMapServerSetContextFunc
)(
void
*
server_conn
,
ZMapFeatureContext
feature_context
)
;
(
*
ZMapServerSetContextFunc
)(
void
*
server_conn
,
ZMapFeatureContext
feature_context
)
;
typedef
ZMapFeatureContext
(
*
ZMapServerCopyContextFunc
)(
void
*
server_conn
)
;
...
...
@@ -91,10 +92,10 @@ typedef struct _ZMapServerFuncsStruct
ZMapServerCreateFunc
create
;
ZMapServerOpenFunc
open
;
ZMapServerGetServerInfo
get_info
;
ZMapServerGetFeatureSets
feature_set_names
;
ZMapServerGetStyles
get_styles
;
ZMapServerStylesHaveModes
have_modes
;
ZMapServerGetSequence
get_sequence
;
ZMapServerGetFeatureSets
get_feature_sets
;
ZMapServerSetContextFunc
set_context
;
ZMapServerGetFeatures
get_features
;
ZMapServerGetContextSequences
get_context_sequences
;
...
...
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