我正在尝试创建一个 RPC 服务器和客户端程序。我正在使用本教程http://www.codeproject.com/Articles/4878/Introduction-to-RPC-Part-2
我完全复制了网站上的代码,但是当我尝试运行它时出现此错误:
错误 1 错误 C2664:“RpcServerUseProtseqEpW”:无法将参数 1 从“char *”转换为“RPC_WSTR”
问题在这里:
status = RpcServerUseProtseqEp(
reinterpret_cast<unsigned char*>("ncacn_ip_tcp"), // Use TCP/IP protocol.
RPC_C_PROTSEQ_MAX_REQS_DEFAULT, // Backlog queue length for TCP/IP.
reinterpret_cast<unsigned char*>("4747"), // TCP/IP port to use.
NULL); // No security.