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

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

View file

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

View file

@ -3,9 +3,9 @@ using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic;
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
{

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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