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.
#3 Members - Reputation: 381
Posted 04 February 2013 - 03:02 AM
The executable is in the Debug folder, sorry I should have made that more clear.
"C spilled his beer all over C++'s shirt. Outraged, C++ shouted, "Good god, man! Have you no class?"
"Your mother is so fat that the recursive function that was used to calculate her mass created a stack overflow"
#4 Members - Reputation: 2142
Posted 04 February 2013 - 03:11 AM
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.
#5 Members - Reputation: 381
Posted 04 February 2013 - 03:16 AM
I have the DLL's in there.
"C spilled his beer all over C++'s shirt. Outraged, C++ shouted, "Good god, man! Have you no class?"
"Your mother is so fat that the recursive function that was used to calculate her mass created a stack overflow"
#7 Crossbones+ - Reputation: 515
Posted 04 February 2013 - 03:45 AM
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).
#8 Members - Reputation: 381
Posted 04 February 2013 - 06:43 PM
Now it says I need openAL32.dll. what is that about?
"C spilled his beer all over C++'s shirt. Outraged, C++ shouted, "Good god, man! Have you no class?"
"Your mother is so fat that the recursive function that was used to calculate her mass created a stack overflow"
#9 Crossbones+ - Reputation: 515
Posted 05 February 2013 - 02:16 AM
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...
#10 Members - Reputation: 381
Posted 06 February 2013 - 12:25 AM
Thank you it works now ![]()
"C spilled his beer all over C++'s shirt. Outraged, C++ shouted, "Good god, man! Have you no class?"
"Your mother is so fat that the recursive function that was used to calculate her mass created a stack overflow"






