Browse Subversion Repository
Log of /branches/ttcomtester/teraterm/teraterm/winjump.c
Revision 10521 - (view) (download) (as text) (annotate) - [select for diffs] Modified Fri Jan 20 16:03:38 2023 UTC (14 months, 2 weeks ago) by zmatsuo File length: 24663 byte(s) Diff to previous 9610 add communication test tool Revision 9610 - (view) (download) (as text) (annotate) - [select for diffs] Modified Mon Dec 20 12:53:06 2021 UTC (2 years, 3 months ago) by zmatsuo Original Path: trunk/teraterm/teraterm/winjump.c File length: 24663 byte(s) Diff to previous 9230 clang でビルドしたとき、リンク時に出る警告対策 - libuuid.a(lib64_libuuid_a-uuid.o): duplicate section `.rdata$PKEY_Volume_IsRoot[PKEY_Volume_IsRoot]' has different size など Revision 9230 - (view) (download) (as text) (annotate) - [select for diffs] Modified Mon May 3 15:04:42 2021 UTC (2 years, 11 months ago) by zmatsuo Original Path: trunk/teraterm/teraterm/winjump.c File length: 24686 byte(s) Diff to previous 9048 _WIN32_WINNTをコンパイルオプションで指定
- Tera Term は _WIN32_WINNT >= 0x0501 でビルドすることが前提となっている
- 0x0501=_WIN32_WINNT_WINXP
- Windows XP
- Windows Server 2003
- Visual Studio 2005 のプロジェクトファイルに /D_WIN32_WINNT=0x0501 追加済み(r9191)
- teraterm_conf.h を削除
- WIN32_WINNT をコンパイルオプションで指定するため r7554 で追加した
- コマンドラインで明示的に指定するようになったた不要となった
- SDK 7.0 では _WIN32_WINNT が自動で設定されない
- SDK 7.0 より新しいSDKでは、特に指定されていない場合、自動で設定される
- SDKのバージョンによって自動で設定される_WIN32_WINNT の値は異なっている
- SDK 7.1 の場合 0x0601
- SDK 10.0.18362.0 の場合 0x0A00
- sdkddkver.h 内で設定される
- MinGWの場合は _mingw.h
- Visual Studio 2005 では次のSDKでビルドできることを確認済み
- SDK 7.0
- SDK 7.1
- Tera Term は Visual Studio 2005 以上をサポート
- MSC_VER >= 1400
Revision 9048 - (view) (download) (as text) (annotate) - [select for diffs] Modified Wed Dec 16 12:24:13 2020 UTC (3 years, 3 months ago) by nmaya Original Path: trunk/teraterm/teraterm/winjump.c File length: 24981 byte(s) Diff to previous 9036 ソースファイルの著作権表記の "最後の発行の年" を削除 ticket #40996 Revision 9036 - (view) (download) (as text) (annotate) - [select for diffs] Modified Sat Nov 21 15:12:40 2020 UTC (3 years, 4 months ago) by zmatsuo Original Path: trunk/teraterm/teraterm/winjump.c File length: 24985 byte(s) Diff to previous 8429 Releaseビルド時にデバグ出力が出ないようにした Revision 8429 - (view) (download) (as text) (annotate) - [select for diffs] Modified Mon Dec 2 10:55:35 2019 UTC (4 years, 4 months ago) by doda Original Path: trunk/teraterm/teraterm/winjump.c File length: 24601 byte(s) Diff to previous 8391 メモリリークを修正 Revision 8391 - (view) (download) (as text) (annotate) - [select for diffs] Modified Thu Nov 21 15:00:01 2019 UTC (4 years, 4 months ago) by zmatsuo Original Path: trunk/teraterm/teraterm/winjump.c File length: 24581 byte(s) Diff to previous 7554 _CRTDBG_MAP_ALLOC を使ってデバッグバージョンのヒープ割り当て関数へ切り替え - r8390 Revision 7554 - (view) (download) (as text) (annotate) - [select for diffs] Modified Sat Apr 6 15:40:46 2019 UTC (5 years ago) by zmatsuo Original Path: trunk/teraterm/teraterm/winjump.c File length: 24706 byte(s) Diff to previous 7536 VS2005pro+SDK7.0でビルドが通らなかったので修正 teraterm_conf.h を追加 _WIN32_WINNT などを定義 Revision 7536 - (view) (download) (as text) (annotate) - [select for diffs] Modified Mon Apr 1 12:45:02 2019 UTC (5 years ago) by zmatsuo Original Path: trunk/teraterm/teraterm/winjump.c File length: 24659 byte(s) Diff to previous 6841 MinGWでビルドできるよう調整 Revision 6841 - (view) (download) (as text) (annotate) - [select for diffs] Modified Tue Jul 4 15:02:28 2017 UTC (6 years, 9 months ago) by doda Original Path: trunk/teraterm/teraterm/winjump.c File length: 24312 byte(s) Diff to previous 6806 TeraTerm Project としてのライセンス表記を追加 ・Tera Term 本体分を横 80 桁に収まるように改行位置を調整 ・ttssh 関連の分を追加 Revision 6806 - (view) (download) (as text) (annotate) - [select for diffs] Modified Thu Jun 15 00:37:01 2017 UTC (6 years, 9 months ago) by doda Original Path: trunk/teraterm/teraterm/winjump.c File length: 24316 byte(s) Diff to previous 6519 TeraTerm Project としてのライセンス表記を追加 とりあえず Tera Term 本体分。 TeraTerm Project としての copyright 表記の年部分はコミットログを確認して書いたつもりだけど、ミスってたらすみません。 TODO: 過去に取り込んだパッチに関する著作権表記の追加 Revision 6519 - (view) (download) (as text) (annotate) - [select for diffs] Modified Tue Nov 1 06:01:12 2016 UTC (7 years, 5 months ago) by doda Original Path: trunk/teraterm/teraterm/winjump.c File length: 22801 byte(s) Diff to previous 6286 VC のバージョンではなく、専用の条件で判断するように変更 自前での宣言が必要か判別可能なので、その方法を使うべきだと思う Revision 6286 - (view) (download) (as text) (annotate) - [select for diffs] Modified Mon Feb 1 15:14:14 2016 UTC (8 years, 2 months ago) by yutakapon Original Path: trunk/teraterm/teraterm/winjump.c File length: 22301 byte(s) Diff to previous 5940 チケット #35744 VS2015の警告除去 下記ブランチからマージした。 svn+ssh://yutakapon@svn.sourceforge.jp/svnroot/ttssh2/branches/vs2015_warn リビジョン6194 - 6260 Revision 5940 - (view) (download) (as text) (annotate) - [select for diffs] Modified Thu Aug 13 06:12:27 2015 UTC (8 years, 8 months ago) by yutakapon Original Path: trunk/teraterm/teraterm/winjump.c File length: 22614 byte(s) Diff to previous 5939 関数の返値チェックを追加した。 Revision 5939 - (view) (download) (as text) (annotate) - [select for diffs] Modified Thu Aug 13 04:45:47 2015 UTC (8 years, 8 months ago) by yutakapon Original Path: trunk/teraterm/teraterm/winjump.c File length: 20844 byte(s) Diff to previous 4733 インデント崩れを整形した。 Revision 4733 - (view) (download) (as text) (annotate) - [select for diffs] Modified Sun Nov 20 10:55:20 2011 UTC (12 years, 4 months ago) by yutakapon Original Path: trunk/teraterm/teraterm/winjump.c File length: 21745 byte(s) Diff to previous 4724 Visual Studio 2010 Ultimate における警告抑止。 Revision 4724 - (view) (download) (as text) (annotate) - [select for diffs] Modified Tue Nov 15 15:56:56 2011 UTC (12 years, 4 months ago) by yutakapon Original Path: trunk/teraterm/teraterm/winjump.c File length: 21733 byte(s) Diff to previous 4705 Visual Studio 2010 Ultimate でのコンパイルエラー対策。 Revision 4705 - (view) (download) (as text) (annotate) - [select for diffs] Modified Wed Nov 2 15:54:58 2011 UTC (12 years, 5 months ago) by yutakapon Original Path: trunk/teraterm/teraterm/winjump.c File length: 21672 byte(s) Diff to previous 4506 Visual Studio 2008 + Windows SDK v6.0a の組み合わせだと、 多重定義でコンパイルエラーとなるため、回避処置を行う。 Revision 4506 - (view) (download) (as text) (annotate) - [select for diffs] Modified Mon Jun 20 00:00:03 2011 UTC (12 years, 9 months ago) by doda Original Path: trunk/teraterm/teraterm/winjump.c File length: 21612 byte(s) Diff to previous 4481 不要なコードを整理。 Revision 4481 - (view) (download) (as text) (annotate) - [select for diffs] Modified Mon Jun 6 13:20:00 2011 UTC (12 years, 10 months ago) by doda Original Path: trunk/teraterm/teraterm/winjump.c File length: 22265 byte(s) Diff to previous 4385 OS のバージョン確認を正しく行うように修正。 Revision 4385 - (view) (download) (as text) (annotate) - [select for diffs] Added Mon Mar 14 15:39:58 2011 UTC (13 years, 1 month ago) by yutakapon Original Path: trunk/teraterm/teraterm/winjump.c File length: 22378 byte(s) Windows7 jump listに暫定対応した。 まだドラフトレベルなので、気になる点は随時改修してください。 This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, enter a numeric revision.
|