| 40 |
|
|
| 41 |
#include "teraterm.h" |
#include "teraterm.h" |
| 42 |
#include "tttypes.h" |
#include "tttypes.h" |
|
#include "ttftypes.h" |
|
| 43 |
#include "ftdlg.h" |
#include "ftdlg.h" |
| 44 |
#include "ttwinman.h" |
#include "ttwinman.h" |
| 45 |
#include "commlib.h" |
#include "commlib.h" |
| 59 |
#include "filesys_log.h" |
#include "filesys_log.h" |
| 60 |
#include "filesys.h" // for ProtoGetProtoFlag() |
#include "filesys.h" // for ProtoGetProtoFlag() |
| 61 |
|
|
| 62 |
|
#define TitLog L"Log" |
| 63 |
|
|
| 64 |
/* |
/* |
| 65 |
Line Head flag for timestamping |
Line Head flag for timestamping |
| 66 |
2007.05.24 Gentaro |
2007.05.24 Gentaro |
| 136 |
|
|
| 137 |
wchar_t *DlgCaption; |
wchar_t *DlgCaption; |
| 138 |
wchar_t uimsg[MAX_UIMSG]; |
wchar_t uimsg[MAX_UIMSG]; |
| 139 |
#define TitLogW L"Log" |
get_lang_msgW("FILEDLG_TRANS_TITLE_LOG", uimsg, _countof(uimsg), TitLog, ts.UILanguageFile); |
|
get_lang_msgW("FILEDLG_TRANS_TITLE_LOG", uimsg, _countof(uimsg), TitLogW, ts.UILanguageFile); |
|
| 140 |
aswprintf(&DlgCaption, L"Tera Term: %s", uimsg); |
aswprintf(&DlgCaption, L"Tera Term: %s", uimsg); |
| 141 |
|
|
| 142 |
CFileTransDlg::Info info; |
CFileTransDlg::Info info; |
| 590 |
|
|
| 591 |
wchar_t caption[MAX_PATH]; |
wchar_t caption[MAX_PATH]; |
| 592 |
wchar_t uimsg[MAX_UIMSG]; |
wchar_t uimsg[MAX_UIMSG]; |
| 593 |
#define TitLogW L"Log" |
get_lang_msgW("FILEDLG_TRANS_TITLE_LOG", uimsg, _countof(uimsg), TitLog, UILanguageFile); |
|
get_lang_msgW("FILEDLG_TRANS_TITLE_LOG", uimsg, _countof(uimsg), TitLogW, UILanguageFile); |
|
| 594 |
wcsncpy_s(caption, _countof(caption), L"Tera Term: ", _TRUNCATE); |
wcsncpy_s(caption, _countof(caption), L"Tera Term: ", _TRUNCATE); |
| 595 |
wcsncat_s(caption, _countof(caption), uimsg, _TRUNCATE); |
wcsncat_s(caption, _countof(caption), uimsg, _TRUNCATE); |
| 596 |
|
|