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

Author Topic: Visual Studio 2010 errors  (Read 1971 times)

0 Members and 1 Guest are viewing this topic.

StormWingDelta

  • Sr. Member
  • ****
  • Posts: 365
    • View Profile
Visual Studio 2010 errors
« on: February 04, 2012, 03:35:13 am »
I have about had it trying to get 2.0 up and running for anything at this point.
I keep getting errors no matter what I do.

Here's my current issue.
Code: [Select]

'SFML2Tester.exe': Loaded 'C:\Documents and Settings\Roland.USER-6FEF0AE329\My Documents\Visual Studio 2010\Projects\SFML2Tester\Debug\SFML2Tester.exe', Symbols loaded.
'SFML2Tester.exe': Loaded 'C:\WINDOWS\system32\ntdll.dll', Cannot find or open the PDB file
'SFML2Tester.exe': Loaded 'C:\WINDOWS\system32\kernel32.dll', Cannot find or open the PDB file
'SFML2Tester.exe': Loaded 'C:\Documents and Settings\Roland.USER-6FEF0AE329\My Documents\Visual Studio 2010\Projects\SFML2Tester\SFML2Tester\sfml-graphics-d-2.dll', Symbols loaded.
SXS: RtlCreateActivationContext() failed 0xc000000d
LDR: LdrpWalkImportDescriptor() failed to probe c:\documents and settings\roland.user-6fef0ae329\my documents\visual studio 2010\Projects\SFML2Tester\SFML2Tester\sfml-graphics-d-2.dll for its manifest, ntstatus 0xc000000d
Debugger:: An unhandled non-continuable exception was thrown during process load
The program '[260] SFML2Tester.exe: Native' has exited with code -1073741811 (0xc000000d).



Here's the Code.
Code: [Select]

// SFML2Tester.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include <SFML\Graphics.hpp>
#include <SFML\Window.hpp>

int main()
{
sf::RenderWindow Window(sf::VideoMode(800, 600, 32), "SFML Sample Application");

while (Window.IsOpen())
{
sf::Event Event;
while (Window.PollEvent(Event))
{
switch (Event.Type)
{
case sf::Event::Closed:
Window.Close();
break;
default:
break;
}
}

Window.Clear(sf::Color(0, 255, 255));
Window.Display();
}

return 0;
}
I have many ideas but need the help of others to find way to make use of them.