Files

35 lines
927 B
C++

#include "network/CCNetwork.h"
NS_CC_EXTRA_BEGIN
HTTPRequest* Network::createHTTPRequest(HTTPRequestDelegate* delegate,
const char* url,
int method)
{
#if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID || CC_USE_CURL)
HTTPRequest* request = HTTPRequest::createWithUrl(delegate, url, method);
request->start();
return request;
#else
return nullptr;
#endif
}
#if CC_LUA_ENGINE_ENABLED > 0
HTTPRequest* Network::createHTTPRequestLua(LUA_FUNCTION listener,
const char* url,
int method)
{
#if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID || CC_USE_CURL)
HTTPRequest* request = HTTPRequest::createWithUrlLua(listener, url, method);
request->start();
return request;
#else
return nullptr;
#endif
}
#endif
NS_CC_EXTRA_END