I'm developing a program to control resources MSN messenger. My based code is project IMHear, developed in language C.
I try send a message in the moment the user open a chat window or send a message to another user.
Expand|Select|Wrap|Line Numbers
- if ( (pf = fopen(filename, "a") ) != NULL ) {
- fprintf(pf, "%s friendlyname:%s send the following message\n", userhandler,
- friendlyname);
- fprintf(pf, "%s\n", msgbuf);
- fclose(pf);
- }
I was find in google, documentation and other places but... i not found nothing about this.
Marcos