Skip to main content
GameDev.net gamedev.net
🔒 Locked

dll error, I think

Started by Crusable77 Feb 4, 2013 at 8:38 AM 8 replies 1.9k views
Original Post
Crusable77
Crusable77

Hello, I just added audio to my pong clone but then I get this error during run time "The application was unable to start correctly(0xc0150002). Click OK to close the application". I googled this and it seems there is a problem with the dlls, however I put the sfml-audio-d.dll in both the debug folder and the folder with the source code. I checked, and I am correctly linking all the files. I am using VS2012 express on widows 7. Thank you in advance for your help.

ultramailman
ultramailman
I have no experience with VS, but I think the dll should be in the same folder as the game executable. Is it? If not, might be good to give it a try.
Crusable77
Crusable77

The executable is in the Debug folder, sorry I should have made that more clear.

Endurion
Endurion

I'm not sure if this still applies with VS 2012, but in older version during a run from the IDE the working directory was the project folder, not the Debug or Release sub folder.

Try putting the dll there.

Fruny: Ftagn! Ia! Ia! std::time_put_byname! Mglui naflftagn std::codecvt eY'ha-nthlei!,char,mbstate_t>
Crusable77
Crusable77

I have the DLL's in there.

Piotr Podsiad?y
Piotr Podsiad?y

Try checking your application with Dependency Walker, it shows which DLLs are missing.

Yourself
Yourself

The error you are getting is this one :


//
// MessageId: STATUS_SXS_CANT_GEN_ACTCTX
//
// MessageText:
//
// Windows was not able to process the application binding information.
// Please refer to your System Event Log for further information.
//
#define STATUS_SXS_CANT_GEN_ACTCTX ((NTSTATUS)0xC0150002L)

Basically, it says that the dll you are using is build using a different compiler or configuration (CRT most often) and so it is not compatible with your application.

You should rebuild the library using VS2012 with the same settings as your application (or find a matching binary build online).

Crusable77
Crusable77

Now it says I need openAL32.dll. what is that about?

Yourself
Yourself

Now it says I need openAL32.dll. what is that about?

What is your definition of 'Now' ? after you rebuild the sfml library ?

SFML audio is built on top of the OpenAL library so you need that as well.

It seems though that the dll you need is inside the download package (in the extlibs/bin folder), but again, it is likely that you have to rebuild that as well...

Crusable77
Crusable77

Thank you it works now :)

Topic Locked

This topic has been locked by a moderator. New replies are not allowed.

Sign in to reply to this topic.