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 3464 by doda, Wed Jun 10 14:22:14 2009 UTC revision 3466 by doda, Thu Jun 11 10:31:09 2009 UTC
# Line 1774  void CSSetAttr() Line 1774  void CSSetAttr()
1774          if (NParam < 3) Param[3] = 0;          if (NParam < 3) Param[3] = 0;
1775          DispMoveWindow(Param[2], Param[3]);          DispMoveWindow(Param[2], Param[3]);
1776          break;          break;
1777        case 4: // set window size by pixel        case 4: // set window size
1778          if (NParam < 2) Param[2] = 0;          if (NParam < 2) Param[2] = 0;
1779          if (NParam < 3) Param[3] = 0;          if (NParam < 3) Param[3] = 0;
1780          DispResizeWin(Param[3], Param[2]);          DispResizeWin(Param[3], Param[2]);
# Line 1801  void CSSetAttr() Line 1801  void CSSetAttr()
1801            DispShowWindow(WINDOW_MAXIMIZE);            DispShowWindow(WINDOW_MAXIMIZE);
1802          }          }
1803          break;          break;
1804          case 11: // Report window state
1805            if (Send8BitMode)
1806              _snprintf_s_l(Report, sizeof(Report), _TRUNCATE, "\233%dt", CLocale, DispWindowIconified()?2:1);
1807            else
1808              _snprintf_s_l(Report, sizeof(Report), _TRUNCATE, "\033[%dt", CLocale, DispWindowIconified()?2:1);
1809            CommBinaryOut(&cv,Report,strlen(Report));
1810            break;
1811        case 14: /* get window size??? */        case 14: /* get window size??? */
1812          /* this is not actual window size */          /* this is not actual window size */
1813          if (Send8BitMode)          if (Send8BitMode)

Legend:
Removed from v.3464  
changed lines
  Added in v.3466

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