Revert "Adjust naming conventions and general refactoring in HLE Project (#490)" (#526)

This reverts commit 85dbb9559a.
This commit is contained in:
gdkchan 2018-12-04 22:52:39 -02:00 committed by GitHub
parent 85dbb9559a
commit 3615a70cae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
299 changed files with 12276 additions and 12268 deletions

View file

@ -5,13 +5,13 @@ namespace Ryujinx.HLE.HOS.Services.Am
{
class IApplicationProxy : IpcService
{
private Dictionary<int, ServiceProcessRequest> _commands;
private Dictionary<int, ServiceProcessRequest> m_Commands;
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
public IApplicationProxy()
{
_commands = new Dictionary<int, ServiceProcessRequest>
m_Commands = new Dictionary<int, ServiceProcessRequest>()
{
{ 0, GetCommonStateGetter },
{ 1, GetSelfController },
@ -24,58 +24,58 @@ namespace Ryujinx.HLE.HOS.Services.Am
};
}
public long GetCommonStateGetter(ServiceCtx context)
public long GetCommonStateGetter(ServiceCtx Context)
{
MakeObject(context, new ICommonStateGetter(context.Device.System));
MakeObject(Context, new ICommonStateGetter(Context.Device.System));
return 0;
}
public long GetSelfController(ServiceCtx context)
public long GetSelfController(ServiceCtx Context)
{
MakeObject(context, new ISelfController(context.Device.System));
MakeObject(Context, new ISelfController(Context.Device.System));
return 0;
}
public long GetWindowController(ServiceCtx context)
public long GetWindowController(ServiceCtx Context)
{
MakeObject(context, new IWindowController());
MakeObject(Context, new IWindowController());
return 0;
}
public long GetAudioController(ServiceCtx context)
public long GetAudioController(ServiceCtx Context)
{
MakeObject(context, new IAudioController());
MakeObject(Context, new IAudioController());
return 0;
}
public long GetDisplayController(ServiceCtx context)
public long GetDisplayController(ServiceCtx Context)
{
MakeObject(context, new IDisplayController());
MakeObject(Context, new IDisplayController());
return 0;
}
public long GetLibraryAppletCreator(ServiceCtx context)
public long GetLibraryAppletCreator(ServiceCtx Context)
{
MakeObject(context, new ILibraryAppletCreator());
MakeObject(Context, new ILibraryAppletCreator());
return 0;
}
public long GetApplicationFunctions(ServiceCtx context)
public long GetApplicationFunctions(ServiceCtx Context)
{
MakeObject(context, new IApplicationFunctions());
MakeObject(Context, new IApplicationFunctions());
return 0;
}
public long GetDebugFunctions(ServiceCtx context)
public long GetDebugFunctions(ServiceCtx Context)
{
MakeObject(context, new IDebugFunctions());
MakeObject(Context, new IDebugFunctions());
return 0;
}