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

change blix match type to bit field.

parent 3c7a7eea
No related branches found
No related tags found
No related merge requests found
...@@ -26,9 +26,9 @@ ...@@ -26,9 +26,9 @@
* window displaying genome data. * window displaying genome data.
* *
* HISTORY: * HISTORY:
* Last edited: Mar 11 13:44 2010 (edgrif) * Last edited: May 5 17:27 2010 (edgrif)
* Created: Thu Jul 24 15:21:56 2003 (edgrif) * Created: Thu Jul 24 15:21:56 2003 (edgrif)
* CVS info: $Id: zmapWindow.h,v 1.109 2010-03-12 14:42:57 edgrif Exp $ * CVS info: $Id: zmapWindow.h,v 1.110 2010-05-06 11:58:45 edgrif Exp $
*------------------------------------------------------------------- *-------------------------------------------------------------------
*/ */
#ifndef ZMAP_WINDOW_H #ifndef ZMAP_WINDOW_H
...@@ -169,11 +169,14 @@ typedef struct ...@@ -169,11 +169,14 @@ typedef struct
ZMapWindowCommandType cmd ; ZMapWindowCommandType cmd ;
ZMapFeature feature ; ZMapFeature feature ;
gboolean single_match ; struct
gboolean single_feature ; {
gboolean feature_set ; unsigned int single_match : 1 ;
gboolean multi_sets ; unsigned int single_feature : 1 ;
gboolean all_sets ; unsigned int feature_set : 1 ;
unsigned int multi_sets : 1 ;
unsigned int all_sets : 1 ;
} blix_type ;
} ZMapWindowCallbackCommandAlignStruct, *ZMapWindowCallbackCommandAlign ; } ZMapWindowCallbackCommandAlignStruct, *ZMapWindowCallbackCommandAlign ;
......
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