mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-03 01:09:40 +01:00
parent
05e0d44697
commit
7753417631
@ -82,8 +82,8 @@ type
|
||||
procedure OpenKey(const aPath: UnicodeString; AllowCreate : Boolean);
|
||||
procedure CloseKey;
|
||||
procedure ResetKey;
|
||||
Procedure EnumSubKeys(Const APath : String; List : TStrings);
|
||||
Procedure EnumValues(Const APath : String; List : TStrings);
|
||||
Procedure EnumSubKeys(Const APath : UnicodeString; List : TStrings);
|
||||
Procedure EnumValues(Const APath : UnicodeString; List : TStrings);
|
||||
|
||||
function GetValue(const APath: UnicodeString; const ADefault: UnicodeString): UnicodeString; overload;
|
||||
function GetValue(const APath: UnicodeString; ADefault: Integer): Integer; overload;
|
||||
@ -666,7 +666,7 @@ begin
|
||||
FKey:=FJSON;
|
||||
end;
|
||||
|
||||
procedure TJSONConfig.EnumSubKeys(const APath: String; List: TStrings);
|
||||
procedure TJSONConfig.EnumSubKeys(const APath: UnicodeString; List: TStrings);
|
||||
|
||||
Var
|
||||
AKey : TJSONObject;
|
||||
@ -682,7 +682,7 @@ begin
|
||||
end;
|
||||
end;
|
||||
|
||||
procedure TJSONConfig.EnumValues(const APath: String; List: TStrings);
|
||||
procedure TJSONConfig.EnumValues(const APath: UnicodeString; List: TStrings);
|
||||
|
||||
Var
|
||||
AKey : TJSONObject;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user