private static void OnServer(IntPtr thisptr, IntPtr pvParam) { Action <DlcInstalled_t> action = DlcInstalled_t.actionServer; if (action != null) { action(DlcInstalled_t.Fill(pvParam)); } else { } }
public static async Task <DlcInstalled_t?> GetResultAsync(SteamAPICall_t handle) { DlcInstalled_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(DlcInstalled_t.StructSize); try { if (!(!SteamUtils.Internal.GetAPICallResult(handle, intPtr, DlcInstalled_t.StructSize, 1005, ref flag) | flag)) { nullable = new DlcInstalled_t?(DlcInstalled_t.Fill(intPtr)); } else { nullable = null; } } finally { Marshal.FreeHGlobal(intPtr); } } else { nullable = null; } return(nullable); }