Petr Schreiber
19-04-2009, 18:28
After source release of ZLIB module, one thing to enhance SDK occured to me - module dependency declaration.
It would look as following in module code:
thinBasic_AddDependency <NameOfFile>
What is this good for?
When bundling EXE from script, ThinBasic can check which other files are needed to make module work.
In case of ZLIB module it would be external ZLIB.DLL:
thinBasic_AddDependency "ZLIB.DLL"
It would look as following in module code:
thinBasic_AddDependency <NameOfFile>
What is this good for?
When bundling EXE from script, ThinBasic can check which other files are needed to make module work.
In case of ZLIB module it would be external ZLIB.DLL:
thinBasic_AddDependency "ZLIB.DLL"