Revision: 10793 https://osdn.net/projects/ttssh2/scm/svn/commits/10793 Author: zmatsuo Date: 2023-07-03 01:00:59 +0900 (Mon, 03 Jul 2023) Log Message: ----------- MakeLocatorReportStr() を static 関数に変更 - vtterm.c 内のみで使用する関数 Modified Paths: -------------- trunk/teraterm/teraterm/vtterm.c -------------- next part -------------- Modified: trunk/teraterm/teraterm/vtterm.c =================================================================== --- trunk/teraterm/teraterm/vtterm.c 2023-07-02 13:07:37 UTC (rev 10792) +++ trunk/teraterm/teraterm/vtterm.c 2023-07-02 16:00:59 UTC (rev 10793) @@ -5352,7 +5352,8 @@ return ChangeEmu; } -int MakeLocatorReportStr(char *buff, size_t buffsize, int event, int x, int y) { +static int MakeLocatorReportStr(char *buff, size_t buffsize, int event, int x, int y) +{ if (x < 0) { return _snprintf_s_l(buff, buffsize, _TRUNCATE, "%d;%d&w", CLocale, event, ButtonStat); }