[Kernel] Suffix export functions with _entry.
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
******************************************************************************
|
||||
* Xenia : Xbox 360 Emulator Research Project *
|
||||
******************************************************************************
|
||||
* Copyright 2021 Ben Vanik. All rights reserved. *
|
||||
* Copyright 2022 Ben Vanik. All rights reserved. *
|
||||
* Released under the BSD license - see LICENSE in the root for more details. *
|
||||
******************************************************************************
|
||||
*/
|
||||
@@ -16,24 +16,26 @@ namespace xe {
|
||||
namespace kernel {
|
||||
namespace xam {
|
||||
|
||||
dword_result_t XamPartyGetUserList(dword_t player_count, lpdword_t party_list) {
|
||||
dword_result_t XamPartyGetUserList_entry(dword_t player_count,
|
||||
lpdword_t party_list) {
|
||||
// 5345085D wants specifically this code to skip loading party data.
|
||||
// This code is not documented in NT_STATUS code list
|
||||
return 0x807D0003;
|
||||
}
|
||||
DECLARE_XAM_EXPORT1(XamPartyGetUserList, kNone, kStub);
|
||||
|
||||
dword_result_t XamPartySendGameInvites(dword_t r3, dword_t r4, dword_t r5) {
|
||||
dword_result_t XamPartySendGameInvites_entry(dword_t r3, dword_t r4,
|
||||
dword_t r5) {
|
||||
return X_ERROR_FUNCTION_FAILED;
|
||||
}
|
||||
DECLARE_XAM_EXPORT1(XamPartySendGameInvites, kNone, kStub);
|
||||
|
||||
dword_result_t XamPartySetCustomData(dword_t r3, dword_t r4, dword_t r5) {
|
||||
dword_result_t XamPartySetCustomData_entry(dword_t r3, dword_t r4, dword_t r5) {
|
||||
return X_ERROR_FUNCTION_FAILED;
|
||||
}
|
||||
DECLARE_XAM_EXPORT1(XamPartySetCustomData, kNone, kStub);
|
||||
|
||||
dword_result_t XamPartyGetBandwidth(dword_t r3, dword_t r4) {
|
||||
dword_result_t XamPartyGetBandwidth_entry(dword_t r3, dword_t r4) {
|
||||
return X_ERROR_FUNCTION_FAILED;
|
||||
}
|
||||
DECLARE_XAM_EXPORT1(XamPartyGetBandwidth, kNone, kStub);
|
||||
|
||||
Reference in New Issue
Block a user