Set cfg = CreateObject("Scripting.Dictionary")
for i = 0 to ubound(ini_strings)
s = trim(ini_strings(i))
if mid(s, 1, 1) <> "#" and len(s) > 0 then
parts = split(s, "=", -1, 1)
if ubound(parts)+1 = 2 then
parts(0) = trim(parts(0))
parts(1) = trim(parts(1))
select case lcase(parts(0))
case "uncompressed""_postfix" cfg.item("uncompressed""_postfix") = parts(1)
case "f"
options = split(parts(1), "|", -1, 1)
if ubound(options)+1 = 2 then
ff.add trim(options(0)), trim(options(1))
end if
end select
end if
end if
next