forked from RPCS3/rpcs3
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
50 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#include "stdafx.h" | ||
#include "Emu/System.h" | ||
#include "Emu/Cell/PPUModule.h" | ||
|
||
namespace vm { using namespace ps3; } | ||
|
||
logs::channel sceNpMatchingInt("sceNpMatchingInt"); | ||
|
||
s32 sceNpMatchingGetRoomMemberList() | ||
{ | ||
UNIMPLEMENTED_FUNC(sceNpMatchingInt); | ||
return CELL_OK; | ||
} | ||
|
||
// Parameter "unknown" added to distinguish this function | ||
// from the one in sceNp.cpp which has the same name | ||
s32 sceNpMatchingJoinRoomGUI(vm::ptr<void> unknown) | ||
{ | ||
UNIMPLEMENTED_FUNC(sceNpMatchingInt); | ||
return CELL_OK; | ||
} | ||
|
||
s32 sceNpMatchingGetRoomListGUI() | ||
{ | ||
UNIMPLEMENTED_FUNC(sceNpMatchingInt); | ||
return CELL_OK; | ||
} | ||
|
||
s32 sceNpMatchingSendRoomMessage() | ||
{ | ||
UNIMPLEMENTED_FUNC(sceNpMatchingInt); | ||
return CELL_OK; | ||
} | ||
|
||
DECLARE(ppu_module_manager::sceNpMatchingInt)("sceNpMatchingInt", []() | ||
{ | ||
REG_FUNC(sceNpMatchingInt, sceNpMatchingGetRoomMemberList); | ||
REG_FUNC(sceNpMatchingInt, sceNpMatchingJoinRoomGUI); | ||
REG_FUNC(sceNpMatchingInt, sceNpMatchingGetRoomListGUI); | ||
REG_FUNC(sceNpMatchingInt, sceNpMatchingSendRoomMessage); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters