X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=tools%2Fctsimtext.cpp;h=994fea0aa422f69f1689bafa3d3c8480019bd327;hp=242689ab2468213dca5e5b11f015ade33a310dc3;hb=0b7751a41a5a51daa7f919e5ba492a5f629c1393;hpb=5ff5b33a6bc64fb804106c4d50b83e4cf0d7b0f4 diff --git a/tools/ctsimtext.cpp b/tools/ctsimtext.cpp index 242689a..994fea0 100644 --- a/tools/ctsimtext.cpp +++ b/tools/ctsimtext.cpp @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: ctsimtext.cpp,v 1.8 2001/01/10 21:21:53 kevin Exp $ +** $Id: ctsimtext.cpp,v 1.11 2001/01/13 04:44:47 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 @@ -45,8 +45,9 @@ extern "C" { // If linked to ctsimtext, but executed as another name, eg pjrec, then program will use that // linked name as name of function. -static const char* const g_szIdStr = "$Id: ctsimtext.cpp,v 1.8 2001/01/10 21:21:53 kevin Exp $"; +static const char* const g_szIdStr = "$Id: ctsimtext.cpp,v 1.11 2001/01/13 04:44:47 kevin Exp $"; static const char* const s_szProgramName = "ctsimtext"; +static const char* const s_szProgramName2 = "ctsimtext.exe"; extern int if1_main (int argc, char* const argv[]); extern int if2_main (int argc, char* const argv[]); @@ -103,9 +104,13 @@ ctsimtext_main (int argc, char * argv[]) { int iReturn = 0; - if (argc > 1 && strcmp(argv[0], fileBasename (s_szProgramName)) == 0) { + if (argc > 1 && (strcmp(argv[0], fileBasename (s_szProgramName)) == 0 || strcmp(argv[0], fileBasename (s_szProgramName2)) == 0)) { argv = &argv[1]; argc--; + if (argc > 1 && (strcmp(argv[0], fileBasename (s_szProgramName)) == 0 || strcmp(argv[0], fileBasename (s_szProgramName2)) == 0)) { + argv = &argv[2]; + argc--; + } iReturn = processCommand (argc, argv); } else if (argc > 1){ iReturn = processCommand (argc, argv); @@ -272,3 +277,22 @@ main (int argc, char* argv[]) return (retval); } + +// Hack to fix linking problems when not linking with wxWindows and CTSim GUI routines +#ifdef MSVC +unsigned long +wxDialog::OnCtlColor(unsigned long a,unsigned long b,unsigned int c,unsigned int d,unsigned int e,long f) +{return 0;} +#endif + +#if 0 +#include "../src/dlgezplot.h" + +EZPlotDialog::EZPlotDialog (wxWindow* parent) + : wxDialog(), m_pEZPlotCtrl(NULL) +{} + +EZPlotDialog::~EZPlotDialog() +{} + +#endif