00001 /*****************************************************************************\ 00002 * File: mdes2.h 00003 * Author: John C. Gyllenhaal 00004 * Creation Date: April 1996 00005 * Copyright (c) 1996 John C. Gyllenhaal, Wen-mei Hwu and 00006 * The Board of Trustees of the University of Illinois. 00007 * All rights reserved. 00008 * The University of Illinois software License Agreement 00009 * specifies the terms and conditions for redistribution. 00010 \*****************************************************************************/ 00011 00012 #ifndef MDES2_H 00013 #define MDES2_H 00014 00015 #include <stdio.h> /* Allow the use of FILE type in prototypes */ 00016 #include "md.h" /* To allow use of md data structures */ 00017 #include "lmdes.h" 00018 #include "sm_mdes.h" 00019 00020 /* Version 2 machine description main structure */ 00021 typedef struct Mdes2 00022 { 00023 char *file_name; 00024 MD *md_mdes; /* MD version of the description */ 00025 SM_Mdes *sm_mdes; /* SM version of the description */ 00026 Mdes *version1_mdes; /* (Old) Version 1 of the desc */ 00027 } Mdes2; 00028 00029 extern Mdes2 *load_mdes2 (char *file_name); 00030 00031 #endif
1.3.2