diff options
| author | bunnei <bunneidev@gmail.com> | 2015-01-05 22:48:58 -0500 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2015-01-05 22:48:58 -0500 |
| commit | 9eaef4e04ac23640867448eb2ad416c23cda93e3 (patch) | |
| tree | 65877eaf75b7d6f8c1fd06c6ad7c40cabe40a352 /src/core/hle/service/csnd_snd.cpp | |
| parent | 9b83f0e15859ed56a8e25f204484d2cd34b74f16 (diff) | |
| parent | 379b39e58395187fb0806e05bfaa29a9879428c4 (diff) | |
Merge pull request #413 from purpasmart96/serv_clean
Services: Clean up a few things and add a few function names
Diffstat (limited to 'src/core/hle/service/csnd_snd.cpp')
| -rw-r--r-- | src/core/hle/service/csnd_snd.cpp | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/core/hle/service/csnd_snd.cpp b/src/core/hle/service/csnd_snd.cpp index aef8cfbca..3a557efe1 100644 --- a/src/core/hle/service/csnd_snd.cpp +++ b/src/core/hle/service/csnd_snd.cpp @@ -14,16 +14,15 @@ namespace CSND_SND { const Interface::FunctionInfo FunctionTable[] = { {0x00010140, nullptr, "Initialize"}, {0x00020000, nullptr, "Shutdown"}, - {0x00030040, nullptr, "Unknown"}, - {0x00040080, nullptr, "Unknown"}, - {0x00050000, nullptr, "Unknown"}, - {0x00060000, nullptr, "Unknown"}, - {0x00070000, nullptr, "Unknown"}, - {0x00080040, nullptr, "Unknown"}, + {0x00030040, nullptr, "ExecuteType0Commands"}, + {0x00040080, nullptr, "ExecuteType1Commands"}, + {0x00050000, nullptr, "AcquireSoundChannels"}, + {0x00060000, nullptr, "ReleaseSoundChannels"}, + {0x00070000, nullptr, "AcquireCaptureDevice"}, + {0x00080040, nullptr, "ReleaseCaptureDevice"}, {0x00090082, nullptr, "FlushDCache"}, {0x000A0082, nullptr, "StoreDCache"}, {0x000B0082, nullptr, "InvalidateDCache"}, - {0x000C0000, nullptr, "Unknown"}, }; //////////////////////////////////////////////////////////////////////////////////////////////////// |
