Develop and Download Open Source Software

Browse Subversion Repository

Diff of /trunk/teraterm/ttpset/ttset.c

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

revision 5684 by maya, Sat Oct 11 01:16:12 2014 UTC revision 5694 by maya, Sun Nov 2 23:32:38 2014 UTC
# Line 1033  void FAR PASCAL ReadIniFile(PCHAR FName, Line 1033  void FAR PASCAL ReadIniFile(PCHAR FName,
1033          /* Send 8bit control sequence -- special option */          /* Send 8bit control sequence -- special option */
1034          ts->Send8BitCtrl = GetOnOff(Section, "Send8BitCtrl", FName, FALSE);          ts->Send8BitCtrl = GetOnOff(Section, "Send8BitCtrl", FName, FALSE);
1035    
1036            /* SendBreak time (in msec) -- special option */
1037            ts->SendBreakTime =
1038                    GetPrivateProfileInt(Section, "SendBreakTime", 1000, FName);
1039    
1040          /* Startup macro -- special option */          /* Startup macro -- special option */
1041          GetPrivateProfileString(Section, "StartupMacro", "",          GetPrivateProfileString(Section, "StartupMacro", "",
1042                                  ts->MacroFN, sizeof(ts->MacroFN), FName);                                  ts->MacroFN, sizeof(ts->MacroFN), FName);
# Line 2364  void FAR PASCAL WriteIniFile(PCHAR FName Line 2368  void FAR PASCAL WriteIniFile(PCHAR FName
2368          /* Send 8bit control sequence -- special option */          /* Send 8bit control sequence -- special option */
2369          WriteOnOff(Section, "Send8BitCtrl", FName, ts->Send8BitCtrl);          WriteOnOff(Section, "Send8BitCtrl", FName, ts->Send8BitCtrl);
2370    
2371            /* SendBreak time (in msec) -- special option */
2372            WriteInt(Section, "SendBreakTime", FName, ts->SendBreakTime);
2373    
2374          /* Startup macro -- special option */          /* Startup macro -- special option */
2375          WritePrivateProfileString(Section, "StartupMacro", ts->MacroFN, FName);          WritePrivateProfileString(Section, "StartupMacro", ts->MacroFN, FName);
2376    

Legend:
Removed from v.5684  
changed lines
  Added in v.5694

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