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