diff options
| author | 2019-04-22 17:53:58 -0400 | |
|---|---|---|
| committer | 2019-09-21 16:43:10 -0400 | |
| commit | 4b91057688d6c388f7cbb71e23024d97233ab472 (patch) | |
| tree | 9460e695d16cdd403d699ed021999c44729c885c /src/core/hle/service/service.h | |
| parent | am: Unstub IApplicationFunctions EnsureSaveData (20) (diff) | |
| download | yuzu-4b91057688d6c388f7cbb71e23024d97233ab472.tar.gz yuzu-4b91057688d6c388f7cbb71e23024d97233ab472.tar.xz yuzu-4b91057688d6c388f7cbb71e23024d97233ab472.zip | |
services: Pass FileSystemController as reference to services that need it
Diffstat (limited to 'src/core/hle/service/service.h')
| -rw-r--r-- | src/core/hle/service/service.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/hle/service/service.h b/src/core/hle/service/service.h index c6c4bdae5..aef964861 100644 --- a/src/core/hle/service/service.h +++ b/src/core/hle/service/service.h | |||
| @@ -18,10 +18,6 @@ namespace Core { | |||
| 18 | class System; | 18 | class System; |
| 19 | } | 19 | } |
| 20 | 20 | ||
| 21 | namespace FileSys { | ||
| 22 | class VfsFilesystem; | ||
| 23 | } | ||
| 24 | |||
| 25 | namespace Kernel { | 21 | namespace Kernel { |
| 26 | class ClientPort; | 22 | class ClientPort; |
| 27 | class ServerPort; | 23 | class ServerPort; |
| @@ -31,6 +27,10 @@ class HLERequestContext; | |||
| 31 | 27 | ||
| 32 | namespace Service { | 28 | namespace Service { |
| 33 | 29 | ||
| 30 | namespace FileSystem { | ||
| 31 | class FileSystemController; | ||
| 32 | } // namespace FileSystem | ||
| 33 | |||
| 34 | namespace SM { | 34 | namespace SM { |
| 35 | class ServiceManager; | 35 | class ServiceManager; |
| 36 | } | 36 | } |