error: 'memcpy_s' was not declared in this scope in gSOAP
error: 'memcpy_s' was not declared in this scope in gSOAP
我需要使用 gSOAP in c++. I used Getting Started 页面(在 "Example gSOAP client (C++)" 部分)为 wcf web 服务实现客户端代理,以生成客户端代理来测试我的 web 服务。当我想使用
构建项目时
c++ -o calcclient calcclient.cpp soapC.cpp soapcalcProxy.cpp stdsoap2.cpp
命令我得到以下错误:
似乎有一些标准库没有包含在stdsoap2.cpp
中。我使用 MinGW 作为编译器,我的 OS 是 Windows 8.
我需要使用 gSOAP in c++. I used Getting Started 页面(在 "Example gSOAP client (C++)" 部分)为 wcf web 服务实现客户端代理,以生成客户端代理来测试我的 web 服务。当我想使用
构建项目时c++ -o calcclient calcclient.cpp soapC.cpp soapcalcProxy.cpp stdsoap2.cpp
命令我得到以下错误:
似乎有一些标准库没有包含在stdsoap2.cpp
中。我使用 MinGW 作为编译器,我的 OS 是 Windows 8.