I have the following code:
#include "s3e.h"
int main()
{
// Wait for a quit request from the host OS
while (!s3eDeviceCheckQuitRequest()
&& !(s3eKeyboardGetState(s3eKeyEsc) & S3E_KEY_STATE_DOWN)
&& !(s3eKeyboardGetState(s3eKeyAbsBSK) & S3E_KEY_STATE_DOWN)
&& !(s3eKeyboardGetState(s3eKeyBack) & S3E_KEY_STATE_DOWN))
{
...
}
return 0;
}
the problem is, when i press the back button on the WP8 device, the app does not close and I dont know why. Ans tipps?