mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-06-12 05:33:15 +00:00
added dummy np* modules and screenshot module
This commit is contained in:
parent
150854c583
commit
e4d43f8e07
12 changed files with 5375 additions and 0 deletions
30
src/core/libraries/screenshot/screenshot.h
Normal file
30
src/core/libraries/screenshot/screenshot.h
Normal file
|
@ -0,0 +1,30 @@
|
|||
// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "common/types.h"
|
||||
|
||||
namespace Core::Loader {
|
||||
class SymbolsResolver;
|
||||
}
|
||||
|
||||
namespace Libraries::ScreenShot {
|
||||
|
||||
int PS4_SYSV_ABI _Z5dummyv();
|
||||
int PS4_SYSV_ABI sceScreenShotCapture();
|
||||
int PS4_SYSV_ABI sceScreenShotDisable();
|
||||
int PS4_SYSV_ABI sceScreenShotDisableNotification();
|
||||
int PS4_SYSV_ABI sceScreenShotEnable();
|
||||
int PS4_SYSV_ABI sceScreenShotEnableNotification();
|
||||
int PS4_SYSV_ABI sceScreenShotGetAppInfo();
|
||||
int PS4_SYSV_ABI sceScreenShotGetDrcParam();
|
||||
int PS4_SYSV_ABI sceScreenShotIsDisabled();
|
||||
int PS4_SYSV_ABI sceScreenShotIsVshScreenCaptureDisabled();
|
||||
int PS4_SYSV_ABI sceScreenShotSetOverlayImage();
|
||||
int PS4_SYSV_ABI sceScreenShotSetOverlayImageWithOrigin();
|
||||
int PS4_SYSV_ABI sceScreenShotSetParam();
|
||||
int PS4_SYSV_ABI sceScreenShotSetDrcParam();
|
||||
|
||||
void RegisterlibSceScreenShot(Core::Loader::SymbolsResolver* sym);
|
||||
} // namespace Libraries::ScreenShot
|
Loading…
Add table
Add a link
Reference in a new issue