aboutsummaryrefslogblamecommitdiff
path: root/src/Ryujinx.HLE/HOS/Kernel/Ipc/ChannelState.cs
blob: 3a943f94b8d46635b6d695403ee31fa26eab747a (plain) (tree)
1
2
3
4
5
6
7
8
9





                                    
                           
     
 
namespace Ryujinx.HLE.HOS.Kernel.Ipc
{
    enum ChannelState
    {
        NotInitialized,
        Open,
        ClientDisconnected,
        ServerDisconnected,
    }
}