Put all your files into a single folder and call DllPackFiles(), for eg:
DllPackFiles( "C:\Program Files\AutoHotkey\", "AHKFiles.DLL", "Files" )
That is it.. you may open and inspect AHKFiles.DLL in a resource editor tool such as ResHacker
To use the above created DLL in your scripts, you need DllRead() which is similar and simpler like IniRead command.
For example, to load license.txt into a variable, call DllRead() like:
DllRead( Var, "AHKFiles.dll", "Files", "license.txt" )
|
|
|