Skip to content

Commit

Permalink
Stub some things
Browse files Browse the repository at this point in the history
  • Loading branch information
igor725 committed May 27, 2024
1 parent dba7044 commit 89e0b76
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
33 changes: 33 additions & 0 deletions modules/libSceNpToolkit2/entry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -397,4 +397,37 @@ EXPORT SYSV_ABI int32_t __NID(_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11UserProf
LOG_ERR(L"todo %S", __FUNCTION__);
return Ok;
}

/**
* @brief sce::Toolkit::NP::V2::Core::Response<sce::Toolkit::NP::V2::Matching::Room>::~Response()
*
*/

EXPORT SYSV_ABI int32_t __NID(_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_8Matching4RoomEED1Ev)() {
LOG_USE_MODULE(libSceNpToolkit2);
LOG_ERR(L"todo %S", __FUNCTION__);
return Ok;
}

/**
* @brief sce::Toolkit::NP::V2::Core::RequestBase::getFunctionType() const
*
*/

EXPORT SYSV_ABI int32_t __NID(_ZNK3sce7Toolkit2NP2V24Core11RequestBase15getFunctionTypeEv)() {
LOG_USE_MODULE(libSceNpToolkit2);
LOG_ERR(L"todo %S", __FUNCTION__);
return Ok;
}

/**
* @brief sce::Toolkit::NP::V2::Core::Response<sce::Toolkit::NP::V2::UserProfile::NpProfiles>::~Response()
*
*/

EXPORT SYSV_ABI int32_t __NID(_ZN3sce7Toolkit2NP2V24Core8ResponseINS2_11UserProfile10NpProfilesEED1Ev)() {
LOG_USE_MODULE(libSceNpToolkit2);
LOG_ERR(L"todo %S", __FUNCTION__);
return Ok;
}
}
8 changes: 8 additions & 0 deletions modules/libSceNpWebApi/entry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,14 @@ EXPORT SYSV_ABI int32_t sceNpWebApiCreateContextA(int32_t libCtxId, int32_t user
return Ok;
}

EXPORT SYSV_ABI int32_t sceNpWebApiCreatePushEventFilter() {
return Ok;
}

EXPORT SYSV_ABI int32_t sceNpWebApiCreateServicePushEventFilter() {
return Ok;
}

EXPORT SYSV_ABI int32_t sceNpWebApiDeleteContext(int32_t titleUserCtxId) {
return Ok;
}
Expand Down

0 comments on commit 89e0b76

Please sign in to comment.