|
|
|
@ -278,25 +278,15 @@ private: |
|
|
|
rb.Push(0); |
|
|
|
} |
|
|
|
|
|
|
|
void GetUserPresenceView(HLERequestContext& ctx) { |
|
|
|
LOG_DEBUG(Service_Friend, "(STUBBED) called"); |
|
|
|
|
|
|
|
u8 buf[0xe0]{}; |
|
|
|
ctx.WriteBuffer(buf); |
|
|
|
|
|
|
|
IPC::ResponseBuilder rb{ctx, 3}; |
|
|
|
rb.Push(ResultSuccess); |
|
|
|
} |
|
|
|
|
|
|
|
void GetUserPresenceView(HLERequestContext& ctx) { |
|
|
|
IPC::RequestParser rp{ctx}; |
|
|
|
const auto uuid = rp.PopRaw<Common::UUID>(); |
|
|
|
|
|
|
|
LOG_DEBUG(Service_Friend, "(STUBBED) called, uuid={}.", uuid.RawString()); |
|
|
|
|
|
|
|
// TODO (jarrodnorwell)
|
|
|
|
u8 buf[0xe0]{}; |
|
|
|
ctx.WriteBuffer(buf); |
|
|
|
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2}; |
|
|
|
IPC::ResponseBuilder rb{ctx, 3}; |
|
|
|
rb.Push(ResultSuccess); |
|
|
|
} |
|
|
|
|
|
|
|
|