mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-29 14:17:11 +02:00
misc: chore: Use explicit types in Horizon project
This commit is contained in:
parent
5eba42fa06
commit
69e0b79bd9
23 changed files with 71 additions and 66 deletions
|
@ -22,9 +22,9 @@ namespace Ryujinx.Horizon.Bcat.Ipc
|
|||
[CmifCommand(0)]
|
||||
public Result CreateFileService(out IDeliveryCacheFileService service)
|
||||
{
|
||||
using var libHacService = new SharedRef<LibHac.Bcat.Impl.Ipc.IDeliveryCacheFileService>();
|
||||
using SharedRef<LibHac.Bcat.Impl.Ipc.IDeliveryCacheFileService> libHacService = new SharedRef<LibHac.Bcat.Impl.Ipc.IDeliveryCacheFileService>();
|
||||
|
||||
var resultCode = _libHacService.Get.CreateFileService(ref libHacService.Ref);
|
||||
LibHac.Result resultCode = _libHacService.Get.CreateFileService(ref libHacService.Ref);
|
||||
|
||||
if (resultCode.IsSuccess())
|
||||
{
|
||||
|
@ -41,9 +41,9 @@ namespace Ryujinx.Horizon.Bcat.Ipc
|
|||
[CmifCommand(1)]
|
||||
public Result CreateDirectoryService(out IDeliveryCacheDirectoryService service)
|
||||
{
|
||||
using var libHacService = new SharedRef<LibHac.Bcat.Impl.Ipc.IDeliveryCacheDirectoryService>();
|
||||
using SharedRef<LibHac.Bcat.Impl.Ipc.IDeliveryCacheDirectoryService> libHacService = new SharedRef<LibHac.Bcat.Impl.Ipc.IDeliveryCacheDirectoryService>();
|
||||
|
||||
var resultCode = _libHacService.Get.CreateDirectoryService(ref libHacService.Ref);
|
||||
LibHac.Result resultCode = _libHacService.Get.CreateDirectoryService(ref libHacService.Ref);
|
||||
|
||||
if (resultCode.IsSuccess())
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue