From e8ecf482866368fef96174bf7c3d99627322c096 Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Sun, 17 Dec 2000 23:00:33 +0000 Subject: [PATCH] r277: *** empty log message *** --- msvc/ctsim.dsw | 45 +++++++++++++++++++++++++++++++++++++++++++++ tools/ifexport.cpp | 8 ++++---- 2 files changed, 49 insertions(+), 4 deletions(-) diff --git a/msvc/ctsim.dsw b/msvc/ctsim.dsw index 23fb54a..ef257c4 100644 --- a/msvc/ctsim.dsw +++ b/msvc/ctsim.dsw @@ -72,6 +72,18 @@ Package=<4> ############################################################################### +Project: "ifexport"=".\ifexport\ifexport.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + Project: "libctsim"=".\libctsim\libctsim.dsp" - Package Owner=<4> Package=<5> @@ -99,6 +111,36 @@ Package=<4> ############################################################################### +Project: "pjinfo"=".\pjinfo\pjinfo.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ + Begin Project Dependency + Project_Dep_Name FFTW2st + End Project Dependency + Begin Project Dependency + Project_Dep_Name libctsim + End Project Dependency + Begin Project Dependency + Project_Dep_Name libpng + End Project Dependency + Begin Project Dependency + Project_Dep_Name RFFTW2st + End Project Dependency + Begin Project Dependency + Project_Dep_Name wxvc + End Project Dependency + Begin Project Dependency + Project_Dep_Name zlib + End Project Dependency +}}} + +############################################################################### + Project: "pjrec"=".\pjrec\pjrec.dsp" - Package Owner=<4> Package=<5> @@ -122,6 +164,9 @@ Package=<4> Begin Project Dependency Project_Dep_Name zlib End Project Dependency + Begin Project Dependency + Project_Dep_Name libctsim + End Project Dependency }}} ############################################################################### diff --git a/tools/ifexport.cpp b/tools/ifexport.cpp index 4b4c504..0ccd6d6 100644 --- a/tools/ifexport.cpp +++ b/tools/ifexport.cpp @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: ifexport.cpp,v 1.1 2000/12/17 22:39:23 kevin Exp $ +** $Id: ifexport.cpp,v 1.2 2000/12/17 23:00:33 kevin Exp $ ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License (version 2) as @@ -48,7 +48,7 @@ static struct option my_options[] = {0, 0, 0, 0} }; -static const char* g_szIdStr = "$Id: ifexport.cpp,v 1.1 2000/12/17 22:39:23 kevin Exp $"; +static const char* g_szIdStr = "$Id: ifexport.cpp,v 1.2 2000/12/17 23:00:33 kevin Exp $"; enum { O_AUTO_FULL, O_AUTO_STD0_1, O_AUTO_STD0_5, O_AUTO_STD1, O_AUTO_STD2, O_AUTO_STD3 }; static const char O_AUTO_FULL_STR[]="full"; @@ -389,9 +389,9 @@ main (int argc, char *const argv[]) try { retval = ifexport_main(argc, argv); } catch (exception e) { - cerr << "Exception: " << e.what() << std::endl; + std::cerr << "Exception: " << e.what() << std::endl; } catch (...) { - cerr << "Unknown exception\n"; + std::cerr << "Unknown exception\n"; } return (retval); -- 2.34.1