From fdbb97748bfd69148fddcef6e563cd757f186cf0 Mon Sep 17 00:00:00 2001 From: Garry Newman Date: Fri, 4 Sep 2020 10:04:57 +0100 Subject: [PATCH] Removing Removed --- ...teamNetworkingConnectionCustomSignaling.cs | 41 ------------------- ...eamNetworkingCustomSignalingRecvContext.cs | 40 ------------------ 2 files changed, 81 deletions(-) delete mode 100644 Facepunch.Steamworks/Generated/Interfaces/ISteamNetworkingConnectionCustomSignaling.cs delete mode 100644 Facepunch.Steamworks/Generated/Interfaces/ISteamNetworkingCustomSignalingRecvContext.cs diff --git a/Facepunch.Steamworks/Generated/Interfaces/ISteamNetworkingConnectionCustomSignaling.cs b/Facepunch.Steamworks/Generated/Interfaces/ISteamNetworkingConnectionCustomSignaling.cs deleted file mode 100644 index 3379820..0000000 --- a/Facepunch.Steamworks/Generated/Interfaces/ISteamNetworkingConnectionCustomSignaling.cs +++ /dev/null @@ -1,41 +0,0 @@ -using System; -using System.Runtime.InteropServices; -using System.Text; -using System.Threading.Tasks; -using Steamworks.Data; - - -namespace Steamworks -{ - internal class ISteamNetworkingConnectionCustomSignaling : SteamInterface - { - - internal ISteamNetworkingConnectionCustomSignaling( bool IsGameServer ) - { - SetupInterface( IsGameServer ); - } - - #region FunctionMeta - [DllImport( Platform.LibraryName, EntryPoint = "SteamAPI_ISteamNetworkingConnectionCustomSignaling_SendSignal", CallingConvention = Platform.CC)] - [return: MarshalAs( UnmanagedType.I1 )] - private static extern bool _SendSignal( IntPtr self, Connection hConn, ref ConnectionInfo info, IntPtr pMsg, int cbMsg ); - - #endregion - internal bool SendSignal( Connection hConn, ref ConnectionInfo info, IntPtr pMsg, int cbMsg ) - { - var returnValue = _SendSignal( Self, hConn, ref info, pMsg, cbMsg ); - return returnValue; - } - - #region FunctionMeta - [DllImport( Platform.LibraryName, EntryPoint = "SteamAPI_ISteamNetworkingConnectionCustomSignaling_Release", CallingConvention = Platform.CC)] - private static extern void _Release( IntPtr self ); - - #endregion - internal void Release() - { - _Release( Self ); - } - - } -} diff --git a/Facepunch.Steamworks/Generated/Interfaces/ISteamNetworkingCustomSignalingRecvContext.cs b/Facepunch.Steamworks/Generated/Interfaces/ISteamNetworkingCustomSignalingRecvContext.cs deleted file mode 100644 index 6709195..0000000 --- a/Facepunch.Steamworks/Generated/Interfaces/ISteamNetworkingCustomSignalingRecvContext.cs +++ /dev/null @@ -1,40 +0,0 @@ -using System; -using System.Runtime.InteropServices; -using System.Text; -using System.Threading.Tasks; -using Steamworks.Data; - - -namespace Steamworks -{ - internal class ISteamNetworkingCustomSignalingRecvContext : SteamInterface - { - - internal ISteamNetworkingCustomSignalingRecvContext( bool IsGameServer ) - { - SetupInterface( IsGameServer ); - } - - #region FunctionMeta - [DllImport( Platform.LibraryName, EntryPoint = "SteamAPI_ISteamNetworkingCustomSignalingRecvContext_OnConnectRequest", CallingConvention = Platform.CC)] - private static extern IntPtr _OnConnectRequest( IntPtr self, Connection hConn, ref NetIdentity identityPeer ); - - #endregion - internal IntPtr OnConnectRequest( Connection hConn, ref NetIdentity identityPeer ) - { - var returnValue = _OnConnectRequest( Self, hConn, ref identityPeer ); - return returnValue; - } - - #region FunctionMeta - [DllImport( Platform.LibraryName, EntryPoint = "SteamAPI_ISteamNetworkingCustomSignalingRecvContext_SendRejectionSignal", CallingConvention = Platform.CC)] - private static extern void _SendRejectionSignal( IntPtr self, ref NetIdentity identityPeer, IntPtr pMsg, int cbMsg ); - - #endregion - internal void SendRejectionSignal( ref NetIdentity identityPeer, IntPtr pMsg, int cbMsg ) - { - _SendRejectionSignal( Self, ref identityPeer, pMsg, cbMsg ); - } - - } -}