From 54abd7eb68a80473c190dc38808a95dff5ab5cc3 Mon Sep 17 00:00:00 2001 From: Alan C Francis Date: Mon, 1 Jan 2024 00:14:30 +0000 Subject: [PATCH] Array, not StringArray in the public header --- configfile.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configfile.h b/configfile.h index efc2b56..265bc4a 100644 --- a/configfile.h +++ b/configfile.h @@ -8,7 +8,7 @@ typedef APTR CONFIGFILEPTR; CONFIGFILEPTR ConfigFileRead(CONST_STRPTR filename); VOID ConfigFileFree(CONFIGFILEPTR configFile); -StringArray ConfigFileGetAll(CONFIGFILEPTR abstractConfigFile, CONST_STRPTR compoundKey); +Array ConfigFileGetAll(CONFIGFILEPTR abstractConfigFile, CONST_STRPTR compoundKey); STRPTR ConfigFileGet(CONFIGFILEPTR abstractConfigFile, CONST_STRPTR compoundKey); BOOL ConfigFileSet(CONFIGFILEPTR abstractConfigFile, CONST_STRPTR compoundKey, CONST_STRPTR stringValue);