bcat ipc (#4446)
This commit is contained in:
parent
4d1579acbf
commit
4250732353
31 changed files with 592 additions and 418 deletions
|
@ -1,3 +1,5 @@
|
|||
using LibHac;
|
||||
|
||||
namespace Ryujinx.Horizon
|
||||
{
|
||||
public struct HorizonOptions
|
||||
|
@ -5,10 +7,13 @@ namespace Ryujinx.Horizon
|
|||
public bool IgnoreMissingServices { get; }
|
||||
public bool ThrowOnInvalidCommandIds { get; }
|
||||
|
||||
public HorizonOptions(bool ignoreMissingServices)
|
||||
public HorizonClient BcatClient { get; }
|
||||
|
||||
public HorizonOptions(bool ignoreMissingServices, HorizonClient bcatClient)
|
||||
{
|
||||
IgnoreMissingServices = ignoreMissingServices;
|
||||
ThrowOnInvalidCommandIds = true;
|
||||
BcatClient = bcatClient;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue