private static void OnClient(IntPtr thisptr, IntPtr pvParam) { Action <RemoteStorageAppSyncProgress_t> action = RemoteStorageAppSyncProgress_t.actionClient; if (action != null) { action(RemoteStorageAppSyncProgress_t.Fill(pvParam)); } else { } }
public static async Task <RemoteStorageAppSyncProgress_t?> GetResultAsync(SteamAPICall_t handle) { RemoteStorageAppSyncProgress_t?nullable; bool flag = false; while (!SteamUtils.IsCallComplete(handle, out flag)) { await Task.Delay(1); if ((SteamClient.IsValid ? false : !SteamServer.IsValid)) { nullable = null; return(nullable); } } if (!flag) { IntPtr intPtr = Marshal.AllocHGlobal(RemoteStorageAppSyncProgress_t.StructSize); try { if (!(!SteamUtils.Internal.GetAPICallResult(handle, intPtr, RemoteStorageAppSyncProgress_t.StructSize, 1303, ref flag) | flag)) { nullable = new RemoteStorageAppSyncProgress_t?(RemoteStorageAppSyncProgress_t.Fill(intPtr)); } else { nullable = null; } } finally { Marshal.FreeHGlobal(intPtr); } } else { nullable = null; } return(nullable); }