1 /* SCCS-info %W% %E% */ 2 3 /*--------------------------------------------------------------------*/ 4 /* */ 5 /* VCG : Visualization of Compiler Graphs */ 6 /* -------------------------------------- */ 7 /* */ 8 /* file: X11devvw.h */ 9 /* version: 1.00.00 */ 10 /* creation: 12.1.95 */ 11 /* author: I. Lemke (...-Version 0.99.99) */ 12 /* G. Sander (Version 1.00.00-...) */ 13 /* Universitaet des Saarlandes, 66041 Saarbruecken */ 14 /* ESPRIT Project #5399 Compare */ 15 /* description: Device driver for X11, View Dialog Box */ 16 /* status: in work */ 17 /* */ 18 /*--------------------------------------------------------------------*/ 19 20 /* $Id: X11devvw.h,v 1.1 1995/02/08 11:11:14 sander Exp $ */ 21 22 /* 23 * Copyright (C) 1993-2005 Saarland University 24 * 25 * This program and documentation is free software; you can redistribute 26 * it under the terms of the GNU General Public License as published by 27 * the Free Software Foundation; either version 2 of the License, or 28 * (at your option) any later version. 29 * 30 * This program is distributed in the hope that it will be useful, 31 * but WITHOUT ANY WARRANTY; without even the implied warranty of 32 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 33 * GNU General Public License for more details. 34 * 35 * You should have received a copy of the GNU General Public License 36 * along with this program; if not, write to the Free Software 37 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 38 * 39 * The software is available per anonymous ftp at ftp.cs.uni-sb.de. 40 * Contact sander@cs.uni-sb.de for additional information. 41 */ 42 43 44 /* 45 * $Log: X11devvw.h,v $ 46 * Revision 1.1 1995/02/08 11:11:14 sander 47 * Initial revision 48 * 49 */ 50 51 #ifndef X11DEVVW_H 52 #define X11DEVVW_H 53 #ifdef X11 54 55 56 /*--------------------------------------------------------------------*/ 57 58 /* See X11devvw.c for explanation 59 * ------------------------------ 60 */ 61 62 void x11_init_view_dialog _PP((Display *rd, int rs)); 63 void x11_destroy_view_dialog _PP((Display *rd, int rs)); 64 int x11_print_view_dialog _PP((void)); 65 66 67 /*--------------------------------------------------------------------*/ 68 69 #endif /* X11 */ 70 #endif /* X11DEVVW_H */ 71 72 73