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 2553 by doda, Sat Jul 5 13:21:42 2008 UTC revision 2554 by doda, Sat Jul 5 21:36:42 2008 UTC
# Line 39  Line 39 
39  #define NParamMax 16  #define NParamMax 16
40  #define IntCharMax 5  #define IntCharMax 5
41    
42    void CSQExchangeColor();
43    
44  /* character attribute */  /* character attribute */
45  static TCharAttr CharAttr;  static TCharAttr CharAttr;
46    
# Line 682  void ParseControl(BYTE b) Line 684  void ParseControl(BYTE b)
684        CommBinaryOut(&cv,&(ts.Answerback[0]),ts.AnswerbackLen);        CommBinaryOut(&cv,&(ts.Answerback[0]),ts.AnswerbackLen);
685        break;        break;
686      case BEL:      case BEL:
687        if (ts.Beep!=0)        switch (ts.Beep) {
688          MessageBeep(0);        case IdBeepOff:
689            /* nothing to do */
690            break;
691          case IdBeepOn:
692            MessageBeep(0);
693            break;
694          case IdBeepVisual:
695            CSQExchangeColor();
696            CSQExchangeColor();
697            break;
698          }
699        break;        break;
700      case BS: BackSpace(); break;      case BS: BackSpace(); break;
701      case HT: Tab(); break;      case HT: Tab(); break;
# Line 1812  void CSSetAttr() Line 1824  void CSSetAttr()
1824        BGInitialize();        BGInitialize();
1825  #endif  #endif
1826        DispChangeBackground();        DispChangeBackground();
1827          UpdateWindow(HVTWin);
1828      }      }
1829    
1830      void CSQ_h_Mode()      void CSQ_h_Mode()

Legend:
Removed from v.2553  
changed lines
  Added in v.2554

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