Cocos2d-x 3.2 for wp8-xaml app store API error when submitting application (CreateEventExA not available) work und
After a game is finally completed, an error message such as "CreateEventExA is not supported by the local API" is displayed in the store.
So I searched for CreateEventExA in the entire solution and found no, but found CreateEventEx in Audio. h:
StreamingVoiceContext (): hBufferEndEvent (CreateEventEx (NULL, FALSE, FALSE, NULL )){}
At first, due to laziness, I commented out these items directly and found that there was a crash during the operation.
Then I checked CreateEventEx and found that it is only a define value:
Vcv8tcs2qnllo6zkx9tapc9wpgo8cd5zew5jafwas5ozss8/tbqtcsjuw.vcd4kpha + pgltzybzcm9 "" alt = "\">
It is clear here that I directly try to replace CreateEventEx with CreateEventExW in Audio. h:
StreamingVoiceContext (): hBufferEndEvent (CreateEventExW (NULL, FALSE, FALSE, NULL )){}
The game is running successfully.
Then I submitted it to the store and found that there was no error !!
Complete.
PS: Online cocos2d-x 3.2 of the information is very little, on wp8 is less, it is too painful ....