• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

メニューからTeraPadを起動できるようになります。


Commit MetaInfo

Revision50271d41d8015bf95ce4defbc7686565849792a1 (tree)
Zeit2022-07-19 12:50:18
AutorIWAMOTO Kouichi <sue@iwmt...>
CommiterIWAMOTO Kouichi

Log Message

Tera Term 5のソースに対応

Ändern Zusammenfassung

Diff

--- a/TTXTeraPad.c
+++ b/TTXTeraPad.c
@@ -31,7 +31,9 @@
3131 #include <stdio.h>
3232 #include <string.h>
3333
34-#include "compat_w95.h"
34+#if TT_VERSION_MAJOR < 5
35+ #include "compat_w95.h"
36+#endif
3537
3638 #define REGKEY "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\TeraPad"
3739
@@ -157,7 +159,9 @@ BOOL WINAPI DllMain(HANDLE hInstance, ULONG ul_reason, LPVOID lpReserved)
157159 break;
158160 case DLL_PROCESS_ATTACH:
159161 /* do process initialization */
162+#if TT_VERSION_MAJOR < 5
160163 DoCover_IsDebuggerPresent();
164+#endif
161165 hInst = hInstance;
162166 pvar = &InstVar;
163167 break;