variable renames
This commit is contained in:
parent
4f8d2b0eab
commit
3a44f1a4c1
|
@ -518,13 +518,13 @@ Type
|
||||||
(* following records do not need to be used, but provide one way of *)
|
(* following records do not need to be used, but provide one way of *)
|
||||||
(* reading a menu into a record. *)
|
(* reading a menu into a record. *)
|
||||||
|
|
||||||
MenuRec = Record
|
RecMenuFlags = Record
|
||||||
Header : String[255];
|
Header : String[255];
|
||||||
Prompt : String[255];
|
Prompt : String[255];
|
||||||
DispCols : Byte;
|
DispCols : Byte;
|
||||||
ACS : String[30];
|
Access : String[30];
|
||||||
Password : String[15];
|
Password : String[15];
|
||||||
TextFile : String[20];
|
DispFile : String[20];
|
||||||
FallBack : String[20];
|
FallBack : String[20];
|
||||||
MenuType : Byte; { 0 = standard, 1 = lightbar, 2 = lightbar grid }
|
MenuType : Byte; { 0 = standard, 1 = lightbar, 2 = lightbar grid }
|
||||||
InputType : Byte; { 0 = user setting, 1 = longkey, 2 = hotkey }
|
InputType : Byte; { 0 = user setting, 1 = longkey, 2 = hotkey }
|
||||||
|
@ -533,11 +533,14 @@ Type
|
||||||
Global : Byte; { 0 = no, 1 = yes }
|
Global : Byte; { 0 = no, 1 = yes }
|
||||||
End;
|
End;
|
||||||
|
|
||||||
MenuCmdRec = Record
|
PtrMenuCommand = ^RecMenuCommand;
|
||||||
|
RecMenuCommand = Record
|
||||||
Text : String[79];
|
Text : String[79];
|
||||||
|
TextLo : String[79];
|
||||||
|
TextHi : String[79];
|
||||||
HotKey : String[8];
|
HotKey : String[8];
|
||||||
LongKey : String[8];
|
LongKey : String[8];
|
||||||
ACS : string[30];
|
Access : string[30];
|
||||||
Command : String[2];
|
Command : String[2];
|
||||||
Data : String[79];
|
Data : String[79];
|
||||||
X : Byte;
|
X : Byte;
|
||||||
|
@ -546,8 +549,6 @@ Type
|
||||||
cDown : Byte;
|
cDown : Byte;
|
||||||
cLeft : Byte;
|
cLeft : Byte;
|
||||||
cRight : Byte;
|
cRight : Byte;
|
||||||
LText : String[79];
|
|
||||||
LHText : String[79];
|
|
||||||
End;
|
End;
|
||||||
|
|
||||||
RecPercent = Record
|
RecPercent = Record
|
||||||
|
|
Loading…
Reference in New Issue