mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2026-06-10 19:54:59 -06:00
* sceHttpAddRequestHeader * added sceHttpRemoveRequestHeader * implemented a few more functions * added sceHttpSetProxy * cleanup * more cleanup * fix tests? * fix tests part2 * Added debug in SendRequest * improved debug * forgot * added real http connection path * fixes for wipeout * add custom redirect as it doesn't match the httplib one * more debug messages * clang is not my friend * argg * make kernelstub configurable * added url override * fixup * .. * stephen's reviews * more stephen reviews * http tests * fixed tests * fixed a single tests isssue * one more fix * argg
14 lines
280 B
C++
14 lines
280 B
C++
// SPDX-FileCopyrightText: Copyright 2026 shadPS4 Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include "common/types.h"
|
|
|
|
namespace Libraries::Kernel {
|
|
|
|
void TestSetSdkVersion(s32 ver);
|
|
void TestResetSdkVersion();
|
|
|
|
} // namespace Libraries::Kernel
|