summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2015-11-22 13:38:29 -0500
committerGravatar bunnei2015-11-22 13:38:29 -0500
commit907c21d7faef87f6d524aaa3446313a50d67a1fb (patch)
tree2f19dec20b7ee7d49f7fcc336ecbcf1703271e0f /src
parentMerge pull request #1237 from Subv/ubos (diff)
parentAdd Initialize and GenerateRandomData stubs (diff)
downloadyuzu-907c21d7faef87f6d524aaa3446313a50d67a1fb.tar.gz
yuzu-907c21d7faef87f6d524aaa3446313a50d67a1fb.tar.xz
yuzu-907c21d7faef87f6d524aaa3446313a50d67a1fb.zip
Merge pull request #1247 from polaris-/add-ssl-stubs
Add Initialize and GenerateRandomData function names to ssl:C
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/ssl_c.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/service/ssl_c.cpp b/src/core/hle/service/ssl_c.cpp
index e634276fc..04ab194e6 100644
--- a/src/core/hle/service/ssl_c.cpp
+++ b/src/core/hle/service/ssl_c.cpp
@@ -11,8 +11,10 @@
11namespace SSL_C { 11namespace SSL_C {
12 12
13const Interface::FunctionInfo FunctionTable[] = { 13const Interface::FunctionInfo FunctionTable[] = {
14 {0x00010002, nullptr, "Initialize"},
14 {0x000200C2, nullptr, "CreateContext"}, 15 {0x000200C2, nullptr, "CreateContext"},
15 {0x00050082, nullptr, "AddTrustedRootCA"}, 16 {0x00050082, nullptr, "AddTrustedRootCA"},
17 {0x00110042, nullptr, "GenerateRandomData"},
16 {0x00150082, nullptr, "Read"}, 18 {0x00150082, nullptr, "Read"},
17 {0x00170082, nullptr, "Write"}, 19 {0x00170082, nullptr, "Write"},
18}; 20};