Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Suyu
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
many-archive
Suyu
Commits
8e7da732
There was an error fetching the commit references. Please try again later.
Commit
8e7da732
authored
7 years ago
by
bunnei
Browse files
Options
Downloads
Patches
Plain Diff
fsp_srv: Stub MountSdCard.
parent
0532de65
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/core/hle/service/filesystem/fsp_srv.cpp
+8
-0
8 additions, 0 deletions
src/core/hle/service/filesystem/fsp_srv.cpp
src/core/hle/service/filesystem/fsp_srv.h
+1
-0
1 addition, 0 deletions
src/core/hle/service/filesystem/fsp_srv.h
with
9 additions
and
0 deletions
src/core/hle/service/filesystem/fsp_srv.cpp
+
8
−
0
View file @
8e7da732
...
...
@@ -70,6 +70,7 @@ private:
FSP_SRV
::
FSP_SRV
()
:
ServiceFramework
(
"fsp-srv"
)
{
static
const
FunctionInfo
functions
[]
=
{
{
1
,
&
FSP_SRV
::
Initalize
,
"Initalize"
},
{
18
,
&
FSP_SRV
::
MountSdCard
,
"MountSdCard"
},
{
200
,
&
FSP_SRV
::
OpenDataStorageByCurrentProcess
,
"OpenDataStorageByCurrentProcess"
},
{
202
,
nullptr
,
"OpenDataStorageByDataId"
},
{
203
,
&
FSP_SRV
::
OpenRomStorage
,
"OpenRomStorage"
},
...
...
@@ -96,6 +97,13 @@ void FSP_SRV::Initalize(Kernel::HLERequestContext& ctx) {
rb
.
Push
(
RESULT_SUCCESS
);
}
void
FSP_SRV
::
MountSdCard
(
Kernel
::
HLERequestContext
&
ctx
)
{
LOG_WARNING
(
Service_FS
,
"(STUBBED) called"
);
IPC
::
ResponseBuilder
rb
{
ctx
,
2
};
rb
.
Push
(
RESULT_SUCCESS
);
}
void
FSP_SRV
::
GetGlobalAccessLogMode
(
Kernel
::
HLERequestContext
&
ctx
)
{
LOG_WARNING
(
Service_FS
,
"(STUBBED) called"
);
...
...
This diff is collapsed.
Click to expand it.
src/core/hle/service/filesystem/fsp_srv.h
+
1
−
0
View file @
8e7da732
...
...
@@ -23,6 +23,7 @@ private:
void
TryLoadRomFS
();
void
Initalize
(
Kernel
::
HLERequestContext
&
ctx
);
void
MountSdCard
(
Kernel
::
HLERequestContext
&
ctx
);
void
GetGlobalAccessLogMode
(
Kernel
::
HLERequestContext
&
ctx
);
void
OpenDataStorageByCurrentProcess
(
Kernel
::
HLERequestContext
&
ctx
);
void
OpenRomStorage
(
Kernel
::
HLERequestContext
&
ctx
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment