Ryujinx/Ryujinx.HLE/HOS/Services/Sockets/Nsd/Types/ApplicationServerEnvironmentType.cs
Ac_K f0fe434bd8
nsd: Cleanup the service and implement some calls (#2250)
* nim: Cleanup the service and implement some calls

* Fix symbol typo

* add ApplicationServerEnvironmentType enum

* Change condition
2021-05-05 23:16:51 +02:00

11 lines
No EOL
181 B
C#

namespace Ryujinx.HLE.HOS.Services.Sockets.Nsd.Types
{
enum ApplicationServerEnvironmentType : byte
{
None,
Lp,
Sd,
Sp,
Dp
}
}