Rename IpcServices -> Services

This commit is contained in:
gdkchan 2018-03-20 17:00:00 -03:00
parent 1bd99e5597
commit e922c3627a
81 changed files with 116 additions and 111 deletions

View file

@ -3,7 +3,7 @@ using System;
namespace ChocolArm64 namespace ChocolArm64
{ {
using System.Reflection.Emit; using System.Reflection.Emit;
static class ILGeneratorEx static class ILGeneratorEx
{ {
public static void EmitLdc_I4(this ILGenerator Generator,int Value) public static void EmitLdc_I4(this ILGenerator Generator,int Value)

View file

@ -1,5 +1,5 @@
using Ryujinx.Core.OsHle.IpcServices.Am;
using Ryujinx.Core.OsHle.Handles; using Ryujinx.Core.OsHle.Handles;
using Ryujinx.Core.OsHle.Services.Am;
using System; using System;
using System.Collections.Concurrent; using System.Collections.Concurrent;

View file

@ -1,4 +1,4 @@
using Ryujinx.Core.OsHle.IpcServices; using Ryujinx.Core.OsHle.Services;
using System; using System;
namespace Ryujinx.Core.OsHle.Handles namespace Ryujinx.Core.OsHle.Handles

View file

@ -5,7 +5,7 @@ using Ryujinx.Core.Loaders;
using Ryujinx.Core.Loaders.Executables; using Ryujinx.Core.Loaders.Executables;
using Ryujinx.Core.OsHle.Exceptions; using Ryujinx.Core.OsHle.Exceptions;
using Ryujinx.Core.OsHle.Handles; using Ryujinx.Core.OsHle.Handles;
using Ryujinx.Core.OsHle.IpcServices.NvServices; using Ryujinx.Core.OsHle.Services.Nv;
using Ryujinx.Core.OsHle.Svc; using Ryujinx.Core.OsHle.Svc;
using System; using System;
using System.Collections.Concurrent; using System.Collections.Concurrent;

View file

@ -1,7 +1,7 @@
using Ryujinx.Core.OsHle.Ipc; using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Acc namespace Ryujinx.Core.OsHle.Services.Acc
{ {
class IManagerForApplication : IpcService class IManagerForApplication : IpcService
{ {

View file

@ -1,7 +1,7 @@
using Ryujinx.Core.OsHle.Ipc; using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Acc namespace Ryujinx.Core.OsHle.Services.Acc
{ {
class IProfile : IpcService class IProfile : IpcService
{ {

View file

@ -1,7 +1,7 @@
using Ryujinx.Core.OsHle.Ipc; using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Acc namespace Ryujinx.Core.OsHle.Services.Acc
{ {
class ServiceAcc : IpcService class ServiceAcc : IpcService
{ {

View file

@ -1,4 +1,4 @@
namespace Ryujinx.Core.OsHle.IpcServices.Am namespace Ryujinx.Core.OsHle.Services.Am
{ {
static class AmErr static class AmErr
{ {

View file

@ -1,4 +1,4 @@
namespace Ryujinx.Core.OsHle.IpcServices.Am namespace Ryujinx.Core.OsHle.Services.Am
{ {
enum FocusState enum FocusState
{ {

View file

@ -2,7 +2,7 @@ using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
using System.IO; using System.IO;
namespace Ryujinx.Core.OsHle.IpcServices.Am namespace Ryujinx.Core.OsHle.Services.Am
{ {
class IApplicationFunctions : IpcService class IApplicationFunctions : IpcService
{ {

View file

@ -1,7 +1,7 @@
using Ryujinx.Core.OsHle.Ipc; using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Am namespace Ryujinx.Core.OsHle.Services.Am
{ {
class IApplicationProxy : IpcService class IApplicationProxy : IpcService
{ {

View file

@ -1,7 +1,7 @@
using Ryujinx.Core.OsHle.Ipc; using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Am namespace Ryujinx.Core.OsHle.Services.Am
{ {
class IAudioController : IpcService class IAudioController : IpcService
{ {

View file

@ -4,7 +4,7 @@ using System.Collections.Generic;
using static Ryujinx.Core.OsHle.ErrorCode; using static Ryujinx.Core.OsHle.ErrorCode;
namespace Ryujinx.Core.OsHle.IpcServices.Am namespace Ryujinx.Core.OsHle.Services.Am
{ {
class ICommonStateGetter : IpcService class ICommonStateGetter : IpcService
{ {

View file

@ -1,7 +1,7 @@
using Ryujinx.Core.OsHle.Ipc; using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Am namespace Ryujinx.Core.OsHle.Services.Am
{ {
class IDebugFunctions : IpcService class IDebugFunctions : IpcService
{ {

View file

@ -1,7 +1,7 @@
using Ryujinx.Core.OsHle.Ipc; using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Am namespace Ryujinx.Core.OsHle.Services.Am
{ {
class IDisplayController : IpcService class IDisplayController : IpcService
{ {

View file

@ -1,7 +1,7 @@
using Ryujinx.Core.OsHle.Ipc; using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Am namespace Ryujinx.Core.OsHle.Services.Am
{ {
class ILibraryAppletCreator : IpcService class ILibraryAppletCreator : IpcService
{ {

View file

@ -1,7 +1,7 @@
using Ryujinx.Core.OsHle.Ipc; using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Am namespace Ryujinx.Core.OsHle.Services.Am
{ {
class ISelfController : IpcService class ISelfController : IpcService
{ {

View file

@ -1,7 +1,7 @@
using Ryujinx.Core.OsHle.Ipc; using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Am namespace Ryujinx.Core.OsHle.Services.Am
{ {
class IStorage : IpcService class IStorage : IpcService
{ {

View file

@ -3,7 +3,7 @@ using Ryujinx.Core.OsHle.Ipc;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Am namespace Ryujinx.Core.OsHle.Services.Am
{ {
class IStorageAccessor : IpcService class IStorageAccessor : IpcService
{ {

View file

@ -1,7 +1,7 @@
using Ryujinx.Core.OsHle.Ipc; using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Am namespace Ryujinx.Core.OsHle.Services.Am
{ {
class IWindowController : IpcService class IWindowController : IpcService
{ {

View file

@ -1,4 +1,4 @@
namespace Ryujinx.Core.OsHle.IpcServices.Am namespace Ryujinx.Core.OsHle.Services.Am
{ {
enum MessageInfo enum MessageInfo
{ {

View file

@ -1,4 +1,4 @@
namespace Ryujinx.Core.OsHle.IpcServices.Am namespace Ryujinx.Core.OsHle.Services.Am
{ {
enum OperationMode enum OperationMode
{ {

View file

@ -1,7 +1,7 @@
using Ryujinx.Core.OsHle.Ipc; using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Am namespace Ryujinx.Core.OsHle.Services.Am
{ {
class ServiceAppletOE : IpcService class ServiceAppletOE : IpcService
{ {

View file

@ -1,7 +1,7 @@
using Ryujinx.Core.OsHle.Ipc; using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Apm namespace Ryujinx.Core.OsHle.Services.Apm
{ {
class ISession : IpcService class ISession : IpcService
{ {

View file

@ -1,7 +1,7 @@
using Ryujinx.Core.OsHle.Ipc; using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Apm namespace Ryujinx.Core.OsHle.Services.Apm
{ {
class ServiceApm : IpcService class ServiceApm : IpcService
{ {

View file

@ -1,6 +1,6 @@
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
namespace Ryujinx.Core.OsHle.IpcServices.Aud namespace Ryujinx.Core.OsHle.Services.Aud
{ {
[StructLayout(LayoutKind.Sequential)] [StructLayout(LayoutKind.Sequential)]
struct AudioOutData struct AudioOutData

View file

@ -3,7 +3,7 @@ using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
namespace Ryujinx.Core.OsHle.IpcServices.Aud namespace Ryujinx.Core.OsHle.Services.Aud
{ {
class IAudioDevice : IpcService class IAudioDevice : IpcService
{ {

View file

@ -5,7 +5,7 @@ using Ryujinx.Core.OsHle.Ipc;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Aud namespace Ryujinx.Core.OsHle.Services.Aud
{ {
class IAudioOut : IpcService, IDisposable class IAudioOut : IpcService, IDisposable
{ {

View file

@ -3,7 +3,7 @@ using Ryujinx.Core.OsHle.Ipc;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Aud namespace Ryujinx.Core.OsHle.Services.Aud
{ {
class IAudioRenderer : IpcService, IDisposable class IAudioRenderer : IpcService, IDisposable
{ {

View file

@ -5,7 +5,7 @@ using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
namespace Ryujinx.Core.OsHle.IpcServices.Aud namespace Ryujinx.Core.OsHle.Services.Aud
{ {
class ServiceAudOut : IpcService class ServiceAudOut : IpcService
{ {

View file

@ -1,7 +1,7 @@
using Ryujinx.Core.OsHle.Ipc; using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Aud namespace Ryujinx.Core.OsHle.Services.Aud
{ {
class ServiceAudRen : IpcService class ServiceAudRen : IpcService
{ {

View file

@ -8,7 +8,7 @@ using System.Net;
using System.Net.Sockets; using System.Net.Sockets;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace Ryujinx.Core.OsHle.IpcServices.Bsd namespace Ryujinx.Core.OsHle.Services.Bsd
{ {
//bsd_errno == (SocketException.ErrorCode - 10000) //bsd_errno == (SocketException.ErrorCode - 10000)

View file

@ -1,7 +1,7 @@
using Ryujinx.Core.OsHle.Ipc; using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Friend namespace Ryujinx.Core.OsHle.Services.Friend
{ {
class IFriendService : IpcService class IFriendService : IpcService
{ {

View file

@ -1,7 +1,7 @@
using Ryujinx.Core.OsHle.Ipc; using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Friend namespace Ryujinx.Core.OsHle.Services.Friend
{ {
class ServiceFriend : IpcService class ServiceFriend : IpcService
{ {

View file

@ -1,4 +1,4 @@
namespace Ryujinx.Core.OsHle.IpcServices.FspSrv namespace Ryujinx.Core.OsHle.Services.FspSrv
{ {
static class FsErr static class FsErr
{ {

View file

@ -5,7 +5,7 @@ using System.Collections.Generic;
using System.IO; using System.IO;
using System.Text; using System.Text;
namespace Ryujinx.Core.OsHle.IpcServices.FspSrv namespace Ryujinx.Core.OsHle.Services.FspSrv
{ {
class IDirectory : IpcService, IDisposable class IDirectory : IpcService, IDisposable
{ {

View file

@ -4,7 +4,7 @@ using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.IO; using System.IO;
namespace Ryujinx.Core.OsHle.IpcServices.FspSrv namespace Ryujinx.Core.OsHle.Services.FspSrv
{ {
class IFile : IpcService, IDisposable class IFile : IpcService, IDisposable
{ {

View file

@ -6,7 +6,7 @@ using System.Text;
using static Ryujinx.Core.OsHle.ErrorCode; using static Ryujinx.Core.OsHle.ErrorCode;
namespace Ryujinx.Core.OsHle.IpcServices.FspSrv namespace Ryujinx.Core.OsHle.Services.FspSrv
{ {
class IFileSystem : IpcService class IFileSystem : IpcService
{ {

View file

@ -3,7 +3,7 @@ using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
using System.IO; using System.IO;
namespace Ryujinx.Core.OsHle.IpcServices.FspSrv namespace Ryujinx.Core.OsHle.Services.FspSrv
{ {
class IStorage : IpcService class IStorage : IpcService
{ {

View file

@ -1,7 +1,7 @@
using Ryujinx.Core.OsHle.Ipc; using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.FspSrv namespace Ryujinx.Core.OsHle.Services.FspSrv
{ {
class ServiceFspSrv : IpcService class ServiceFspSrv : IpcService
{ {

View file

@ -1,7 +1,7 @@
using Ryujinx.Core.OsHle.Ipc; using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Hid namespace Ryujinx.Core.OsHle.Services.Hid
{ {
class IActiveApplicationDeviceList : IpcService class IActiveApplicationDeviceList : IpcService
{ {

View file

@ -2,7 +2,7 @@ using Ryujinx.Core.OsHle.Handles;
using Ryujinx.Core.OsHle.Ipc; using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Hid namespace Ryujinx.Core.OsHle.Services.Hid
{ {
class IAppletResource : IpcService class IAppletResource : IpcService
{ {

View file

@ -1,8 +1,8 @@
using Ryujinx.Core.Input;
using Ryujinx.Core.OsHle.Ipc; using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
using Ryujinx.Core.Input;
namespace Ryujinx.Core.OsHle.IpcServices.Hid namespace Ryujinx.Core.OsHle.Services.Hid
{ {
class ServiceHid : IpcService class ServiceHid : IpcService
{ {

View file

@ -1,7 +1,7 @@
using Ryujinx.Core.OsHle.Ipc; using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices namespace Ryujinx.Core.OsHle.Services
{ {
interface IIpcService interface IIpcService
{ {

View file

@ -1,10 +1,10 @@
using Ryujinx.Core.OsHle.Ipc;
using Ryujinx.Core.OsHle.Handles; using Ryujinx.Core.OsHle.Handles;
using Ryujinx.Core.OsHle.Ipc;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.IO; using System.IO;
namespace Ryujinx.Core.OsHle.IpcServices namespace Ryujinx.Core.OsHle.Services
{ {
abstract class IpcService : IIpcService abstract class IpcService : IIpcService
{ {

View file

@ -5,7 +5,7 @@ using System.Collections.Generic;
using System.IO; using System.IO;
using System.Text; using System.Text;
namespace Ryujinx.Core.OsHle.IpcServices.Lm namespace Ryujinx.Core.OsHle.Services.Lm
{ {
class ILogger : IpcService class ILogger : IpcService
{ {

View file

@ -1,7 +1,7 @@
using Ryujinx.Core.OsHle.Ipc; using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Lm namespace Ryujinx.Core.OsHle.Services.Lm
{ {
class ServiceLm : IpcService class ServiceLm : IpcService
{ {

View file

@ -1,7 +1,7 @@
using Ryujinx.Core.OsHle.Ipc; using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Nifm namespace Ryujinx.Core.OsHle.Services.Nifm
{ {
class IGeneralService : IpcService class IGeneralService : IpcService
{ {

View file

@ -3,7 +3,7 @@ using Ryujinx.Core.OsHle.Ipc;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Nifm namespace Ryujinx.Core.OsHle.Services.Nifm
{ {
class IRequest : IpcService, IDisposable class IRequest : IpcService, IDisposable
{ {

View file

@ -1,7 +1,7 @@
using Ryujinx.Core.OsHle.Ipc; using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Nifm namespace Ryujinx.Core.OsHle.Services.Nifm
{ {
class ServiceNifm : IpcService class ServiceNifm : IpcService
{ {

View file

@ -1,7 +1,7 @@
using Ryujinx.Core.OsHle.Ipc; using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Ns namespace Ryujinx.Core.OsHle.Services.Ns
{ {
class ServiceNs : IpcService class ServiceNs : IpcService
{ {

View file

@ -1,4 +1,4 @@
namespace Ryujinx.Core.OsHle.IpcServices.NvServices namespace Ryujinx.Core.OsHle.Services.Nv
{ {
class NvFd class NvFd
{ {

View file

@ -1,4 +1,4 @@
namespace Ryujinx.Core.OsHle.IpcServices.NvServices namespace Ryujinx.Core.OsHle.Services.Nv
{ {
class NvMap class NvMap
{ {

View file

@ -1,7 +1,7 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.NvServices namespace Ryujinx.Core.OsHle.Services.Nv
{ {
class NvMapFb class NvMapFb
{ {

View file

@ -6,7 +6,7 @@ using Ryujinx.Graphics.Gpu;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.NvServices namespace Ryujinx.Core.OsHle.Services.Nv
{ {
class ServiceNvDrv : IpcService, IDisposable class ServiceNvDrv : IpcService, IDisposable
{ {

View file

@ -1,7 +1,7 @@
using Ryujinx.Core.OsHle.Ipc; using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Pctl namespace Ryujinx.Core.OsHle.Services.Pctl
{ {
class IParentalControlService : IpcService class IParentalControlService : IpcService
{ {

View file

@ -1,7 +1,7 @@
using Ryujinx.Core.OsHle.Ipc; using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Pctl namespace Ryujinx.Core.OsHle.Services.Pctl
{ {
class ServicePctl : IpcService class ServicePctl : IpcService
{ {

View file

@ -1,7 +1,7 @@
using Ryujinx.Core.OsHle.Ipc; using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Pl namespace Ryujinx.Core.OsHle.Services.Pl
{ {
class ServicePl : IpcService class ServicePl : IpcService
{ {

View file

@ -1,4 +1,4 @@
namespace Ryujinx.Core.OsHle.IpcServices.Pl namespace Ryujinx.Core.OsHle.Services.Pl
{ {
enum SharedFontType enum SharedFontType
{ {

View file

@ -1,26 +1,26 @@
using Ryujinx.Core.OsHle.IpcServices.Acc; using Ryujinx.Core.OsHle.Services.Acc;
using Ryujinx.Core.OsHle.IpcServices.Am; using Ryujinx.Core.OsHle.Services.Am;
using Ryujinx.Core.OsHle.IpcServices.Apm; using Ryujinx.Core.OsHle.Services.Apm;
using Ryujinx.Core.OsHle.IpcServices.Aud; using Ryujinx.Core.OsHle.Services.Aud;
using Ryujinx.Core.OsHle.IpcServices.Bsd; using Ryujinx.Core.OsHle.Services.Bsd;
using Ryujinx.Core.OsHle.IpcServices.Friend; using Ryujinx.Core.OsHle.Services.Friend;
using Ryujinx.Core.OsHle.IpcServices.FspSrv; using Ryujinx.Core.OsHle.Services.FspSrv;
using Ryujinx.Core.OsHle.IpcServices.Hid; using Ryujinx.Core.OsHle.Services.Hid;
using Ryujinx.Core.OsHle.IpcServices.Lm; using Ryujinx.Core.OsHle.Services.Lm;
using Ryujinx.Core.OsHle.IpcServices.Nifm; using Ryujinx.Core.OsHle.Services.Nifm;
using Ryujinx.Core.OsHle.IpcServices.Ns; using Ryujinx.Core.OsHle.Services.Ns;
using Ryujinx.Core.OsHle.IpcServices.NvServices; using Ryujinx.Core.OsHle.Services.Nv;
using Ryujinx.Core.OsHle.IpcServices.Pctl; using Ryujinx.Core.OsHle.Services.Pctl;
using Ryujinx.Core.OsHle.IpcServices.Pl; using Ryujinx.Core.OsHle.Services.Pl;
using Ryujinx.Core.OsHle.IpcServices.Set; using Ryujinx.Core.OsHle.Services.Set;
using Ryujinx.Core.OsHle.IpcServices.Sfdnsres; using Ryujinx.Core.OsHle.Services.Sfdnsres;
using Ryujinx.Core.OsHle.IpcServices.Sm; using Ryujinx.Core.OsHle.Services.Sm;
using Ryujinx.Core.OsHle.IpcServices.Ssl; using Ryujinx.Core.OsHle.Services.Ssl;
using Ryujinx.Core.OsHle.IpcServices.Time; using Ryujinx.Core.OsHle.Services.Time;
using Ryujinx.Core.OsHle.IpcServices.Vi; using Ryujinx.Core.OsHle.Services.Vi;
using System; using System;
namespace Ryujinx.Core.OsHle.IpcServices namespace Ryujinx.Core.OsHle.Services
{ {
static class ServiceFactory static class ServiceFactory
{ {

View file

@ -3,7 +3,7 @@ using Ryujinx.Core.OsHle.Ipc;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Set namespace Ryujinx.Core.OsHle.Services.Set
{ {
class ServiceSet : IpcService class ServiceSet : IpcService
{ {

View file

@ -1,7 +1,7 @@
using Ryujinx.Core.OsHle.Ipc; using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Set namespace Ryujinx.Core.OsHle.Services.Set
{ {
class ServiceSetSys : IpcService class ServiceSetSys : IpcService
{ {

View file

@ -1,7 +1,7 @@
using Ryujinx.Core.OsHle.Ipc; using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Sfdnsres namespace Ryujinx.Core.OsHle.Services.Sfdnsres
{ {
class ServiceSfdnsres : IpcService class ServiceSfdnsres : IpcService
{ {

View file

@ -2,7 +2,7 @@ using Ryujinx.Core.OsHle.Handles;
using Ryujinx.Core.OsHle.Ipc; using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Sm namespace Ryujinx.Core.OsHle.Services.Sm
{ {
class ServiceSm : IpcService class ServiceSm : IpcService
{ {

View file

@ -1,7 +1,7 @@
using Ryujinx.Core.OsHle.Ipc; using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Ssl namespace Ryujinx.Core.OsHle.Services.Ssl
{ {
class ServiceSsl : IpcService class ServiceSsl : IpcService
{ {

View file

@ -1,7 +1,7 @@
using Ryujinx.Core.OsHle.Ipc; using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Time namespace Ryujinx.Core.OsHle.Services.Time
{ {
class ISteadyClock : IpcService class ISteadyClock : IpcService
{ {

View file

@ -2,7 +2,7 @@ using Ryujinx.Core.OsHle.Ipc;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Time namespace Ryujinx.Core.OsHle.Services.Time
{ {
class ISystemClock : IpcService class ISystemClock : IpcService
{ {

View file

@ -2,7 +2,7 @@ using Ryujinx.Core.OsHle.Ipc;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Time namespace Ryujinx.Core.OsHle.Services.Time
{ {
class ITimeZoneService : IpcService class ITimeZoneService : IpcService
{ {

View file

@ -1,7 +1,7 @@
using Ryujinx.Core.OsHle.Ipc; using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Time namespace Ryujinx.Core.OsHle.Services.Time
{ {
class ServiceTime : IpcService class ServiceTime : IpcService
{ {

View file

@ -1,4 +1,4 @@
namespace Ryujinx.Core.OsHle.IpcServices.Time namespace Ryujinx.Core.OsHle.Services.Time
{ {
enum SystemClockType enum SystemClockType
{ {

View file

@ -1,4 +1,4 @@
namespace Ryujinx.Core.OsHle.IpcServices.Vi namespace Ryujinx.Core.OsHle.Services.Vi
{ {
class Display class Display
{ {

View file

@ -1,6 +1,6 @@
using System.IO; using System.IO;
namespace Ryujinx.Core.OsHle.IpcServices.Android namespace Ryujinx.Core.OsHle.Services.Android
{ {
struct GbpBuffer struct GbpBuffer
{ {

View file

@ -3,9 +3,9 @@ using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
using System.IO; using System.IO;
using static Ryujinx.Core.OsHle.IpcServices.Android.Parcel; using static Ryujinx.Core.OsHle.Services.Android.Parcel;
namespace Ryujinx.Core.OsHle.IpcServices.Vi namespace Ryujinx.Core.OsHle.Services.Vi
{ {
class IApplicationDisplayService : IpcService class IApplicationDisplayService : IpcService
{ {

View file

@ -1,12 +1,12 @@
using ChocolArm64.Memory; using ChocolArm64.Memory;
using Ryujinx.Core.OsHle.Handles; using Ryujinx.Core.OsHle.Handles;
using Ryujinx.Core.OsHle.Ipc; using Ryujinx.Core.OsHle.Ipc;
using Ryujinx.Core.OsHle.IpcServices.Android; using Ryujinx.Core.OsHle.Services.Android;
using Ryujinx.Graphics.Gal; using Ryujinx.Graphics.Gal;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Vi namespace Ryujinx.Core.OsHle.Services.Vi
{ {
class IHOSBinderDriver : IpcService, IDisposable class IHOSBinderDriver : IpcService, IDisposable
{ {

View file

@ -1,7 +1,7 @@
using Ryujinx.Core.OsHle.Ipc; using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Vi namespace Ryujinx.Core.OsHle.Services.Vi
{ {
class IManagerDisplayService : IpcService class IManagerDisplayService : IpcService
{ {

View file

@ -1,7 +1,7 @@
using Ryujinx.Core.OsHle.Ipc; using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Vi namespace Ryujinx.Core.OsHle.Services.Vi
{ {
class ISystemDisplayService : IpcService class ISystemDisplayService : IpcService
{ {

View file

@ -1,16 +1,15 @@
using ChocolArm64.Memory; using ChocolArm64.Memory;
using Ryujinx.Core.OsHle.Handles; using Ryujinx.Core.OsHle.Handles;
using Ryujinx.Core.OsHle.IpcServices.NvServices; using Ryujinx.Core.OsHle.Services.Nv;
using Ryujinx.Graphics.Gal; using Ryujinx.Graphics.Gal;
using System; using System;
using System.IO;
using System.Collections.Generic; using System.Collections.Generic;
using System.IO;
using System.Text; using System.Text;
using System.Threading; using System.Threading;
using static Ryujinx.Core.OsHle.Services.Android.Parcel;
using static Ryujinx.Core.OsHle.IpcServices.Android.Parcel; namespace Ryujinx.Core.OsHle.Services.Android
namespace Ryujinx.Core.OsHle.IpcServices.Android
{ {
class NvFlinger : IDisposable class NvFlinger : IDisposable
{ {

View file

@ -1,7 +1,7 @@
using System; using System;
using System.IO; using System.IO;
namespace Ryujinx.Core.OsHle.IpcServices.Android namespace Ryujinx.Core.OsHle.Services.Android
{ {
static class Parcel static class Parcel
{ {

View file

@ -1,7 +1,7 @@
using Ryujinx.Core.OsHle.Ipc; using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Vi namespace Ryujinx.Core.OsHle.Services.Vi
{ {
class ServiceVi : IpcService class ServiceVi : IpcService
{ {

View file

@ -3,7 +3,7 @@ using ChocolArm64.State;
using Ryujinx.Core.OsHle.Exceptions; using Ryujinx.Core.OsHle.Exceptions;
using Ryujinx.Core.OsHle.Handles; using Ryujinx.Core.OsHle.Handles;
using Ryujinx.Core.OsHle.Ipc; using Ryujinx.Core.OsHle.Ipc;
using Ryujinx.Core.OsHle.IpcServices; using Ryujinx.Core.OsHle.Services;
using System; using System;
using System.Threading; using System.Threading;

View file

@ -1,7 +1,7 @@
 
Microsoft Visual Studio Solution File, Format Version 12.00 Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15 # Visual Studio 15
VisualStudioVersion = 15.0.27130.2027 VisualStudioVersion = 15.0.26730.8
MinimumVisualStudioVersion = 10.0.40219.1 MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx", "Ryujinx\Ryujinx.csproj", "{074045D4-3ED2-4711-9169-E385F2BFB5A0}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx", "Ryujinx\Ryujinx.csproj", "{074045D4-3ED2-4711-9169-E385F2BFB5A0}"
EndProject EndProject
@ -9,9 +9,11 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Tests", "Ryujinx.Te
EndProject EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Core", "Ryujinx.Core\Ryujinx.Core.csproj", "{CB92CFF9-1D62-4D4F-9E88-8130EF61E351}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Core", "Ryujinx.Core\Ryujinx.Core.csproj", "{CB92CFF9-1D62-4D4F-9E88-8130EF61E351}"
EndProject EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ChocolArm64", "ChocolArm64\ChocolArm64.csproj", "{2345A1A7-8DEF-419B-9AFB-4DFD41D20D05}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ChocolArm64", "ChocolArm64\ChocolArm64.csproj", "{2345A1A7-8DEF-419B-9AFB-4DFD41D20D05}"
EndProject EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ryujinx.Graphics", "Ryujinx.Graphics\Ryujinx.Graphics.csproj", "{EAAE36AF-7781-4578-A7E0-F0EFD2025569}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Graphics", "Ryujinx.Graphics\Ryujinx.Graphics.csproj", "{EAAE36AF-7781-4578-A7E0-F0EFD2025569}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ryujinx.Audio", "Ryujinx.Audio\Ryujinx.Audio.csproj", "{5C1D818E-682A-46A5-9D54-30006E26C270}"
EndProject EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution
@ -39,6 +41,10 @@ Global
{EAAE36AF-7781-4578-A7E0-F0EFD2025569}.Debug|Any CPU.Build.0 = Debug|Any CPU {EAAE36AF-7781-4578-A7E0-F0EFD2025569}.Debug|Any CPU.Build.0 = Debug|Any CPU
{EAAE36AF-7781-4578-A7E0-F0EFD2025569}.Release|Any CPU.ActiveCfg = Release|Any CPU {EAAE36AF-7781-4578-A7E0-F0EFD2025569}.Release|Any CPU.ActiveCfg = Release|Any CPU
{EAAE36AF-7781-4578-A7E0-F0EFD2025569}.Release|Any CPU.Build.0 = Release|Any CPU {EAAE36AF-7781-4578-A7E0-F0EFD2025569}.Release|Any CPU.Build.0 = Release|Any CPU
{5C1D818E-682A-46A5-9D54-30006E26C270}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5C1D818E-682A-46A5-9D54-30006E26C270}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5C1D818E-682A-46A5-9D54-30006E26C270}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5C1D818E-682A-46A5-9D54-30006E26C270}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection EndGlobalSection
GlobalSection(SolutionProperties) = preSolution GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE HideSolutionNode = FALSE