* Migrate friends service to new IPC * Add a note that the pointer buffer size and domain counts are wrong * Wrong length * Format whitespace * PR feedback * Fill in structs from PR feedback * Missed that one * Somehow forgot to save that one * Fill in enums from PR review * Language enum, NotificationTime * Format whitespace * Fix the warning
26 lines
809 B
C#
26 lines
809 B
C#
using LibHac;
|
|
using Ryujinx.Horizon.Sdk.Account;
|
|
using Ryujinx.Horizon.Sdk.Fs;
|
|
|
|
namespace Ryujinx.Horizon
|
|
{
|
|
public readonly struct HorizonOptions
|
|
{
|
|
public bool IgnoreMissingServices { get; }
|
|
public bool ThrowOnInvalidCommandIds { get; }
|
|
|
|
public HorizonClient BcatClient { get; }
|
|
public IFsClient FsClient { get; }
|
|
public IEmulatorAccountManager AccountManager { get; }
|
|
|
|
public HorizonOptions(bool ignoreMissingServices, HorizonClient bcatClient, IFsClient fsClient, IEmulatorAccountManager accountManager)
|
|
{
|
|
IgnoreMissingServices = ignoreMissingServices;
|
|
ThrowOnInvalidCommandIds = true;
|
|
BcatClient = bcatClient;
|
|
FsClient = fsClient;
|
|
AccountManager = accountManager;
|
|
}
|
|
}
|
|
}
|