Daniel@0: /* $Id: gvcommon.h,v 1.14 2009/06/03 01:10:53 ellson Exp $ $Revision: 1.14 $ */ Daniel@0: /* vim:set shiftwidth=4 ts=8: */ Daniel@0: Daniel@0: /********************************************************** Daniel@0: * This software is part of the graphviz package * Daniel@0: * http://www.graphviz.org/ * Daniel@0: * * Daniel@0: * Copyright (c) 1994-2004 AT&T Corp. * Daniel@0: * and is licensed under the * Daniel@0: * Common Public License, Version 1.0 * Daniel@0: * by AT&T Corp. * Daniel@0: * * Daniel@0: * Information and Software Systems Research * Daniel@0: * AT&T Research, Florham Park NJ * Daniel@0: **********************************************************/ Daniel@0: Daniel@0: #ifndef GVCOMMON_H Daniel@0: #define GVCOMMON_H Daniel@0: Daniel@0: #ifdef __cplusplus Daniel@0: extern "C" { Daniel@0: #endif Daniel@0: Daniel@0: typedef struct GVCOMMON_s { Daniel@0: char **info; Daniel@0: char *cmdname; Daniel@0: int verbose; Daniel@0: boolean config, auto_outfile_names; Daniel@0: void (*errorfn) (const char *fmt, ...); Daniel@0: const char **show_boxes; /* emit code for correct box coordinates */ Daniel@0: const char **lib; Daniel@0: Daniel@0: /* rendering state */ Daniel@0: int viewNum; /* current view - 1 based count of views, Daniel@0: all pages in all layers */ Daniel@0: const lt_symlist_t *builtins; Daniel@0: int demand_loading; Daniel@0: } GVCOMMON_t; Daniel@0: Daniel@0: #ifdef __cplusplus Daniel@0: } Daniel@0: #endif Daniel@0: #endif /* GVCOMMON_H */