Hi
Recently I was told where the original Dark AI source was (Thanks Raven) and now I want to run DarkAI in my compiler which in order to do so I have converted DarkEXE.exe (DarkBasic) into a lib file (DarkEXE.lib) so I don't have 50 header files when compiling Dark AI however I'm still getting errors despite linking the DarkExe.lib what could I be doing wrong? Your help is greatly appreciated as I want to run Dark AI nearly by itself and have DarkBasic as a library so it can run.
Original Dark AI Code:
Link: https://github.com/TheGameCreators/GameGuruRepo/tree/master/GameGuru%20Core/Dark%20Basic%20Public%20Shared/Dark%20Basic%20Pro%20SDK/DarkSDKMore/DarkAI
In the original file set has DPRO function and DBO Data headers which usually generate DarkBasic.exe which is why I converted the DarkEXE.exe to a lib file to save time compiling.
Here's the code I have to link my DarkEXE.lib
#pragma comment ( lib, "DarkEXE.lib" )
//#pragma comment ( lib, "OLE32.lib" )
//#pragma comment ( lib, "USER32.lib" )
//#pragma comment ( lib, "VERSION.lib" )
//#pragma comment ( lib, "OLEAUT32.LIB" )
Note: I have already tried going to project settings and going to linker > input and adding the DarkEXE.lib which usually doesn't work. Also the full source is below if needed although it's pretty close to the main Dark AI files