mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2026-07-11 01:24:28 +02:00
Lib.NpTus: Stub sceNpTusGetDataAsync (#4661)
* Stub sceNpTusGetDataAsync * Remove empty comments Why not
This commit is contained in:
@@ -162,6 +162,13 @@ s32 PS4_SYSV_ABI sceNpTusGetDataAsync(int reqId, OrbisNpId* npId, OrbisNpTusSlot
|
||||
Lib_NpTus,
|
||||
"reqId = {:#x}, slotId = {}, dataStatusSize = {}, data = {}, dataSize = {}, option = {}",
|
||||
reqId, slotId, dataStatusSize, data, dataSize, fmt::ptr(option));
|
||||
NpTusRequest* req = nullptr;
|
||||
if (auto ret = GetRequest(reqId, &req); ret < 0) {
|
||||
return ret;
|
||||
}
|
||||
|
||||
req->Start([=]() { return 0; });
|
||||
|
||||
return ORBIS_OK;
|
||||
}
|
||||
|
||||
@@ -248,10 +255,7 @@ s32 PS4_SYSV_ABI sceNpTusGetMultiSlotVariableAsync(int reqId, OrbisNpId* npId,
|
||||
return ret;
|
||||
}
|
||||
|
||||
req->Start([=]() {
|
||||
//
|
||||
return 0;
|
||||
});
|
||||
req->Start([=]() { return 0; });
|
||||
|
||||
return ORBIS_OK;
|
||||
}
|
||||
@@ -304,10 +308,7 @@ s32 PS4_SYSV_ABI sceNpTusGetMultiUserDataStatusAsync(int reqId, OrbisNpId* npIds
|
||||
return ret;
|
||||
}
|
||||
|
||||
req->Start([=]() {
|
||||
//
|
||||
return 0;
|
||||
});
|
||||
req->Start([=]() { return 0; });
|
||||
|
||||
return ORBIS_OK;
|
||||
}
|
||||
@@ -358,10 +359,7 @@ s32 PS4_SYSV_ABI sceNpTusSetDataAsync(int reqId, OrbisNpId* npId, OrbisNpTusSlot
|
||||
if (auto ret = GetRequest(reqId, &req); ret < 0) {
|
||||
return ret;
|
||||
}
|
||||
req->Start([=]() {
|
||||
//
|
||||
return 0;
|
||||
});
|
||||
req->Start([=]() { return 0; });
|
||||
|
||||
return ORBIS_OK;
|
||||
}
|
||||
@@ -431,10 +429,7 @@ s32 PS4_SYSV_ABI sceNpTusSetMultiSlotVariableAsync(int reqId, OrbisNpId* npId,
|
||||
return ret;
|
||||
}
|
||||
|
||||
req->Start([=]() {
|
||||
//
|
||||
return 0;
|
||||
});
|
||||
req->Start([=]() { return 0; });
|
||||
|
||||
return ORBIS_OK;
|
||||
}
|
||||
@@ -684,10 +679,7 @@ s32 PS4_SYSV_ABI sceNpTusGetDataAAsync(int reqId, OrbisNpAccountId accountId,
|
||||
return ret;
|
||||
}
|
||||
|
||||
req->Start([=]() {
|
||||
//
|
||||
return 0;
|
||||
});
|
||||
req->Start([=]() { return 0; });
|
||||
|
||||
return ORBIS_OK;
|
||||
}
|
||||
@@ -814,10 +806,7 @@ s32 PS4_SYSV_ABI sceNpTusGetMultiSlotDataStatusAAsync(int reqId, OrbisNpAccountI
|
||||
return ret;
|
||||
}
|
||||
|
||||
req->Start([=]() {
|
||||
//
|
||||
return 0;
|
||||
});
|
||||
req->Start([=]() { return 0; });
|
||||
|
||||
return ORBIS_OK;
|
||||
}
|
||||
@@ -1029,10 +1018,7 @@ s32 PS4_SYSV_ABI sceNpTusSetDataAAsync(int reqId, OrbisNpAccountId accountId,
|
||||
return ret;
|
||||
}
|
||||
|
||||
req->Start([=]() {
|
||||
//
|
||||
return 0;
|
||||
});
|
||||
req->Start([=]() { return 0; });
|
||||
|
||||
return ORBIS_OK;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user