mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-11 06:34:36 +00:00
Simple pass over the codebase to standardize the platform types.
This commit is contained in:
parent
c75d6feb20
commit
4c35fd37af
189 changed files with 824 additions and 824 deletions
|
|
@ -31,14 +31,14 @@
|
|||
#define MAXPACKETSIZE 1500
|
||||
#endif
|
||||
|
||||
typedef int NetConnectionId;
|
||||
typedef S32 NetConnectionId;
|
||||
|
||||
/// Generic network address
|
||||
///
|
||||
/// This is used to represent IP addresses.
|
||||
struct NetAddress
|
||||
{
|
||||
int type; ///< Type of address (IPAddress currently)
|
||||
S32 type; ///< Type of address (IPAddress currently)
|
||||
|
||||
/// Acceptable NetAddress types.
|
||||
enum
|
||||
|
|
@ -93,7 +93,7 @@ struct Net
|
|||
TCPProtocol
|
||||
};
|
||||
|
||||
static const int MaxPacketDataSize = MAXPACKETSIZE;
|
||||
static const S32 MaxPacketDataSize = MAXPACKETSIZE;
|
||||
|
||||
static ConnectionNotifyEvent smConnectionNotify;
|
||||
static ConnectionAcceptedEvent smConnectionAccept;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue