Hi

I have created a very basic non unicode client server application.
server is dialog based mfc app.
client is sdi mfc app.

client & server are asynchronous in nature credits to WSAAsyncSelect() function.

This application is very basic.
server creates a socket, binds itself, sets itself to asynchronous mode & waits for clients to connect.
when client connects server gets the notification message of FD_ACCEPT which it accepts.


Now i tried to create a unicode application, used the same code only with few changes such as TCHAR's instead of chars.
but in this case the server receives no notification of FD_ACCEPT .

Why is this happening?

waiting for suggestions

Best Regards
dp_76