Hello, I have been recently making a downloader that downloads a set of java files for an end user, one at a time, verifying the integrity of each file along the way, however I have run into a small problem.
The files (jars) run on linux, and as such I would LOVE for my downloader to be able to run under WINE in linux, however just one of my functions does not operate under wine, the one that uses inetgetsource(), I assume because by default WINE does not include this library.
I was wondering if either
1)There was a way to include the windows dll required to call this function in my script, and manually load it up inside my program, to enable the function to work.
or
2)There was an alternative method of getting the source of a webpage, that uses a different method, which may work under WINE(I can of course test the methods myself, if you are unsure).
I would really appreciate any help with this matter.
Thanks,
-Null