I try to write a program which be warn when a SMS arrive.
Here my code :
PINDSMSRECEIVED pSmsReceived = NULL;
while (pSmsReceived == NULL) {
_tprintf(TEXT("Waiting");
}
_tprintf(TEXT("Sms is here");
But this is an infinite loop, even the SMS is here.
Can you help me ? Thanks.