Revision: 9936 https://osdn.net/projects/ttssh2/scm/svn/commits/9936 Author: zmatsuo Date: 2022-05-19 01:02:55 +0900 (Thu, 19 May 2022) Log Message: ----------- 関数の呼び出し規約 CALLBACK が抜けていた - CALLBACK = __stdcall - 省略時は __cdecl - 64bit コンパイラの場合は __cdecl = __stdcall - r9923 Revision Links: -------------- https://osdn.net/projects/ttssh2/scm/svn/commits/9923 Modified Paths: -------------- trunk/teraterm/teraterm/coding_pp.cpp trunk/teraterm/teraterm/font_pp.cpp -------------- next part -------------- Modified: trunk/teraterm/teraterm/coding_pp.cpp =================================================================== --- trunk/teraterm/teraterm/coding_pp.cpp 2022-05-18 16:02:45 UTC (rev 9935) +++ trunk/teraterm/teraterm/coding_pp.cpp 2022-05-18 16:02:55 UTC (rev 9936) @@ -285,7 +285,7 @@ return FALSE; } -static UINT CallBack(HWND hwnd, UINT uMsg, struct _PROPSHEETPAGEW *ppsp) +static UINT CALLBACK CallBack(HWND hwnd, UINT uMsg, struct _PROPSHEETPAGEW *ppsp) { (void)hwnd; UINT ret_val = 0; Modified: trunk/teraterm/teraterm/font_pp.cpp =================================================================== --- trunk/teraterm/teraterm/font_pp.cpp 2022-05-18 16:02:45 UTC (rev 9935) +++ trunk/teraterm/teraterm/font_pp.cpp 2022-05-18 16:02:55 UTC (rev 9936) @@ -258,7 +258,7 @@ return FALSE; } -static UINT CallBack(HWND hwnd, UINT uMsg, struct _PROPSHEETPAGEW *ppsp) +static UINT CALLBACK CallBack(HWND hwnd, UINT uMsg, struct _PROPSHEETPAGEW *ppsp) { (void)hwnd; UINT ret_val = 0;