Code: Select all
[DllImport("Irrlicht.dll", EntryPoint = "createDeviceEx")]
static extern IntPtr Irrlicht_CreateDevice(ScreenCreationParameters Parameters);
Basically it's saying that the 'Irrlicht.dll' can not be found. This is strange as the DLL is in the folder with the compiled assembly from my .NET project. Has anyone ever run across this before when using Irrlicht native with C#?System.DllNotFoundException was unhandled
Message="Unable to load DLL 'Irrlicht.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E)"
Thanks.