コード例 #1
0
ファイル: ENetApi.X64.cs プロジェクト: blockspacer/FrankE
 public override int address_get_host(ref ENetAddress address, byte[] hostName, IntPtr nameLength)
 {
     return(native_address_get_host(ref address, hostName, nameLength));
 }
コード例 #2
0
ファイル: ENetApi.X64.cs プロジェクト: blockspacer/FrankE
 static extern ENetHost *native_host_create(ref ENetAddress address,
                                            IntPtr peerLimit, IntPtr channelLimit, uint incomingBandwidth, uint outgoingBandwidth);
コード例 #3
0
ファイル: ENetApi.X64.cs プロジェクト: blockspacer/FrankE
 public override int address_set_host(ref ENetAddress address, byte[] hostName)
 {
     return(native_address_set_host(ref address, hostName));
 }
コード例 #4
0
ファイル: ENetApi.X64.cs プロジェクト: blockspacer/FrankE
 public override ENetHost *host_create(ref ENetAddress address,
                                       IntPtr peerLimit, IntPtr channelLimit, uint incomingBandwidth, uint outgoingBandwidth)
 {
     return(native_host_create(ref address, peerLimit, channelLimit, incomingBandwidth, outgoingBandwidth));
 }
コード例 #5
0
ファイル: ENetApi.X64.cs プロジェクト: blockspacer/FrankE
 static extern ENetPeer *native_host_connect(ENetHost *host, ref ENetAddress address, IntPtr channelCount, uint data);
コード例 #6
0
ファイル: ENetApi.X64.cs プロジェクト: blockspacer/FrankE
 static extern int native_address_get_host(ref ENetAddress address, byte[] hostName, IntPtr nameLength);
コード例 #7
0
ファイル: ENetApi.cs プロジェクト: pilgarlicx/enetcs
 public abstract int address_get_host(ref ENetAddress address, byte[] hostName, IntPtr nameLength);
コード例 #8
0
ファイル: ENetApi.cs プロジェクト: pilgarlicx/enetcs
 public static int enet_address_set_host(ref ENetAddress address, byte[] hostName)
 {
     return(Platform.address_set_host(ref address, hostName));
 }
コード例 #9
0
ファイル: ENetApi.cs プロジェクト: pilgarlicx/enetcs
 public static int enet_address_get_host(ref ENetAddress address, byte[] hostName, IntPtr nameLength)
 {
     return(Platform.address_get_host(ref address, hostName, nameLength));
 }
コード例 #10
0
ファイル: ENetApi.cs プロジェクト: pilgarlicx/enetcs
 public abstract ENetPeer *host_connect(ENetHost *host, ref ENetAddress address, IntPtr channelCount, uint data);
コード例 #11
0
ファイル: ENetApi.cs プロジェクト: pilgarlicx/enetcs
 public abstract ENetHost *host_create(ref ENetAddress address,
                                       IntPtr peerLimit, IntPtr channelLimit, uint incomingBandwidth, uint outgoingBandwidth);
コード例 #12
0
ファイル: ENetApi.cs プロジェクト: pilgarlicx/enetcs
 public static ENetHost *enet_host_create(ref ENetAddress address,
                                          IntPtr peerLimit, IntPtr channelLimit, uint incomingBandwidth, uint outgoingBandwidth)
 {
     return(Platform.host_create(ref address, peerLimit, channelLimit, incomingBandwidth, outgoingBandwidth));
 }
コード例 #13
0
ファイル: ENetApi.cs プロジェクト: pilgarlicx/enetcs
 public static ENetPeer *enet_host_connect(ENetHost *host, ref ENetAddress address, IntPtr channelCount, uint data)
 {
     return(Platform.host_connect(host, ref address, channelCount, data));
 }
コード例 #14
0
ファイル: ENetApi.cs プロジェクト: pilgarlicx/enetcs
 public abstract int address_get_host_ip(ref ENetAddress address, byte[] hostIP, IntPtr ipLength);
コード例 #15
0
ファイル: ENetApi.X64.cs プロジェクト: blockspacer/FrankE
 public override int address_get_host_ip(ref ENetAddress address, byte[] hostIP, IntPtr ipLength)
 {
     return(native_address_get_host_ip(ref address, hostIP, ipLength));
 }
コード例 #16
0
ファイル: ENetApi.cs プロジェクト: pilgarlicx/enetcs
 public static int enet_address_get_host_ip(ref ENetAddress address, byte[] hostIP, IntPtr ipLength)
 {
     return(Platform.address_get_host_ip(ref address, hostIP, ipLength));
 }
コード例 #17
0
ファイル: ENetApi.X64.cs プロジェクト: blockspacer/FrankE
 static extern int native_address_set_host(ref ENetAddress address, byte[] hostName);
コード例 #18
0
ファイル: ENetApi.X64.cs プロジェクト: blockspacer/FrankE
 public override ENetPeer *host_connect(ENetHost *host, ref ENetAddress address, IntPtr channelCount, uint data)
 {
     return(native_host_connect(host, ref address, channelCount, data));
 }
コード例 #19
0
ファイル: ENetApi.X64.cs プロジェクト: blockspacer/FrankE
 static extern int native_address_get_host_ip(ref ENetAddress address, byte[] hostIP, IntPtr ipLength);
コード例 #20
0
ファイル: ENetApi.cs プロジェクト: pilgarlicx/enetcs
 public abstract int address_set_host(ref ENetAddress address, byte[] hostName);