C
cppBeginnnnnner
Guest
The send and recv only support char* data type, does Winsock have other functions to support UNICODE ?
int WSAAPI send(
SOCKET s,
const char *buf,
int len,
int flags
);
send function (winsock2.h)
int WSAAPI recv(
SOCKET s,
char *buf,
int len,
int flags
);
recv function (winsock2.h)
Continue reading...
int WSAAPI send(
SOCKET s,
const char *buf,
int len,
int flags
);
send function (winsock2.h)
int WSAAPI recv(
SOCKET s,
char *buf,
int len,
int flags
);
recv function (winsock2.h)
Continue reading...