Have installed SFML for Visual Studio 2008 as shown in the instructions.
Put the following program for installation:
#include "stdafx.h"
#include <SFML/System.hpp>
#include <iostream>
int _tmain(int argc, _TCHAR* argv[])
{
sf::Clock Clock;
while (Clock.GetElapsedTime() < 5.f)
{
std::cout << Clock.GetElapsedTime() << std::endl;
sf::Sleep(0.5f);
}
return 0;
}
Did the whole link thing listed in the instructions...
Received the following errors during running and compilation:
LDR: LdrpWalkImportDescriptor() failed to probe d:\Projects\SFML1\SFML1\sfml-system.dll for its manifest, ntstatus 0xc0150002
LDR: LdrpWalkImportDescriptor() failed to probe d:\Projects\SFML1\SFML1\sfml-system.dll for its manifest, ntstatus 0xc0150002
Debugger:: An unhandled non-continuable exception was thrown during process load
LDR: LdrpWalkImportDescriptor() failed to probe d:\Projects\SFML1\SFML1\sfml-system-d.dll for its manifest, ntstatus 0xc0150002
Debugger:: An unhandled non-continuable exception was thrown during process load
LDR: LdrpWalkImportDescriptor() failed to probe d:\Projects\SFML1\SFML1\sfml-system-d.dll for its manifest, ntstatus 0xc0150002
Debugger:: An unhandled non-continuable exception was thrown during process load
LDR: LdrpWalkImportDescriptor() failed to probe d:\Projects\SFML1\SFML1\sfml-system-d.dll for its manifest, ntstatus 0xc0150002
Debugger:: An unhandled non-continuable exception was thrown during process load
LDR: LdrpWalkImportDescriptor() failed to probe d:\Projects\SFML1\Debug\sfml-system-d.dll for its manifest, ntstatus 0xc0150002
Debugger:: An unhandled non-continuable exception was thrown during process load
LDR: LdrpWalkImportDescriptor() failed to probe d:\Projects\SFML1\Debug\sfml-system-d.dll for its manifest, ntstatus 0xc0150002
Debugger:: An unhandled non-continuable exception was thrown during process load
LDR: LdrpWalkImportDescriptor() failed to probe d:\Projects\SFML1\Debug\sfml-system-d.dll for its manifest, ntstatus 0xc0150002
Debugger:: An unhandled non-continuable exception was thrown during process load
LDR: LdrpWalkImportDescriptor() failed to probe d:\Projects\SFML1\Debug\sfml-system-d.dll for its manifest, ntstatus 0xc0150002
Debugger:: An unhandled non-continuable exception was thrown during process load
LDR: LdrpWalkImportDescriptor() failed to probe d:\Projects\SFML1\Debug\sfml-system-d.dll for its manifest, ntstatus 0xc0150002
Debugger:: An unhandled non-continuable exception was thrown during process load
LDR: LdrpWalkImportDescriptor() failed to probe d:\Projects\SFML1\Debug\sfml-system-d.dll for its manifest, ntstatus 0xc0150002
Debugger:: An unhandled non-continuable exception was thrown during process load
LDR: LdrpWalkImportDescriptor() failed to probe d:\Projects\SFML1\Debug\sfml-system-d.dll for its manifest, ntstatus 0xc0150002
Along with an error for running:
"The application failed to initialize properly (0xc0150002). Click on OK to terminate the application."
I get the same error when I used sfml-system.dll too.
First time using it... thank for any help.