mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 16:28:49 +00:00
4d2c8e2a44
* Prepo: Fix SaveSystemReport IPC definitions * Follow original code * Fix args index in HipcGenerator * Addresses feedback * oops
20 lines
1,013 B
C#
20 lines
1,013 B
C#
using Ryujinx.Horizon.Common;
|
|
using Ryujinx.Horizon.Sdk.Account;
|
|
using Ryujinx.Horizon.Sdk.Sf;
|
|
using System;
|
|
|
|
namespace Ryujinx.Horizon.Sdk.Prepo
|
|
{
|
|
interface IPrepoService : IServiceObject
|
|
{
|
|
Result SaveReport(ReadOnlySpan<byte> gameRoomBuffer, ReadOnlySpan<byte> reportBuffer, ulong pid);
|
|
Result SaveReportWithUser(Uid userId, ReadOnlySpan<byte> gameRoomBuffer, ReadOnlySpan<byte> reportBuffer, ulong pid);
|
|
Result RequestImmediateTransmission();
|
|
Result GetTransmissionStatus(out int status);
|
|
Result GetSystemSessionId(out ulong systemSessionId);
|
|
Result SaveSystemReport(ReadOnlySpan<byte> gameRoomBuffer, Ncm.ApplicationId applicationId, ReadOnlySpan<byte> reportBuffer);
|
|
Result SaveSystemReportWithUser(Uid userId, ReadOnlySpan<byte> gameRoomBuffer, Ncm.ApplicationId applicationId, ReadOnlySpan<byte> reportBuffer);
|
|
Result IsUserAgreementCheckEnabled(out bool enabled);
|
|
Result SetUserAgreementCheckEnabled(bool enabled);
|
|
}
|
|
} |