Develop and Download Open Source Software

Browse Subversion Repository

Diff of /trunk/teraterm/teraterm/vtterm.c

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

revision 8822 by zmatsuo, Thu Jul 2 15:41:37 2020 UTC revision 8860 by zmatsuo, Sat Jul 25 16:00:24 2020 UTC
# Line 57  Line 57 
57  #include "clipboar.h"  #include "clipboar.h"
58  #include "codeconv.h"  #include "codeconv.h"
59  #include "unicode.h"  #include "unicode.h"
60    #include "ttdde.h"
61    
62  #include "vtterm.h"  #include "vtterm.h"
63    
# Line 454  void MoveToMainScreen() Line 455  void MoveToMainScreen()
455  static void Log1Byte(BYTE b)  static void Log1Byte(BYTE b)
456  {  {
457          LogPut1(b);          LogPut1(b);
458            DDEPut1(b);
459  }  }
460    
461  static void Log1UTF32(vtterm_work_t *vtterm, unsigned int u32)  static void Log1UTF32(vtterm_work_t *vtterm, unsigned int u32)
# Line 6381  int VTParse() Line 6383  int VTParse()
6383          BYTE b;          BYTE b;
6384          int c;          int c;
6385    
6386            if (DDELog && DDEGetCount() >= InBuffSize - 10) {
6387                    /* バッファに余裕がない場合 */
6388                    Sleep(1);
6389                    return 0;
6390            }
6391    
6392          c = CommRead1Byte(&cv,&b);          c = CommRead1Byte(&cv,&b);
6393    
6394          if (c==0) return 0;          if (c==0) return 0;

Legend:
Removed from v.8822  
changed lines
  Added in v.8860

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