X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=tools%2Fctsimtext.cpp;h=51f76f3650382f222ad5e8ac194511b80967c311;hb=4f9cce33684015c3c00f87bd9aa1553930203248;hp=6983cb0fe6e1614017cffa53c66412509fc56671;hpb=c70eb596eeeeda21f872065d9e11a67996394626;p=ctsim.git diff --git a/tools/ctsimtext.cpp b/tools/ctsimtext.cpp index 6983cb0..51f76f3 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.9 2001/01/13 03:51:35 kevin Exp $ +** $Id: ctsimtext.cpp,v 1.14 2001/01/13 05:15:44 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.9 2001/01/13 03:51:35 kevin Exp $"; +static const char* const g_szIdStr = "$Id: ctsimtext.cpp,v 1.14 2001/01/13 05:15:44 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,8 +104,8 @@ ctsimtext_main (int argc, char * argv[]) { int iReturn = 0; - if (argc > 1 && strcmp(argv[0], fileBasename (s_szProgramName)) == 0) { - argv = &argv[1]; + if (argc > 1 && (strcmp(s_szProgramName, fileBasename (argv[0])) == 0 || strcmp(s_szProgramName2, fileBasename (argv[0])) == 0)) { + argv++; argc--; iReturn = processCommand (argc, argv); } else if (argc > 1){ @@ -272,20 +273,3 @@ main (int argc, char* argv[]) return (retval); } - -// Hack to fix linking problems when not linking with wxWindows and CTSim GUI routines - -#ifdef HAVE_WXWINDOWS -#include "../src/dlgezplot.h" - -EZPlotDialog::EZPlotDialog (wxWindow* parent) -{} - -EZPlotDialog::~EZPlotDialog() -{} - -unsigned long -wxDialog::OnCtlColor(unsigned long a,unsigned long b,unsigned int c,unsigned int d,unsigned int e,long f) -{return 0;} - -#endif \ No newline at end of file