Welcome, Guest. Please login or register. Did you miss your activation email?

Author Topic: FatalExecutionEngineError: Releasing a Handle  (Read 2969 times)

0 Members and 1 Guest are viewing this topic.

Kwang1imsa

  • Newbie
  • *
  • Posts: 26
    • MSN Messenger - kwang1imsa@gmail.com
    • View Profile
FatalExecutionEngineError: Releasing a Handle
« on: July 14, 2011, 04:59:47 am »
So I have 2 windows, a window from OGRE3D and another from SFML.  I pass OGRE's window handle to SFML's and then proceed in my main application loop to pump messages through OGRE's window:

Code: [Select]

IntPtr hwnd;
OGREWin.GetCustomAttribute("WINDOW", out hwnd);
pl.Insert("WINDOW", hwnd.ToString());
SFMLWin = new SFML.Graphics.RenderWindow(hwnd); //hwnd is a pointer to OGREWin's handle
while (!OGREWin.IsClosed)
            {
                    WindowEventUtilities.MessagePump();
            }


Here is my problem, when I close OGRE's window, the method in my main application loop yells "FatalExecutionEngineError".  Is there a way to release SFMLWin's grasp on OGREWin's handle before this happens?[/code]

Laurent

  • Administrator
  • Hero Member
  • *****
  • Posts: 32498
    • View Profile
    • SFML's website
    • Email
FatalExecutionEngineError: Releasing a Handle
« Reply #1 on: July 14, 2011, 10:11:05 am »
Quote
Is there a way to release SFMLWin's grasp on OGREWin's handle before this happens?

window.Close() maybe ?
Laurent Gomila - SFML developer

Kwang1imsa

  • Newbie
  • *
  • Posts: 26
    • MSN Messenger - kwang1imsa@gmail.com
    • View Profile
FatalExecutionEngineError: Releasing a Handle
« Reply #2 on: July 14, 2011, 07:26:09 pm »
yes. did not work.

 

anything