Ryujinx/Ryujinx.HLE/HOS/Services/Ldn/Types/NetworkState.cs
Ac_K cfcc360d06 ldn: Implement calls of UserLocalCommunicationService (#829)
* ldn: Implement calls of UserLocalCommunicationService

- Implement `IUserServiceCreator: CreateUserLocalCommunicationService` according to RE.
- Implement `IUserLocalCommunicationService` calls:
  - Every calls in this interface are layered to `NetworkInterface`.
  - `GetState` according to RE.
  - `InitializeOld`, `Initialize` and `Finalize` stubbed with the appropriate result code and some TODO according to RE.
  - `AttachStateChangeEvent` according to RE.

* Fix var name and TODO comments

* Fix review
2019-11-21 13:24:06 +01:00

13 lines
No EOL
226 B
C#

namespace Ryujinx.HLE.HOS.Services.Ldn.Types
{
enum NetworkState
{
None,
Initialized,
AccessPoint,
AccessPointCreated,
Station,
StationConnected,
Error
}
}