| 77 | } |
| 78 | |
| 79 | void PlayFabClientAPI::AddGenericID( |
| 80 | AddGenericIDRequest& request, |
| 81 | ProcessApiCallback<AddGenericIDResult> callback, |
| 82 | ErrorCallback errorCallback, |
| 83 | void* customData |
| 84 | ) |
| 85 | { |
| 86 | |
| 87 | IPlayFabHttp& http = IPlayFabHttp::Get(); |
| 88 | const auto requestJson = request.ToJson(); |
| 89 | http.AddRequest("/Client/AddGenericID", "X-Authorization", PlayFabSettings::clientSessionTicket, requestJson, OnAddGenericIDResult, SharedVoidPointer((callback == nullptr) ? nullptr : new ProcessApiCallback<AddGenericIDResult>(callback)), errorCallback, customData); |
| 90 | } |
| 91 | |
| 92 | void PlayFabClientAPI::OnAddGenericIDResult(CallRequestContainer& request) |
| 93 | { |
nothing calls this directly
no test coverage detected