I’m currently creating an installer using INNO and I’m no pascal expert. Is there any way to use a TList object from within Inno, all I get is an “Unknown Type” error on compile.
I’m currently creating an installer using INNO and I’m no pascal expert. Is there
Share
TListis not on the list of support classes. You can use an array or aTStringListinstead.If you really must have
TList, then I suppose you could download the Inno Setup source code and amend it so it also registersTListwith the scripting engine.