| 348 | } |
| 349 | |
| 350 | void PlayFabClientAPI::CreateSharedGroup( |
| 351 | CreateSharedGroupRequest& request, |
| 352 | ProcessApiCallback<CreateSharedGroupResult> callback, |
| 353 | ErrorCallback errorCallback, |
| 354 | void* customData |
| 355 | ) |
| 356 | { |
| 357 | |
| 358 | IPlayFabHttp& http = IPlayFabHttp::Get(); |
| 359 | const auto requestJson = request.ToJson(); |
| 360 | http.AddRequest("/Client/CreateSharedGroup", "X-Authorization", PlayFabSettings::clientSessionTicket, requestJson, OnCreateSharedGroupResult, SharedVoidPointer((callback == nullptr) ? nullptr : new ProcessApiCallback<CreateSharedGroupResult>(callback)), errorCallback, customData); |
| 361 | } |
| 362 | |
| 363 | void PlayFabClientAPI::OnCreateSharedGroupResult(CallRequestContainer& request) |
| 364 | { |
nothing calls this directly
no test coverage detected