Re: Watch me beat a dead horse. Super simple program...

2023-03-22 Thread Richard (Rikki) Andrew Cattermole via Digitalmars-d-learn
On 23/03/2023 12:28 PM, WhatMeWorry wrote: Yes! Thank you very much.  Downloaded the 2015 Microsoft Visual C++ Redistributables and it worked.  You mentioning "dependencies" in an earlier post, but didn't know how to proceed. Would it be worth while to update the bindbc-FreeImage documentation

Re: Watch me beat a dead horse. Super simple program...

2023-03-22 Thread WhatMeWorry via Digitalmars-d-learn
On Wednesday, 22 March 2023 at 21:08:23 UTC, Richard (Rikki) Andrew Cattermole wrote: I finally went ahead and looked at the dependencies of FreeImage3180. Try installing: https://www.microsoft.com/en-ca/download/details.aspx?id=48145 It requires VCOMP140.dll which comes with the 2015 VC re

Re: Watch me beat a dead horse. Super simple program...

2023-03-22 Thread Richard (Rikki) Andrew Cattermole via Digitalmars-d-learn
I finally went ahead and looked at the dependencies of FreeImage3180. Try installing: https://www.microsoft.com/en-ca/download/details.aspx?id=48145 It requires VCOMP140.dll which comes with the 2015 VC redistribution package. Found via: https://github.com/lucasg/Dependencies

Re: Watch me beat a dead horse. Super simple program...

2023-03-22 Thread ryuukk_ via Digitalmars-d-learn
On Wednesday, 22 March 2023 at 19:33:45 UTC, WhatMeWorry wrote: Ok, I've gotten rid of dub and dub packages code. Just LoadLibraryA. All eight dlls work except for FreeImage.dll. I've compiled with dmd and -m64 option and freshly download a x64 FreeImage. Any Window users out there that use Loa

Watch me beat a dead horse. Super simple program...

2023-03-22 Thread WhatMeWorry via Digitalmars-d-learn
Ok, I've gotten rid of dub and dub packages code. Just LoadLibraryA. All eight dlls work except for FreeImage.dll. I've compiled with dmd and -m64 option and freshly download a x64 FreeImage. Any Window users out there that use LoadLibraryA or FreeImage.dll? ``` import std.stdio: writeln; imp