Changes for QWK net config
This commit is contained in:
parent
42a4308816
commit
c853f6aafe
|
@ -29,7 +29,8 @@ Uses
|
|||
bbs_cfg_UserEdit,
|
||||
bbs_cfg_EchoMail,
|
||||
bbs_cfg_MenuEdit,
|
||||
bbs_cfg_Events;
|
||||
bbs_cfg_Events,
|
||||
bbs_Cfg_QwkNet;
|
||||
|
||||
Procedure Configuration_ExecuteEditor (Mode: Char);
|
||||
Var
|
||||
|
@ -196,6 +197,7 @@ Begin
|
|||
'3' : Configuration_OptionalFields;
|
||||
'F' : Configuration_FileSettings;
|
||||
'M' : Configuration_MessageSettings;
|
||||
'Q' : Configuration_QwkNetworks(True);
|
||||
'O' : Configuration_QWKSettings;
|
||||
'1' : Configuration_NewUser1Settings;
|
||||
'2' : Configuration_NewUser2Settings;
|
||||
|
|
|
@ -131,6 +131,19 @@ Type
|
|||
Res : Array[1..341] of Byte;
|
||||
End;
|
||||
|
||||
RecQwkNetwork = Record
|
||||
Index : LongInt;
|
||||
Description : String[30];
|
||||
MemberType : Byte; // 0=HUB,1=Node
|
||||
PacketID : String[20];
|
||||
UseQWKE : Boolean;
|
||||
UsePassive : Boolean;
|
||||
HostName : String[60];
|
||||
Login : String[20];
|
||||
Password : String[20];
|
||||
Res : Array[1..80] of Byte;
|
||||
End;
|
||||
|
||||
RecSauceInfo = Packed Record
|
||||
Title : String[35];
|
||||
Author : String[20];
|
||||
|
|
Loading…
Reference in New Issue