| 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); |
| 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 |
|
|