00001 // Copyright (c) 2000, Compaq Computer Corporation 00002 // Copyright (C) 2001, Compaq Computer Corporation 00003 // 00004 // This file is part of Vesta. 00005 // 00006 // Vesta is free software; you can redistribute it and/or 00007 // modify it under the terms of the GNU Lesser General Public 00008 // License as published by the Free Software Foundation; either 00009 // version 2.1 of the License, or (at your option) any later version. 00010 // 00011 // Vesta is distributed in the hope that it will be useful, 00012 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00014 // Lesser General Public License for more details. 00015 // 00016 // You should have received a copy of the GNU Lesser General Public 00017 // License along with Vesta; if not, write to the Free Software 00018 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00019 00020 // File: RunToolHost.H 00021 // Last modified on Fri Nov 9 14:02:43 EST 2001 by ken@xorian.net 00022 // modified on Fri Apr 7 13:44:32 PDT 2000 by mann 00023 00024 #ifndef RunToolHost_H 00025 #define RunToolHost_H 00026 00027 #include <Basics.H> 00028 #include "Expr.H" 00029 00030 // Initialize module 00031 void RunToolHostInit(); 00032 00033 // Select a host of the given platform type to run a tool 00034 Text RunToolHost(TextVC *platform, SrcLoc *loc, /*OUT*/void*& handle); 00035 00036 // Indicate we are done with the host returned by RunToolHost 00037 void RunToolDone(void* handle); 00038 00039 #endif // RunToolHost_H