forked from Mirror/Ryujinx
0bc8151c7e
* bcat ipc * fix hipc buffer flags * add buffer fixed size flag on generator
19 lines
511 B
C#
19 lines
511 B
C#
using LibHac;
|
|
|
|
namespace Ryujinx.Horizon
|
|
{
|
|
public struct HorizonOptions
|
|
{
|
|
public bool IgnoreMissingServices { get; }
|
|
public bool ThrowOnInvalidCommandIds { get; }
|
|
|
|
public HorizonClient BcatClient { get; }
|
|
|
|
public HorizonOptions(bool ignoreMissingServices, HorizonClient bcatClient)
|
|
{
|
|
IgnoreMissingServices = ignoreMissingServices;
|
|
ThrowOnInvalidCommandIds = true;
|
|
BcatClient = bcatClient;
|
|
}
|
|
}
|
|
}
|