/* Copyright (c) 1992, 1993 Regents of the University of California All rights reserved. Use and copying of this software and preparation of derivative works based upon this software are permitted. However, any distribution of this software or derivative works must include the above copyright notice. This software is made available AS IS, and neither the Electronics Research Laboratory or the Universify of California make any warranty about the software, its performance or its conformity to any specification. Author: Szu-Tsung Cheng, stcheng@ic.Berkeley.EDU 10/92 10/93 $Header: /projects/development/hsv/CVSRepository/vl2mv/src/parser/vl_fg_types.h,v 1.1.1.1 2001/07/09 23:22:42 fabio Exp $ */ typedef struct fg_node_info { short type; char *data; char *loc; ctrlNetNode *SRFSMnode; } fg_node_info; typedef struct fg_arc_info { short type; char *data; } fg_arc_info; typedef struct fg_graph_info { short type; int fg_id; vertex_t *init_node; int pause_lo, pause_hi; lsList pause_list; } fg_graph_info;