From: Kevin M. Rosenberg Date: Thu, 30 Jan 2003 04:16:27 +0000 (+0000) Subject: r3882: *** empty log message *** X-Git-Tag: debian-4.5.3-3~127 X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=commitdiff_plain;h=e85dbff9faaca30e1d89d05b0e5deda1ab932f86 r3882: *** empty log message *** --- diff --git a/getopt/getopt.h b/getopt/getopt.h index 74a3a58..1549b0a 100644 --- a/getopt/getopt.h +++ b/getopt/getopt.h @@ -19,8 +19,9 @@ #ifndef _GETOPT_H +#ifdef HAVE_CONFIG_H #include "../config.h" - +#endif #ifndef __need_getopt # define _GETOPT_H 1 diff --git a/msvc/ctsim/ctsim.rc b/msvc/ctsim/ctsim.rc index 3446e6f..0d62ea8 100644 --- a/msvc/ctsim/ctsim.rc +++ b/msvc/ctsim/ctsim.rc @@ -1,4 +1,3 @@ ICON_APP ICON "logo.ico" #include "wx/msw/wx.rc" -#include "wx/html/msw/wxhtml.rc" diff --git a/msvc/ctsim/ctsim.vcproj b/msvc/ctsim/ctsim.vcproj new file mode 100755 index 0000000..10c9a69 --- /dev/null +++ b/msvc/ctsim/ctsim.vcproj @@ -0,0 +1,414 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/msvc/ctsimtext/ctsimtext.vcproj b/msvc/ctsimtext/ctsimtext.vcproj new file mode 100755 index 0000000..935e388 --- /dev/null +++ b/msvc/ctsimtext/ctsimtext.vcproj @@ -0,0 +1,290 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/msvc/libctsim/libctsim.vcproj b/msvc/libctsim/libctsim.vcproj new file mode 100755 index 0000000..a796b0e --- /dev/null +++ b/msvc/libctsim/libctsim.vcproj @@ -0,0 +1,479 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tools/ctsimtext.cpp b/tools/ctsimtext.cpp index ad7a306..c9e6297 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.24 2003/01/11 21:23:38 kevin Exp $ +** $Id: ctsimtext.cpp,v 1.25 2003/01/30 04:16:27 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,7 +45,7 @@ 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.24 2003/01/11 21:23:38 kevin Exp $"; +static const char* const g_szIdStr = "$Id: ctsimtext.cpp,v 1.25 2003/01/30 04:16:27 kevin Exp $"; static const char* const s_szProgramName = "ctsimtext"; static const char* const s_szProgramName2 = "ctsimtext.exe"; static const char* const s_szProgramName3 = "ctsimtext-lam"; @@ -159,7 +159,7 @@ ctsimtext_main (int argc, char * argv[]) convertStringToArgcv (pszInputLine, &argc, &argv); #ifdef DEBUG - for (unsigned int i = 0; i < argc; i++) + for (int i = 0; i < argc; i++) std::cout << "Token " << i << ": " << argv[i] << "\n"; #endif iReturn = processCommand (argc, argv);