the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 34 lines 581 B view raw
1#include "stdafx.h" 2#include "SonyHttp.h" 3 4 5#ifdef __PS3__ 6#include "PS3\Network\SonyHttp_PS3.h" 7SonyHttp_PS3 g_SonyHttp; 8 9#elif defined __ORBIS__ 10#include "Orbis\Network\SonyHttp_Orbis.h" 11SonyHttp_Orbis g_SonyHttp; 12 13#elif defined __PSVITA__ 14#include "PSVita\Network\SonyHttp_Vita.h" 15SonyHttp_Vita g_SonyHttp; 16 17#endif 18 19 20 21bool SonyHttp::init() 22{ 23 return g_SonyHttp.init(); 24} 25 26void SonyHttp::shutdown() 27{ 28 g_SonyHttp.shutdown(); 29} 30 31bool SonyHttp::getDataFromURL(const char* szURL, void** ppOutData, int* pDataSize) 32{ 33 return g_SonyHttp.getDataFromURL(szURL, ppOutData, pDataSize); 34}