定义的参数
SOCKET s;
unsigned char testbuf[0x10000];
unsigned char buf[1000];    send(s,testbuf,len,0);
    recv(s,buf,1000,0);VC6.0下提示
error C2664: 'send' : cannot convert parameter 2 from 'unsigned char [65536]' to 'const char *'
        Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast
error C2664: 'recv' : cannot convert parameter 2 from 'unsigned char [1000]' to 'char *'
        Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast