Remove Types namespaces

This commit is contained in:
Ac_K 2019-09-19 02:07:07 +02:00
commit 66550390cc
181 changed files with 147 additions and 221 deletions

View file

@ -11,7 +11,6 @@ using Ryujinx.HLE.HOS.Kernel.Threading;
using Ryujinx.HLE.HOS.Services.Settings; using Ryujinx.HLE.HOS.Services.Settings;
using Ryujinx.HLE.HOS.Services.Sm; using Ryujinx.HLE.HOS.Services.Sm;
using Ryujinx.HLE.HOS.Services.Time.Clock; using Ryujinx.HLE.HOS.Services.Time.Clock;
using Ryujinx.HLE.HOS.Services.Time.Clock.Types;
using Ryujinx.HLE.HOS.SystemState; using Ryujinx.HLE.HOS.SystemState;
using Ryujinx.HLE.Loaders.Executables; using Ryujinx.HLE.Loaders.Executables;
using Ryujinx.HLE.Loaders.Npdm; using Ryujinx.HLE.Loaders.Npdm;

View file

@ -1,5 +1,4 @@
using Ryujinx.HLE.HOS.Services.Account.Acc.Types; using Ryujinx.HLE.Utilities;
using Ryujinx.HLE.Utilities;
using System.Collections.Concurrent; using System.Collections.Concurrent;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;

View file

@ -1,5 +1,4 @@
using Ryujinx.Common.Logging; using Ryujinx.Common.Logging;
using Ryujinx.HLE.HOS.Services.Account.Acc.Types;
using Ryujinx.HLE.HOS.Services.Arp; using Ryujinx.HLE.HOS.Services.Arp;
using Ryujinx.HLE.Utilities; using Ryujinx.HLE.Utilities;
using System.Collections.Generic; using System.Collections.Generic;

View file

@ -1,6 +1,5 @@
using ARMeilleure.Memory; using ARMeilleure.Memory;
using Ryujinx.Common.Logging; using Ryujinx.Common.Logging;
using Ryujinx.HLE.HOS.Services.Account.Acc.Types;
using Ryujinx.HLE.Utilities; using Ryujinx.HLE.Utilities;
using System.IO; using System.IO;
using System.Reflection; using System.Reflection;

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Account.Acc.Types namespace Ryujinx.HLE.HOS.Services.Account.Acc
{ {
public enum AccountState public enum AccountState
{ {

View file

@ -1,7 +1,7 @@
using Ryujinx.HLE.Utilities; using Ryujinx.HLE.Utilities;
using System; using System;
namespace Ryujinx.HLE.HOS.Services.Account.Acc.Types namespace Ryujinx.HLE.HOS.Services.Account.Acc
{ {
class UserProfile class UserProfile
{ {

View file

@ -2,8 +2,7 @@ using Ryujinx.Common.Logging;
using Ryujinx.HLE.HOS.Ipc; using Ryujinx.HLE.HOS.Ipc;
using Ryujinx.HLE.HOS.Kernel.Common; using Ryujinx.HLE.HOS.Kernel.Common;
using Ryujinx.HLE.HOS.Kernel.Threading; using Ryujinx.HLE.HOS.Kernel.Threading;
using Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService.SystemAppletProxy.Types; using Ryujinx.HLE.HOS.Services.Apm;
using Ryujinx.HLE.HOS.Services.Apm.Types;
using System; using System;
namespace Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService.SystemAppletProxy namespace Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService.SystemAppletProxy

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService.SystemAppletProxy.Types namespace Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService.SystemAppletProxy
{ {
enum FocusState enum FocusState
{ {

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService.SystemAppletProxy.Types namespace Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService.SystemAppletProxy
{ {
enum MessageInfo enum MessageInfo
{ {

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService.SystemAppletProxy.Types namespace Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService.SystemAppletProxy
{ {
enum OperationMode enum OperationMode
{ {

View file

@ -2,11 +2,8 @@ using Ryujinx.Common.Logging;
using Ryujinx.Graphics.Gal; using Ryujinx.Graphics.Gal;
using Ryujinx.Graphics.Memory; using Ryujinx.Graphics.Memory;
using Ryujinx.HLE.HOS.Kernel.Threading; using Ryujinx.HLE.HOS.Kernel.Threading;
using Ryujinx.HLE.HOS.Services.Android.Types;
using Ryujinx.HLE.HOS.Services.Android.Types.Color;
using Ryujinx.HLE.HOS.Services.Nv.NvDrvServices.NvGpuAS; using Ryujinx.HLE.HOS.Services.Nv.NvDrvServices.NvGpuAS;
using Ryujinx.HLE.HOS.Services.Nv.NvDrvServices.NvMap; using Ryujinx.HLE.HOS.Services.Nv.NvDrvServices.NvMap;
using Ryujinx.HLE.HOS.Services.Nv.NvDrvServices.NvMap.Types;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.IO; using System.IO;

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Android.Types namespace Ryujinx.HLE.HOS.Services.Android
{ {
struct BufferEntry struct BufferEntry
{ {

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Android.Types namespace Ryujinx.HLE.HOS.Services.Android
{ {
enum BufferState enum BufferState
{ {

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Android.Types.Color namespace Ryujinx.HLE.HOS.Services.Android
{ {
enum ColorBytePerPixel enum ColorBytePerPixel
{ {

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Android.Types.Color namespace Ryujinx.HLE.HOS.Services.Android
{ {
enum ColorComponent : uint enum ColorComponent : uint
{ {

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Android.Types.Color namespace Ryujinx.HLE.HOS.Services.Android
{ {
enum ColorDataType enum ColorDataType
{ {

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Android.Types.Color namespace Ryujinx.HLE.HOS.Services.Android
{ {
enum ColorFormat : ulong enum ColorFormat : ulong
{ {

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Android.Types.Color namespace Ryujinx.HLE.HOS.Services.Android
{ {
class ColorShift class ColorShift
{ {

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Android.Types.Color namespace Ryujinx.HLE.HOS.Services.Android
{ {
enum ColorSpace : ulong enum ColorSpace : ulong
{ {

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Android.Types.Color namespace Ryujinx.HLE.HOS.Services.Android
{ {
enum ColorSwizzle enum ColorSwizzle
{ {

View file

@ -1,11 +1,11 @@
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Android.Types namespace Ryujinx.HLE.HOS.Services.Android
{ {
[StructLayout(LayoutKind.Sequential, Size = 0x8)] [StructLayout(LayoutKind.Sequential, Size = 0x8)]
struct Fence struct Fence
{ {
public int id; public int Id;
public int value; public int Value;
} }
} }

View file

@ -3,7 +3,7 @@ using System;
using System.IO; using System.IO;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Android.Types namespace Ryujinx.HLE.HOS.Services.Android
{ {
struct GbpBuffer struct GbpBuffer
{ {

View file

@ -1,6 +1,6 @@
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Android.Types namespace Ryujinx.HLE.HOS.Services.Android
{ {
[StructLayout(LayoutKind.Sequential, Size = 0x28)] [StructLayout(LayoutKind.Sequential, Size = 0x28)]
struct GraphicBufferHeader struct GraphicBufferHeader

View file

@ -1,6 +1,6 @@
using System; using System;
namespace Ryujinx.HLE.HOS.Services.Android.Types namespace Ryujinx.HLE.HOS.Services.Android
{ {
[Flags] [Flags]
enum HalTransform enum HalTransform

View file

@ -1,6 +1,6 @@
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Android.Types namespace Ryujinx.HLE.HOS.Services.Android
{ {
[StructLayout(LayoutKind.Explicit, Size = 0x24)] [StructLayout(LayoutKind.Explicit, Size = 0x24)]
struct MultiFence struct MultiFence

View file

@ -1,6 +1,6 @@
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Android.Types namespace Ryujinx.HLE.HOS.Services.Android
{ {
[StructLayout(LayoutKind.Explicit, Size = 0x144)] [StructLayout(LayoutKind.Explicit, Size = 0x144)]
struct NvGraphicBuffer struct NvGraphicBuffer

View file

@ -1,7 +1,6 @@
using Ryujinx.HLE.HOS.Services.Android.Types.Color; using System.Runtime.InteropServices;
using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Android.Types namespace Ryujinx.HLE.HOS.Services.Android
{ {
[StructLayout(LayoutKind.Explicit, Size = 0x58)] [StructLayout(LayoutKind.Explicit, Size = 0x58)]
struct NvGraphicBufferSurface struct NvGraphicBufferSurface

View file

@ -1,7 +1,7 @@
using System; using System;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Android.Types namespace Ryujinx.HLE.HOS.Services.Android
{ {
[StructLayout(LayoutKind.Explicit)] [StructLayout(LayoutKind.Explicit)]
struct NvGraphicBufferSurfaceArray struct NvGraphicBufferSurfaceArray

View file

@ -1,6 +1,6 @@
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Android.Types namespace Ryujinx.HLE.HOS.Services.Android
{ {
[StructLayout(LayoutKind.Explicit)] [StructLayout(LayoutKind.Explicit)]
struct QueueBufferObject struct QueueBufferObject

View file

@ -1,6 +1,6 @@
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Android.Types namespace Ryujinx.HLE.HOS.Services.Android
{ {
[StructLayout(LayoutKind.Sequential, Size = 0x10)] [StructLayout(LayoutKind.Sequential, Size = 0x10)]
struct Rect struct Rect

View file

@ -1,5 +1,4 @@
using Ryujinx.Common.Logging; using Ryujinx.Common.Logging;
using Ryujinx.HLE.HOS.Services.Apm.Types;
namespace Ryujinx.HLE.HOS.Services.Apm namespace Ryujinx.HLE.HOS.Services.Apm
{ {

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Apm.Types namespace Ryujinx.HLE.HOS.Services.Apm
{ {
enum CpuBoostMode enum CpuBoostMode
{ {

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Apm.Types namespace Ryujinx.HLE.HOS.Services.Apm
{ {
enum PerformanceConfiguration : uint // Clocks are all in MHz. enum PerformanceConfiguration : uint // Clocks are all in MHz.
{ // CPU | GPU | RAM | NOTE { // CPU | GPU | RAM | NOTE

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Apm.Types namespace Ryujinx.HLE.HOS.Services.Apm
{ {
enum PerformanceMode enum PerformanceMode
{ {

View file

@ -3,7 +3,6 @@ using Ryujinx.Audio;
using Ryujinx.HLE.HOS.Ipc; using Ryujinx.HLE.HOS.Ipc;
using Ryujinx.HLE.HOS.Kernel.Common; using Ryujinx.HLE.HOS.Kernel.Common;
using Ryujinx.HLE.HOS.Kernel.Threading; using Ryujinx.HLE.HOS.Kernel.Threading;
using Ryujinx.HLE.HOS.Services.Audio.AudioOutManager.Types;
using System; using System;
namespace Ryujinx.HLE.HOS.Services.Audio.AudioOutManager namespace Ryujinx.HLE.HOS.Services.Audio.AudioOutManager

View file

@ -1,6 +1,6 @@
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Audio.AudioOutManager.Types namespace Ryujinx.HLE.HOS.Services.Audio.AudioOutManager
{ {
[StructLayout(LayoutKind.Sequential)] [StructLayout(LayoutKind.Sequential)]
struct AudioOutData struct AudioOutData

View file

@ -5,7 +5,6 @@ using Ryujinx.Common.Logging;
using Ryujinx.HLE.HOS.Ipc; using Ryujinx.HLE.HOS.Ipc;
using Ryujinx.HLE.HOS.Kernel.Common; using Ryujinx.HLE.HOS.Kernel.Common;
using Ryujinx.HLE.HOS.Kernel.Threading; using Ryujinx.HLE.HOS.Kernel.Threading;
using Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager.Types;
using Ryujinx.HLE.Utilities; using Ryujinx.HLE.Utilities;
using System; using System;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;

View file

@ -1,5 +1,3 @@
using Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager.Types;
namespace Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager namespace Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager
{ {
class MemoryPoolContext class MemoryPoolContext

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager.Types namespace Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager
{ {
static class AudioConsts static class AudioConsts
{ {

View file

@ -1,6 +1,6 @@
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager.Types namespace Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager
{ {
[StructLayout(LayoutKind.Sequential)] [StructLayout(LayoutKind.Sequential)]
struct AudioRendererParameter struct AudioRendererParameter

View file

@ -1,6 +1,6 @@
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager.Types namespace Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager
{ {
[StructLayout(LayoutKind.Sequential, Size = 0x10, Pack = 4)] [StructLayout(LayoutKind.Sequential, Size = 0x10, Pack = 4)]
struct BehaviorIn struct BehaviorIn

View file

@ -1,6 +1,6 @@
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager.Types namespace Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager
{ {
[StructLayout(LayoutKind.Sequential, Size = 0xc, Pack = 1)] [StructLayout(LayoutKind.Sequential, Size = 0xc, Pack = 1)]
struct BiquadFilter struct BiquadFilter

View file

@ -1,6 +1,6 @@
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager.Types namespace Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager
{ {
[StructLayout(LayoutKind.Sequential, Size = 0x20, Pack = 4)] [StructLayout(LayoutKind.Sequential, Size = 0x20, Pack = 4)]
struct MemoryPoolIn struct MemoryPoolIn

View file

@ -1,6 +1,6 @@
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager.Types namespace Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager
{ {
[StructLayout(LayoutKind.Sequential, Size = 0x10, Pack = 4)] [StructLayout(LayoutKind.Sequential, Size = 0x10, Pack = 4)]
struct MemoryPoolOut struct MemoryPoolOut

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager.Types namespace Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager
{ {
enum MemoryPoolState enum MemoryPoolState
{ {

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager.Types namespace Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager
{ {
enum PlayState : byte enum PlayState : byte
{ {

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager.Types namespace Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager
{ {
struct UpdateDataHeader struct UpdateDataHeader
{ {

View file

@ -1,6 +1,6 @@
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager.Types namespace Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager
{ {
[StructLayout(LayoutKind.Sequential, Size = 0x70, Pack = 1)] [StructLayout(LayoutKind.Sequential, Size = 0x70, Pack = 1)]
struct VoiceChannelResourceIn struct VoiceChannelResourceIn

View file

@ -1,7 +1,6 @@
using Ryujinx.HLE.HOS.Services.Audio.Types;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager.Types namespace Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager
{ {
[StructLayout(LayoutKind.Sequential, Size = 0x170, Pack = 1)] [StructLayout(LayoutKind.Sequential, Size = 0x170, Pack = 1)]
struct VoiceIn struct VoiceIn

View file

@ -1,6 +1,6 @@
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager.Types namespace Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager
{ {
[StructLayout(LayoutKind.Sequential, Size = 0x10, Pack = 4)] [StructLayout(LayoutKind.Sequential, Size = 0x10, Pack = 4)]
struct VoiceOut struct VoiceOut

View file

@ -1,6 +1,6 @@
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager.Types namespace Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager
{ {
[StructLayout(LayoutKind.Sequential, Size = 0x38, Pack = 1)] [StructLayout(LayoutKind.Sequential, Size = 0x38, Pack = 1)]
struct WaveBuffer struct WaveBuffer

View file

@ -1,7 +1,5 @@
using ARMeilleure.Memory; using ARMeilleure.Memory;
using Ryujinx.Audio.Adpcm; using Ryujinx.Audio.Adpcm;
using Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager.Types;
using Ryujinx.HLE.HOS.Services.Audio.Types;
using System; using System;
namespace Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager namespace Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager

View file

@ -3,7 +3,6 @@ using Ryujinx.Audio;
using Ryujinx.Common.Logging; using Ryujinx.Common.Logging;
using Ryujinx.HLE.HOS.Kernel.Threading; using Ryujinx.HLE.HOS.Kernel.Threading;
using Ryujinx.HLE.HOS.Services.Audio.AudioOutManager; using Ryujinx.HLE.HOS.Services.Audio.AudioOutManager;
using Ryujinx.HLE.HOS.Services.Audio.Types;
using System.Text; using System.Text;
namespace Ryujinx.HLE.HOS.Services.Audio namespace Ryujinx.HLE.HOS.Services.Audio

View file

@ -1,7 +1,6 @@
using Ryujinx.Audio; using Ryujinx.Audio;
using Ryujinx.Common.Logging; using Ryujinx.Common.Logging;
using Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager; using Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager;
using Ryujinx.HLE.HOS.Services.Audio.AudioRendererManager.Types;
using Ryujinx.HLE.Utilities; using Ryujinx.HLE.Utilities;
namespace Ryujinx.HLE.HOS.Services.Audio namespace Ryujinx.HLE.HOS.Services.Audio

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Audio.Types namespace Ryujinx.HLE.HOS.Services.Audio
{ {
enum SampleFormat : byte enum SampleFormat : byte
{ {

View file

@ -1,6 +1,5 @@
using Ryujinx.Common; using Ryujinx.Common;
using Ryujinx.HLE.HOS.Services.Friend.ServiceCreator; using Ryujinx.HLE.HOS.Services.Friend.ServiceCreator;
using Ryujinx.HLE.HOS.Services.Friend.ServiceCreator.Types;
using Ryujinx.HLE.Utilities; using Ryujinx.HLE.Utilities;
namespace Ryujinx.HLE.HOS.Services.Friend namespace Ryujinx.HLE.HOS.Services.Friend

View file

@ -1,7 +1,7 @@
using Ryujinx.HLE.Utilities; using Ryujinx.HLE.Utilities;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Friend.ServiceCreator.FriendService.Types namespace Ryujinx.HLE.HOS.Services.Friend.ServiceCreator.FriendService
{ {
[StructLayout(LayoutKind.Sequential, Pack = 0x8, Size = 0x200, CharSet = CharSet.Ansi)] [StructLayout(LayoutKind.Sequential, Pack = 0x8, Size = 0x200, CharSet = CharSet.Ansi)]
struct Friend struct Friend

View file

@ -1,6 +1,6 @@
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Friend.ServiceCreator.FriendService.Types namespace Ryujinx.HLE.HOS.Services.Friend.ServiceCreator.FriendService
{ {
[StructLayout(LayoutKind.Sequential)] [StructLayout(LayoutKind.Sequential)]
struct FriendFilter struct FriendFilter

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Friend.ServiceCreator.FriendService.Types namespace Ryujinx.HLE.HOS.Services.Friend.ServiceCreator.FriendService
{ {
enum PresenceStatus : uint enum PresenceStatus : uint
{ {

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Friend.ServiceCreator.FriendService.Types namespace Ryujinx.HLE.HOS.Services.Friend.ServiceCreator.FriendService
{ {
enum PresenceStatusFilter : uint enum PresenceStatusFilter : uint
{ {

View file

@ -1,7 +1,7 @@
using Ryujinx.HLE.Utilities; using Ryujinx.HLE.Utilities;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Friend.ServiceCreator.FriendService.Types namespace Ryujinx.HLE.HOS.Services.Friend.ServiceCreator.FriendService
{ {
[StructLayout(LayoutKind.Sequential, Pack = 0x8, CharSet = CharSet.Ansi)] [StructLayout(LayoutKind.Sequential, Pack = 0x8, CharSet = CharSet.Ansi)]
struct UserPresence struct UserPresence

View file

@ -1,5 +1,3 @@
using Ryujinx.HLE.HOS.Services.Friend.ServiceCreator.Types;
namespace Ryujinx.HLE.HOS.Services.Friend.ServiceCreator namespace Ryujinx.HLE.HOS.Services.Friend.ServiceCreator
{ {
class IDaemonSuspendSessionService : IpcService class IDaemonSuspendSessionService : IpcService

View file

@ -1,8 +1,7 @@
using Ryujinx.Common; using Ryujinx.Common;
using Ryujinx.Common.Logging; using Ryujinx.Common.Logging;
using Ryujinx.HLE.HOS.Services.Account.Acc.Types; using Ryujinx.HLE.HOS.Services.Account.Acc;
using Ryujinx.HLE.HOS.Services.Friend.ServiceCreator.FriendService.Types; using Ryujinx.HLE.HOS.Services.Friend.ServiceCreator.FriendService;
using Ryujinx.HLE.HOS.Services.Friend.ServiceCreator.Types;
using Ryujinx.HLE.Utilities; using Ryujinx.HLE.Utilities;
using System.IO; using System.IO;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;

View file

@ -3,8 +3,6 @@ using Ryujinx.HLE.HOS.Ipc;
using Ryujinx.HLE.HOS.Kernel.Common; using Ryujinx.HLE.HOS.Kernel.Common;
using Ryujinx.HLE.HOS.Kernel.Threading; using Ryujinx.HLE.HOS.Kernel.Threading;
using Ryujinx.HLE.HOS.Services.Friend.ServiceCreator.NotificationService; using Ryujinx.HLE.HOS.Services.Friend.ServiceCreator.NotificationService;
using Ryujinx.HLE.HOS.Services.Friend.ServiceCreator.NotificationService.Types;
using Ryujinx.HLE.HOS.Services.Friend.ServiceCreator.Types;
using Ryujinx.HLE.Utilities; using Ryujinx.HLE.Utilities;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Friend.ServiceCreator.NotificationService.Types namespace Ryujinx.HLE.HOS.Services.Friend.ServiceCreator.NotificationService
{ {
enum NotificationEventType : uint enum NotificationEventType : uint
{ {

View file

@ -1,6 +1,6 @@
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Friend.ServiceCreator.NotificationService.Types namespace Ryujinx.HLE.HOS.Services.Friend.ServiceCreator.NotificationService
{ {
[StructLayout(LayoutKind.Sequential, Pack = 0x8, Size = 0x10)] [StructLayout(LayoutKind.Sequential, Pack = 0x8, Size = 0x10)]
struct NotificationInfo struct NotificationInfo

View file

@ -1,6 +1,6 @@
using System; using System;
namespace Ryujinx.HLE.HOS.Services.Friend.ServiceCreator.Types namespace Ryujinx.HLE.HOS.Services.Friend.ServiceCreator
{ {
[Flags] [Flags]
enum FriendServicePermissionLevel enum FriendServicePermissionLevel

View file

@ -4,7 +4,6 @@ using LibHac.Fs.NcaUtils;
using Ryujinx.Common.Logging; using Ryujinx.Common.Logging;
using Ryujinx.HLE.FileSystem; using Ryujinx.HLE.FileSystem;
using Ryujinx.HLE.HOS.Services.Fs.FileSystemProxy; using Ryujinx.HLE.HOS.Services.Fs.FileSystemProxy;
using Ryujinx.HLE.HOS.Services.Fs.Types;
using System.IO; using System.IO;
using static Ryujinx.HLE.FileSystem.VirtualFileSystem; using static Ryujinx.HLE.FileSystem.VirtualFileSystem;

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Fs.Types namespace Ryujinx.HLE.HOS.Services.Fs
{ {
enum FileSystemType enum FileSystemType
{ {

View file

@ -1,5 +1,4 @@
using Ryujinx.HLE.HOS.Services.Hid.Types.Npad; using Ryujinx.HLE.Input;
using Ryujinx.HLE.Input;
using System; using System;
namespace Ryujinx.HLE.HOS.Services.Hid.HidServer namespace Ryujinx.HLE.HOS.Services.Hid.HidServer

View file

@ -3,9 +3,6 @@ using Ryujinx.HLE.HOS.Ipc;
using Ryujinx.HLE.HOS.Kernel.Common; using Ryujinx.HLE.HOS.Kernel.Common;
using Ryujinx.HLE.HOS.Kernel.Threading; using Ryujinx.HLE.HOS.Kernel.Threading;
using Ryujinx.HLE.HOS.Services.Hid.HidServer; using Ryujinx.HLE.HOS.Services.Hid.HidServer;
using Ryujinx.HLE.HOS.Services.Hid.Types.Npad;
using Ryujinx.HLE.HOS.Services.Hid.Types.SixAxis;
using Ryujinx.HLE.HOS.Services.Hid.Types.Vibration;
using Ryujinx.HLE.Input; using Ryujinx.HLE.Input;
using System; using System;

View file

@ -2,7 +2,6 @@
using Ryujinx.HLE.HOS.Ipc; using Ryujinx.HLE.HOS.Ipc;
using Ryujinx.HLE.HOS.Kernel.Common; using Ryujinx.HLE.HOS.Kernel.Common;
using Ryujinx.HLE.HOS.Services.Hid.HidServer; using Ryujinx.HLE.HOS.Services.Hid.HidServer;
using Ryujinx.HLE.HOS.Services.Hid.Types.Npad;
using Ryujinx.HLE.Input; using Ryujinx.HLE.Input;
using System; using System;

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Hid.Types.Npad namespace Ryujinx.HLE.HOS.Services.Hid
{ {
public enum HidNpadHandheldActivationMode public enum HidNpadHandheldActivationMode
{ {

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Hid.Types.Npad namespace Ryujinx.HLE.HOS.Services.Hid
{ {
public enum HidNpadIdType public enum HidNpadIdType
{ {

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Hid.Types.Npad namespace Ryujinx.HLE.HOS.Services.Hid
{ {
public enum HidNpadJoyAssignmentMode public enum HidNpadJoyAssignmentMode
{ {

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Hid.Types.Npad namespace Ryujinx.HLE.HOS.Services.Hid
{ {
public enum HidNpadJoyDeviceType public enum HidNpadJoyDeviceType
{ {

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Hid.Types.Npad namespace Ryujinx.HLE.HOS.Services.Hid
{ {
public enum HidNpadJoyHoldType public enum HidNpadJoyHoldType
{ {

View file

@ -1,6 +1,6 @@
using System; using System;
namespace Ryujinx.HLE.HOS.Services.Hid.Types.Npad namespace Ryujinx.HLE.HOS.Services.Hid
{ {
[Flags] [Flags]
public enum HidNpadStyle public enum HidNpadStyle

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Hid.Types.SixAxis namespace Ryujinx.HLE.HOS.Services.Hid
{ {
public struct HidAccelerometerParameters public struct HidAccelerometerParameters
{ {

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Hid.Types.SixAxis namespace Ryujinx.HLE.HOS.Services.Hid
{ {
public enum HidGyroscopeZeroDriftMode public enum HidGyroscopeZeroDriftMode
{ {

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Hid.Types.SixAxis namespace Ryujinx.HLE.HOS.Services.Hid
{ {
public struct HidSensorFusionParameters public struct HidSensorFusionParameters
{ {

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Hid.Types.Vibration namespace Ryujinx.HLE.HOS.Services.Hid
{ {
public enum HidVibrationDevicePosition public enum HidVibrationDevicePosition
{ {

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Hid.Types.Vibration namespace Ryujinx.HLE.HOS.Services.Hid
{ {
public enum HidVibrationDeviceType public enum HidVibrationDeviceType
{ {

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Hid.Types.Vibration namespace Ryujinx.HLE.HOS.Services.Hid
{ {
public struct HidVibrationDeviceValue public struct HidVibrationDeviceValue
{ {

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Hid.Types.Vibration namespace Ryujinx.HLE.HOS.Services.Hid
{ {
public struct HidVibrationValue public struct HidVibrationValue
{ {

View file

@ -3,7 +3,6 @@ using Ryujinx.Common;
using Ryujinx.HLE.HOS.Kernel.Common; using Ryujinx.HLE.HOS.Kernel.Common;
using Ryujinx.HLE.HOS.Kernel.Memory; using Ryujinx.HLE.HOS.Kernel.Memory;
using Ryujinx.HLE.HOS.Kernel.Process; using Ryujinx.HLE.HOS.Kernel.Process;
using Ryujinx.HLE.HOS.Services.Ldr.Types;
using Ryujinx.HLE.Loaders.Executables; using Ryujinx.HLE.Loaders.Executables;
using Ryujinx.HLE.Utilities; using Ryujinx.HLE.Utilities;
using System.Collections.Generic; using System.Collections.Generic;

View file

@ -1,6 +1,6 @@
using Ryujinx.HLE.Loaders.Executables; using Ryujinx.HLE.Loaders.Executables;
namespace Ryujinx.HLE.HOS.Services.Ldr.Types namespace Ryujinx.HLE.HOS.Services.Ldr
{ {
class NroInfo class NroInfo
{ {

View file

@ -1,6 +1,6 @@
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
namespace Ryujinx.HLE.HOS.Services.Ldr.Types namespace Ryujinx.HLE.HOS.Services.Ldr
{ {
[StructLayout(LayoutKind.Explicit, Size = 0x350)] [StructLayout(LayoutKind.Explicit, Size = 0x350)]
unsafe struct NrrHeader unsafe struct NrrHeader

View file

@ -1,6 +1,6 @@
using System.Collections.Generic; using System.Collections.Generic;
namespace Ryujinx.HLE.HOS.Services.Ldr.Types namespace Ryujinx.HLE.HOS.Services.Ldr
{ {
class NrrInfo class NrrInfo
{ {

View file

@ -1,5 +1,4 @@
using Ryujinx.Common.Logging; using Ryujinx.Common.Logging;
using Ryujinx.HLE.HOS.Services.Lm.LogService.Types;
using System.IO; using System.IO;
using System.Text; using System.Text;

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Lm.LogService.Types namespace Ryujinx.HLE.HOS.Services.Lm.LogService
{ {
enum LmLogField enum LmLogField
{ {

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Lm.LogService.Types namespace Ryujinx.HLE.HOS.Services.Lm.LogService
{ {
enum LmLogLevel enum LmLogLevel
{ {

View file

@ -2,9 +2,9 @@
using Ryujinx.HLE.HOS.Ipc; using Ryujinx.HLE.HOS.Ipc;
using Ryujinx.HLE.HOS.Kernel.Common; using Ryujinx.HLE.HOS.Kernel.Common;
using Ryujinx.HLE.HOS.Kernel.Threading; using Ryujinx.HLE.HOS.Kernel.Threading;
using Ryujinx.HLE.HOS.Services.Hid;
using Ryujinx.HLE.HOS.Services.Hid.HidServer; using Ryujinx.HLE.HOS.Services.Hid.HidServer;
using Ryujinx.HLE.HOS.Services.Hid.Types.Npad; using Ryujinx.HLE.HOS.Services.Nfc.Nfp.UserManager;
using Ryujinx.HLE.HOS.Services.Nfc.Nfp.UserManager.Types;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;

View file

@ -1,8 +1,8 @@
using Ryujinx.HLE.HOS.Kernel.Threading; using Ryujinx.HLE.HOS.Kernel.Threading;
using Ryujinx.HLE.HOS.Services.Hid.Types.Npad; using Ryujinx.HLE.HOS.Services.Hid;
using Ryujinx.HLE.Input; using Ryujinx.HLE.Input;
namespace Ryujinx.HLE.HOS.Services.Nfc.Nfp.UserManager.Types namespace Ryujinx.HLE.HOS.Services.Nfc.Nfp.UserManager
{ {
class Device class Device
{ {

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Nfc.Nfp.UserManager.Types namespace Ryujinx.HLE.HOS.Services.Nfc.Nfp.UserManager
{ {
enum DeviceState enum DeviceState
{ {

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Nfc.Nfp.UserManager.Types namespace Ryujinx.HLE.HOS.Services.Nfc.Nfp.UserManager
{ {
enum State enum State
{ {

View file

@ -1,5 +1,4 @@
using Ryujinx.HLE.HOS.Services.Nifm.StaticService.GeneralService.Types; using System.Collections.Generic;
using System.Collections.Generic;
using System.Linq; using System.Linq;
namespace Ryujinx.HLE.HOS.Services.Nifm.StaticService.GeneralService namespace Ryujinx.HLE.HOS.Services.Nifm.StaticService.GeneralService

View file

@ -1,4 +1,4 @@
namespace Ryujinx.HLE.HOS.Services.Nifm.StaticService.GeneralService.Types namespace Ryujinx.HLE.HOS.Services.Nifm.StaticService.GeneralService
{ {
class GeneralServiceDetail class GeneralServiceDetail
{ {

View file

@ -1,6 +1,5 @@
using Ryujinx.Common.Logging; using Ryujinx.Common.Logging;
using Ryujinx.HLE.HOS.Services.Nifm.StaticService.GeneralService; using Ryujinx.HLE.HOS.Services.Nifm.StaticService.GeneralService;
using Ryujinx.HLE.HOS.Services.Nifm.StaticService.GeneralService.Types;
using System; using System;
using System.Linq; using System.Linq;
using System.Net; using System.Net;

View file

@ -9,7 +9,6 @@ using Ryujinx.HLE.HOS.Services.Nv.NvDrvServices.NvGpuGpu;
using Ryujinx.HLE.HOS.Services.Nv.NvDrvServices.NvHostChannel; using Ryujinx.HLE.HOS.Services.Nv.NvDrvServices.NvHostChannel;
using Ryujinx.HLE.HOS.Services.Nv.NvDrvServices.NvHostCtrl; using Ryujinx.HLE.HOS.Services.Nv.NvDrvServices.NvHostCtrl;
using Ryujinx.HLE.HOS.Services.Nv.NvDrvServices.NvMap; using Ryujinx.HLE.HOS.Services.Nv.NvDrvServices.NvMap;
using Ryujinx.HLE.HOS.Services.Nv.Types;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;

Some files were not shown because too many files have changed in this diff Show more