*this error code is from the Vertices tutorial.
The Error:
Unhandled exception at 0x6604a92f in Vertices.exe: 0xC0000005: Access violation reading location 0x00f2b000.
The Location:
LRESULT WINAPI MsgProc( HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam )
{
switch( msg )
{
case WM_DESTROY:
Cleanup();
PostQuitMessage( 0 );
return 0;
}
return DefWindowProc( hWnd, msg, wParam, lParam );
The error appears at the end of this function . (green arrow in debugger....) -> }
What is happening I will try to update the SDK to December 2006 'cause this error began when i updaded the SDK to October 2006, the strange part is that the application that i created in C++ works normaly....well...not exactly normal....the Direct3DDevice9 parameters in the debugger are "leaked".
thanks
Key_46