From 2c611ec0ba44aec512e9d294a5c74ac89a4f4bcd Mon Sep 17 00:00:00 2001 From: Talkashie Date: Sun, 13 Aug 2017 01:46:23 -0500 Subject: [PATCH] Update cellHttp.cpp --- rpcs3/Emu/Cell/Modules/cellHttp.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/rpcs3/Emu/Cell/Modules/cellHttp.cpp b/rpcs3/Emu/Cell/Modules/cellHttp.cpp index 6db2ebc0aa..36ce3fc89b 100644 --- a/rpcs3/Emu/Cell/Modules/cellHttp.cpp +++ b/rpcs3/Emu/Cell/Modules/cellHttp.cpp @@ -65,6 +65,12 @@ s32 cellHttpSetProxy() return CELL_OK; } +s32 cellHttpGetCookie() +{ + UNIMPLEMENTED_FUNC(cellHttp); + return CELL_OK; +} + s32 cellHttpGetProxy() { UNIMPLEMENTED_FUNC(cellHttp); @@ -701,6 +707,7 @@ DECLARE(ppu_module_manager::cellHttp)("cellHttp", []() REG_FUNC(cellHttp, cellHttpsInit); REG_FUNC(cellHttp, cellHttpsEnd); REG_FUNC(cellHttp, cellHttpSetProxy); + REG_FUNC(cellHttp, cellHttpGetCookie); REG_FUNC(cellHttp, cellHttpGetProxy); REG_FUNC(cellHttp, cellHttpInitCookie);