Develop and Download Open Source Software

Browse CVS Repository

Diff of /ttssh2/teraterm/source/teraterm/filesys.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.8 by maya, Thu Jan 4 15:11:44 2007 UTC revision 1.15 by maya, Wed Jun 6 14:02:53 2007 UTC
# Line 64  PProtoCancel ProtoCancel; Line 64  PProtoCancel ProtoCancel;
64  #define IdProtoTimeOutProc 9  #define IdProtoTimeOutProc 9
65  #define IdProtoCancel    10  #define IdProtoCancel    10
66    
67    /*
68       Line Head flag for timestamping
69       2007.05.24 Gentaro
70    */
71    enum enumLineEnd {
72            Line_Other = 0,
73            Line_LineHead = 1,
74            Line_FileHead = 2,
75    };
76    
77    enum enumLineEnd eLineEnd = Line_LineHead;
78    
79  BOOL LoadTTFILE()  BOOL LoadTTFILE()
80  {  {
81    BOOL Err;    BOOL Err;
# Line 165  static PProtoDlg PtDlg = NULL; Line 177  static PProtoDlg PtDlg = NULL;
177  BOOL OpenFTDlg(PFileVar fv)  BOOL OpenFTDlg(PFileVar fv)
178  {  {
179    PFileTransDlg FTDlg;    PFileTransDlg FTDlg;
180  #ifdef I18N  #ifndef NO_I18N
181    HWND HFTDlg;    HWND HFTDlg;
182  #endif  #endif
183    
# Line 173  BOOL OpenFTDlg(PFileVar fv) Line 185  BOOL OpenFTDlg(PFileVar fv)
185        
186    if (FTDlg!=NULL)    if (FTDlg!=NULL)
187    {    {
188  #ifdef I18N  #ifndef NO_I18N
189      FTDlg->Create(fv, &cv, &ts);      FTDlg->Create(fv, &cv, &ts);
190  #else  #else
191      FTDlg->Create(fv, &cv);      FTDlg->Create(fv, &cv);
# Line 188  BOOL OpenFTDlg(PFileVar fv) Line 200  BOOL OpenFTDlg(PFileVar fv)
200    else    else
201      SendDlg = FTDlg; /* File send */      SendDlg = FTDlg; /* File send */
202    
203  #ifdef I18N  #ifndef NO_I18N
204    HFTDlg=FTDlg->GetSafeHwnd();    HFTDlg=FTDlg->GetSafeHwnd();
205    
206    GetDlgItemText(HFTDlg, IDC_TRANS_FILENAME, ts.UIMsg, sizeof(ts.UIMsg));    GetDlgItemText(HFTDlg, IDC_TRANS_FILENAME, ts.UIMsg, sizeof(ts.UIMsg));
# Line 251  void FreeFileVar(PFileVar *fv) Line 263  void FreeFileVar(PFileVar *fv)
263    }    }
264  }  }
265    
266    // &h をホスト名に置換 (2007.5.14)
267    void ConvertLogname(char *c)
268    {
269      char buf[MAXPATHLEN], buf2[MAXPATHLEN], *p = c;
270    
271      memset(buf, 0, sizeof(buf));
272    
273      while(*p != '\0') {
274        if (*p == '&' && *(p+1) != '\0') {
275          switch (*(p+1)) {
276            case 'h':
277              if (cv.Open) {
278                if (cv.PortType == IdTCPIP) {
279                  _snprintf(buf2, sizeof(buf2), "%s%s", buf, ts.HostName);
280                  strncpy(buf, buf2, sizeof(buf)-strlen(buf)-1);
281                }
282                else if (cv.PortType == IdSerial) {
283                  _snprintf(buf2, sizeof(buf2), "%sCOM%d", buf, ts.ComPort);
284                  strncpy(buf, buf2, sizeof(buf)-strlen(buf)-1);
285                }
286              }
287              break;
288            default:
289              if (strlen(buf) < sizeof(buf)-3) {
290                strncat(buf, p, 2);
291              }
292          }
293          p++;
294        }
295        else {
296              if (strlen(buf) < sizeof(buf)-2) {
297                strncat(buf, p, 1);
298              }
299        }
300        p++;
301      }
302      strcpy(c, buf);
303    }
304    
305  extern "C" {  extern "C" {
306  void LogStart()  void LogStart()
307  {  {
308          LONG Option;          LONG Option;
309            char *logdir;
310    
311          if ((FileLog) || (BinLog)) return;          if ((FileLog) || (BinLog)) return;
312    
# Line 266  void LogStart() Line 318  void LogStart()
318          }          }
319          LogVar->OpId = OpLog;          LogVar->OpId = OpLog;
320    
321            if (strlen(ts.LogDefaultPath) > 0) {
322                    logdir = ts.LogDefaultPath;
323            }
324            else if (strlen(ts.FileDir) > 0) {
325                    logdir = ts.FileDir;
326            }
327            else {
328                    logdir = ts.HomeDir;
329            }
330    
331          if (strlen(&(LogVar->FullName[LogVar->DirLen]))==0)          if (strlen(&(LogVar->FullName[LogVar->DirLen]))==0)
332          {          {
333                  // LOWORD                  // LOWORD
# Line 280  void LogStart() Line 342  void LogStart()
342                                                    (0x2000 * ts.LogTimestamp));                                                    (0x2000 * ts.LogTimestamp));
343    
344                  // ログのデフォルトファイル名を設定 (2006.8.28 maya)                  // ログのデフォルトファイル名を設定 (2006.8.28 maya)
345                  strncat(LogVar->FullName, ts.LogDefaultName, sizeof(LogVar->FullName));                  strncat(LogVar->FullName, ts.LogDefaultName, sizeof(LogVar->FullName)-1);
346                    LogVar->FullName[sizeof(LogVar->FullName)-1] = '\0';
347    
348                  ParseStrftimeFileName(LogVar->FullName);                  ParseStrftimeFileName(LogVar->FullName);
349    
350  #ifdef I18N                  // &h をホスト名に置換 (2007.5.14)
351                  if (! (*GetTransFname)(LogVar, ts.FileDir, GTF_LOG, &Option, &ts))                  ConvertLogname(LogVar->FullName);
352  #else  
353                  if (! (*GetTransFname)(LogVar, ts.FileDir, GTF_LOG, &Option))                  if (! (*GetTransFname)(LogVar, logdir, GTF_LOG, &Option))
 #endif  
354                  {                  {
355                          FreeFileVar(&LogVar);                          FreeFileVar(&LogVar);
356                          FreeTTFILE();                          FreeTTFILE();
# Line 312  void LogStart() Line 375  void LogStart()
375                  ts.Append &= 0x1; // 1bitにマスクする                  ts.Append &= 0x1; // 1bitにマスクする
376    
377          }          }
378          else          else {
379  #ifdef I18N                  // LogVar->DirLen = 0 だとここに来る
380                  (*SetFileVar)(FileVar, &ts);                  // フルパス・相対パスともに LogVar->FullName に入れておく必要がある
381  #else                  char FileName[MAX_PATH];
382    
383                    // フルパス化
384                    strncpy(FileName, LogVar->FullName, sizeof(FileName)-1);
385                    FileName[sizeof(FileName)-1] = '\0';
386                    ConvFName(logdir,FileName,"",LogVar->FullName);
387    
388                    ParseStrftimeFileName(LogVar->FullName);
389    
390                    // &h をホスト名に置換 (2007.5.14)
391                    ConvertLogname(LogVar->FullName);
392                  (*SetFileVar)(LogVar);                  (*SetFileVar)(LogVar);
393  #endif          }
394    
395          if (ts.TransBin > 0)          if (ts.TransBin > 0)
396          {          {
# Line 342  void LogStart() Line 415  void LogStart()
415          cv.LCount = 0;          cv.LCount = 0;
416    
417          HelpId = HlpFileLog;          HelpId = HlpFileLog;
418            /* 2007.05.24 Gentaro */
419            eLineEnd = Line_LineHead;
420    
421          if (ts.Append > 0)          if (ts.Append > 0)
422          {          {
423                  LogVar->FileHandle = _lopen(LogVar->FullName,OF_WRITE);                  LogVar->FileHandle = _lopen(LogVar->FullName,OF_WRITE);
424                  if (LogVar->FileHandle>0)                  if (LogVar->FileHandle>0){
425                          _llseek(LogVar->FileHandle,0,2);                          _llseek(LogVar->FileHandle,0,2);
426                            /* 2007.05.24 Gentaro
427                                    If log file already exists,
428                                    a newline is inserted before the first timestamp.
429                            */
430                            eLineEnd = Line_FileHead;
431                    }
432                  else                  else
433                          LogVar->FileHandle = _lcreat(LogVar->FullName,0);                          LogVar->FileHandle = _lcreat(LogVar->FullName,0);
434          }          }
# Line 453  void CommentLogToFile(char *buf, int siz Line 535  void CommentLogToFile(char *buf, int siz
535          DWORD wrote;          DWORD wrote;
536    
537          if (LogVar == NULL || !LogVar->FileOpen) {          if (LogVar == NULL || !LogVar->FileOpen) {
538  #ifdef I18N  #ifndef NO_I18N
539                  char uimsg[MAX_UIMSG];                  char uimsg[MAX_UIMSG];
540                  strcpy(uimsg, "ERROR");                  strcpy(uimsg, "ERROR");
541                  get_lang_msg("MSG_ERROR", uimsg, ts.UILanguageFile);                  get_lang_msg("MSG_ERROR", uimsg, ts.UILanguageFile);
# Line 469  void CommentLogToFile(char *buf, int siz Line 551  void CommentLogToFile(char *buf, int siz
551          logfile_lock();          logfile_lock();
552          WriteFile((HANDLE)LogVar->FileHandle, buf, size, &wrote, NULL);          WriteFile((HANDLE)LogVar->FileHandle, buf, size, &wrote, NULL);
553          WriteFile((HANDLE)LogVar->FileHandle, "\r\n", 2, &wrote, NULL); // 改行          WriteFile((HANDLE)LogVar->FileHandle, "\r\n", 2, &wrote, NULL); // 改行
554            /* Set Line End Flag
555                    2007.05.24 Gentaro
556            */
557            eLineEnd = Line_LineHead;
558          logfile_unlock();          logfile_unlock();
559  }  }
560    
# Line 506  void LogToFile() Line 592  void LogToFile()
592                  {                  {
593                          // 時刻を書き出す(2006.7.23 maya)                          // 時刻を書き出す(2006.7.23 maya)
594                          // 日付フォーマットを日本ではなく世界標準に変更した (2006.7.23 yutaka)                          // 日付フォーマットを日本ではなく世界標準に変更した (2006.7.23 yutaka)
595                          if (ts.LogTimestamp &&                          /* 2007.05.24 Gentaro */
596                                  (Start == 1 || Buf[Start-2] == 0x0a)) {                          if ( ts.LogTimestamp && eLineEnd ) {
597  #if 0  #if 0
598                                  SYSTEMTIME      LocalTime;                                  SYSTEMTIME      LocalTime;
599                                  GetLocalTime(&LocalTime);                                  GetLocalTime(&LocalTime);
# Line 522  void LogToFile() Line 608  void LogToFile()
608                                          time_t tick = time(NULL);                                          time_t tick = time(NULL);
609                                          char *strtime = ctime(&tick);                                          char *strtime = ctime(&tick);
610  #endif  #endif
611                                    /* 2007.05.24 Gentaro */
612                                  // write to file                                  if( eLineEnd == Line_FileHead ){
613                                  if (Start == 1 && ts.Append) {                                          _lwrite(LogVar->FileHandle,"\r\n",2);
                                         _lwrite(LogVar->FileHandle,"\r\n",strlen("\r\n"));  
614                                  }                                  }
615                                  _lwrite(LogVar->FileHandle,"[",1);                                  _lwrite(LogVar->FileHandle,"[",1);
616                                  // 変換した文字列の終端に \n が含まれているので取り除く。                                  // 変換した文字列の終端に \n が含まれているので取り除く。
617                                  _lwrite(LogVar->FileHandle, strtime, strlen(strtime) - 1);                                  _lwrite(LogVar->FileHandle, strtime, strlen(strtime) - 1);
618                                  _lwrite(LogVar->FileHandle,"] ",2);                                  _lwrite(LogVar->FileHandle,"] ",2);
619                          }                          }
620                            
621                            /* 2007.05.24 Gentaro */
622                            if( b == 0x0a ){
623                                    eLineEnd = Line_LineHead; /* set endmark*/
624                            }
625                            else {
626                                    eLineEnd = Line_Other; /* clear endmark*/
627                            }
628    
629                          _lwrite(LogVar->FileHandle,(PCHAR)&b,1);                          _lwrite(LogVar->FileHandle,(PCHAR)&b,1);
630                          (LogVar->ByteCount)++;                          (LogVar->ByteCount)++;
# Line 634  void FileSendStart() Line 727  void FileSendStart()
727    {    {
728      Option = MAKELONG(ts.TransBin,0);      Option = MAKELONG(ts.TransBin,0);
729          SendVar->FullName[0] = 0;          SendVar->FullName[0] = 0;
 #ifdef I18N  
         if (! (*GetTransFname)(SendVar, ts.FileDir, GTF_SEND, &Option, &ts))  
 #else  
730      if (! (*GetTransFname)(SendVar, ts.FileDir, GTF_SEND, &Option))      if (! (*GetTransFname)(SendVar, ts.FileDir, GTF_SEND, &Option))
 #endif  
731          {          {
732        FileTransEnd(OpSendFile);        FileTransEnd(OpSendFile);
733        return;        return;
# Line 646  void FileSendStart() Line 735  void FileSendStart()
735      ts.TransBin = LOWORD(Option);      ts.TransBin = LOWORD(Option);
736    }    }
737    else    else
 #ifdef I18N  
     (*SetFileVar)(FileVar, &ts);  
 #else  
738      (*SetFileVar)(SendVar);      (*SetFileVar)(SendVar);
 #endif  
739    
740    SendVar->FileHandle = _lopen(SendVar->FullName,OF_READ);    SendVar->FileHandle = _lopen(SendVar->FullName,OF_READ);
741    SendVar->FileOpen = (SendVar->FileHandle>0);    SendVar->FileOpen = (SendVar->FileHandle>0);
# Line 816  BOOL OpenProtoDlg(PFileVar fv, int IdPro Line 901  BOOL OpenProtoDlg(PFileVar fv, int IdPro
901  {  {
902    int vsize;    int vsize;
903    PProtoDlg pd;    PProtoDlg pd;
904  #ifdef I18N  #ifndef NO_I18N
905    HWND Hpd;    HWND Hpd;
906  #endif  #endif
907    
# Line 870  BOOL OpenProtoDlg(PFileVar fv, int IdPro Line 955  BOOL OpenProtoDlg(PFileVar fv, int IdPro
955      ProtoVar = NULL;      ProtoVar = NULL;
956      return FALSE;      return FALSE;
957    }    }
958  #ifdef I18N  #ifndef NO_I18N
959    pd->Create(fv,&ts);    pd->Create(fv,&ts);
960  #else  #else
961    pd->Create(fv);    pd->Create(fv);
962  #endif  #endif
963    
964  #ifdef I18N  #ifndef NO_I18N
965    Hpd=pd->GetSafeHwnd();    Hpd=pd->GetSafeHwnd();
966    
967    GetDlgItemText(Hpd, IDC_PROT_FILENAME, ts.UIMsg, sizeof(ts.UIMsg));    GetDlgItemText(Hpd, IDC_PROT_FILENAME, ts.UIMsg, sizeof(ts.UIMsg));
# Line 975  int ProtoDlgParse() Line 1060  int ProtoDlgParse()
1060    P = ActiveWin;    P = ActiveWin;
1061    if (PtDlg==NULL) return P;    if (PtDlg==NULL) return P;
1062    
 #ifdef I18N  
   if ((*ProtoParse)(ProtoId,FileVar,ProtoVar,&cv,&ts))  
 #else  
1063    if ((*ProtoParse)(ProtoId,FileVar,ProtoVar,&cv))    if ((*ProtoParse)(ProtoId,FileVar,ProtoVar,&cv))
 #endif  
1064      P = 0; /* continue */      P = 0; /* continue */
1065    else {    else {
1066      CommSend(&cv);      CommSend(&cv);
# Line 1018  void KermitStart(int mode) Line 1099  void KermitStart(int mode)
1099        FileVar->OpId = OpKmtSend;        FileVar->OpId = OpKmtSend;
1100        if (strlen(&(FileVar->FullName[FileVar->DirLen]))==0)        if (strlen(&(FileVar->FullName[FileVar->DirLen]))==0)
1101        {        {
 #ifdef I18N  
         if (! (*GetMultiFname)(FileVar,ts.FileDir,GMF_KERMIT,&w,&ts) ||  
 #else  
1102          if (! (*GetMultiFname)(FileVar,ts.FileDir,GMF_KERMIT,&w) ||          if (! (*GetMultiFname)(FileVar,ts.FileDir,GMF_KERMIT,&w) ||
 #endif  
1103              (FileVar->NumFname==0))              (FileVar->NumFname==0))
1104          {          {
1105            ProtoEnd();            ProtoEnd();
# Line 1030  void KermitStart(int mode) Line 1107  void KermitStart(int mode)
1107          }          }
1108        }        }
1109        else        else
 #ifdef I18N  
     (*SetFileVar)(FileVar, &ts);  
 #else  
1110          (*SetFileVar)(FileVar);          (*SetFileVar)(FileVar);
 #endif  
1111            break;            break;
1112      case IdKmtReceive:      case IdKmtReceive:
1113        FileVar->OpId = OpKmtRcv;        FileVar->OpId = OpKmtRcv;
# Line 1051  void KermitStart(int mode) Line 1124  void KermitStart(int mode)
1124          }          }
1125        }        }
1126        else        else
 #ifdef I18N  
     (*SetFileVar)(FileVar, &ts);  
 #else  
1127          (*SetFileVar)(FileVar);          (*SetFileVar)(FileVar);
 #endif  
1128            break;            break;
1129      case IdKmtFinish:      case IdKmtFinish:
1130        FileVar->OpId = OpKmtFin;        FileVar->OpId = OpKmtFin;
# Line 1089  void XMODEMStart(int mode) Line 1158  void XMODEMStart(int mode)
1158    if (strlen(&(FileVar->FullName[FileVar->DirLen]))==0)    if (strlen(&(FileVar->FullName[FileVar->DirLen]))==0)
1159    {    {
1160      Option = MAKELONG(ts.XmodemBin,ts.XmodemOpt);      Option = MAKELONG(ts.XmodemBin,ts.XmodemOpt);
 #ifdef I18N  
     if (! (*GetXFname)(FileVar->HMainWin,  
       mode==IdXReceive,&Option,FileVar,ts.FileDir,&ts))  
 #else  
1161      if (! (*GetXFname)(FileVar->HMainWin,      if (! (*GetXFname)(FileVar->HMainWin,
1162        mode==IdXReceive,&Option,FileVar,ts.FileDir))        mode==IdXReceive,&Option,FileVar,ts.FileDir))
 #endif  
1163      {      {
1164        ProtoEnd();        ProtoEnd();
1165        return;        return;
# Line 1104  void XMODEMStart(int mode) Line 1168  void XMODEMStart(int mode)
1168      ts.XmodemBin = LOWORD(Option);      ts.XmodemBin = LOWORD(Option);
1169    }    }
1170    else    else
 #ifdef I18N  
     (*SetFileVar)(FileVar, &ts);  
 #else  
1171      (*SetFileVar)(FileVar);      (*SetFileVar)(FileVar);
 #endif  
1172    
1173    if (mode==IdXReceive)    if (mode==IdXReceive)
1174      FileVar->FileHandle = _lcreat(FileVar->FullName,0);      FileVar->FileHandle = _lcreat(FileVar->FullName,0);
# Line 1145  void ZMODEMStart(int mode) Line 1205  void ZMODEMStart(int mode)
1205      FileVar->OpId = OpZSend;      FileVar->OpId = OpZSend;
1206      if (strlen(&(FileVar->FullName[FileVar->DirLen]))==0)      if (strlen(&(FileVar->FullName[FileVar->DirLen]))==0)
1207      {      {
 #ifdef I18N  
       if (! (*GetMultiFname)(FileVar,ts.FileDir,GMF_Z,&Opt,&ts) ||  
 #else  
1208        if (! (*GetMultiFname)(FileVar,ts.FileDir,GMF_Z,&Opt) ||        if (! (*GetMultiFname)(FileVar,ts.FileDir,GMF_Z,&Opt) ||
 #endif  
1209            (FileVar->NumFname==0))            (FileVar->NumFname==0))
1210        {        {
1211          ProtoEnd();          ProtoEnd();
# Line 1158  void ZMODEMStart(int mode) Line 1214  void ZMODEMStart(int mode)
1214        ts.XmodemBin = Opt;        ts.XmodemBin = Opt;
1215      }      }
1216      else      else
 #ifdef I18N  
       (*SetFileVar)(FileVar, &ts);  
 #else  
1217        (*SetFileVar)(FileVar);        (*SetFileVar)(FileVar);
 #endif  
1218    }    }
1219    else /* IdZReceive or IdZAuto */    else /* IdZReceive or IdZAuto */
1220      FileVar->OpId = OpZRcv;      FileVar->OpId = OpZRcv;
# Line 1189  void BPStart(int mode) Line 1241  void BPStart(int mode)
1241      if (strlen(&(FileVar->FullName[FileVar->DirLen]))==0)      if (strlen(&(FileVar->FullName[FileVar->DirLen]))==0)
1242      {      {
1243            FileVar->FullName[0] = 0;            FileVar->FullName[0] = 0;
 #ifdef I18N  
       if (! (*GetTransFname)(FileVar, ts.FileDir, GTF_BP, &Option, &ts))  
 #else  
1244        if (! (*GetTransFname)(FileVar, ts.FileDir, GTF_BP, &Option))        if (! (*GetTransFname)(FileVar, ts.FileDir, GTF_BP, &Option))
 #endif  
1245            {            {
1246          ProtoEnd();          ProtoEnd();
1247          return;          return;
1248        }        }
1249      }      }
1250      else      else
 #ifdef I18N  
       (*SetFileVar)(FileVar, &ts);  
 #else  
1251        (*SetFileVar)(FileVar);        (*SetFileVar)(FileVar);
 #endif  
1252    }    }
1253    else /* IdBPReceive or IdBPAuto */    else /* IdBPReceive or IdBPAuto */
1254      FileVar->OpId = OpBPRcv;      FileVar->OpId = OpBPRcv;
# Line 1231  void QVStart(int mode) Line 1275  void QVStart(int mode)
1275      FileVar->OpId = OpQVSend;      FileVar->OpId = OpQVSend;
1276      if (strlen(&(FileVar->FullName[FileVar->DirLen]))==0)      if (strlen(&(FileVar->FullName[FileVar->DirLen]))==0)
1277      {      {
 #ifdef I18N  
       if (! (*GetMultiFname)(FileVar,ts.FileDir,GMF_QV, &W, &ts) ||  
 #else  
1278        if (! (*GetMultiFname)(FileVar,ts.FileDir,GMF_QV, &W) ||        if (! (*GetMultiFname)(FileVar,ts.FileDir,GMF_QV, &W) ||
 #endif  
1279            (FileVar->NumFname==0))            (FileVar->NumFname==0))
1280        {        {
1281          ProtoEnd();          ProtoEnd();
# Line 1243  void QVStart(int mode) Line 1283  void QVStart(int mode)
1283        }        }
1284      }      }
1285      else      else
 #ifdef I18N  
       (*SetFileVar)(FileVar, &ts);  
 #else  
1286        (*SetFileVar)(FileVar);        (*SetFileVar)(FileVar);
 #endif  
1287    }    }
1288    else    else
1289      FileVar->OpId = OpQVRcv;      FileVar->OpId = OpQVRcv;
# Line 1264  void QVStart(int mode) Line 1300  void QVStart(int mode)
1300    
1301  /*  /*
1302   * $Log$   * $Log$
1303     * Revision 1.15  2007/06/06 14:02:53  maya
1304     * プリプロセッサにより構造体が変わってしまうので、INET6 と I18N の #define を逆転させた。
1305     *
1306     * Revision 1.14  2007/05/31 14:39:05  maya
1307     * 接続時に自動的にログ採取を開始できるようにした。
1308     *
1309     * Revision 1.13  2007/05/30 16:04:27  maya
1310     * 標準のログ保存先を指定できるようにした。
1311     *
1312     * Revision 1.12  2007/05/25 09:56:05  yutakapon
1313     * タイムスタンプ付きログで1KBごとに不要な改行が入るバグを修正。
1314     *
1315     * Revision 1.11  2007/05/14 14:07:14  maya
1316     * バッファをクリアしていないので落ちる問題を修正した。
1317     *
1318     * Revision 1.10  2007/05/14 13:29:58  maya
1319     * ログファイル名中の &h を、接続中のホスト名に変換する機能を追加した。
1320     *
1321     * Revision 1.9  2007/01/21 16:18:35  maya
1322     * 表示メッセージの読み込み対応
1323     *
1324   * Revision 1.8  2007/01/04 15:11:44  maya   * Revision 1.8  2007/01/04 15:11:44  maya
1325   * 表示メッセージの読み込み対応   * 表示メッセージの読み込み対応
1326   *   *

Legend:
Removed from v.1.8  
changed lines
  Added in v.1.15

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26