The sites for 2 of the libraries for Exodus have dropped off the web, libtiff and zlib, but they are still available via the Way Back Machine:
libtiff - https://web.archive.org/web/20170422022 ... -4.0.3.zip
zlib - https://web.archive.org/web/20160312092 ... lib128.zip
However I'm having real issues getting the system to run and I think it might be related to the Windows SDK. Does anyone know what version we are meant to use from here: https://msdn.microsoft.com/en-us/micros ... -msdn.aspx
When I go through with the debugger I can see it is calling DialogBox from WinUser.h which is coming from C:\Program Files (x86)\Windows Kits\8.1\Include\um but I'm wondering if this is the correct version or if it should be an earlier one? Trying to switch it for 7.1 but it isn't as easy as just switching the environment variable sadly.
The specific issue I am having, should anyone want to help with that is at line 978 the following call returns 0 when it needs to return 1 to indicate success (I haven't been able to tell yet what is actually failing):
Code: Select all
INT_PTR dialogBoxReturn = DialogBox(hInstance, lpTemplate, hWndParent, lpDialogFunc);