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

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - j70141

Pages: [1]
1
General / Recompile SFML issue
« on: March 27, 2008, 07:14:56 pm »
When I run the SFML.sln file and rebuild it, I get the following warnings:

Quote
Warning   1   warning C4201: nonstandard extension used : nameless struct/union   c:\program files\microsoft sdks\windows\v6.0a\include\mmsystem.h   1840   sfml-window
Warning   2   warning C4201: nonstandard extension used : nameless struct/union   c:\program files\microsoft sdks\windows\v6.0a\include\mmsystem.h   1844   sfml-window
Warning   3   warning C4201: nonstandard extension used : nameless struct/union   c:\program files\microsoft sdks\windows\v6.0a\include\mmsystem.h   1865   sfml-window
Warning   4   warning C4201: nonstandard extension used : nameless struct/union   c:\program files\microsoft sdks\windows\v6.0a\include\mmsystem.h   1869   sfml-window
Warning   5   warning LNK4098: defaultlib 'LIBCMT' conflicts with use of other libs; use /NODEFAULTLIB:library   sfml-graphics   sfml-graphics


In the end, I do not get a brand new recompiled sfml-system.dll file, though it appears that it recompiles all the other .dll files.

2
General / Initial Installation Issue - (0xc0150002)
« on: March 27, 2008, 05:25:19 pm »
Have installed SFML for Visual Studio 2008 as shown in the instructions.

Put the following program for installation:

Code: [Select]
#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:

Quote
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:

Quote
"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.

Pages: [1]