Need window handle
Posted: Sat Nov 17, 2007 3:06 pm
I am using Irrlicht.NET and I need the window handle of the window that Irrlicht uses as an IntPtr, and I don't know how to get it. Thanks in advance for any help, Nazgul42.
Official forum of the Irrlicht Engine
https://irrlicht.sourceforge.io/forum/
Code: Select all
MyData->InternalData = Root->Driver->getExposedVideoData(); // colecta de info xP
switch(Driver){
case EDT_OPENGL:
MyData->hwnd = reinterpret_cast<HWND>(MyData->InternalData.OpenGLWin32.HWnd);
break;
case EDT_DIRECT3D8:
MyData->hwnd = reinterpret_cast<HWND>(MyData->InternalData.D3D8.HWnd);
break;
case EDT_DIRECT3D9:
MyData->hwnd = reinterpret_cast<HWND>(MyData->InternalData.D3D9.HWnd);
break;
default: // umhh, algun renderere por software?
MyData->hwnd = 0;
break;
}
Code: Select all
SExposedVideoData InternalData;