Simple pass over the codebase to standardize the platform types.

This commit is contained in:
cpusci 2013-08-04 16:26:01 -05:00
parent c75d6feb20
commit 4c35fd37af
189 changed files with 824 additions and 824 deletions

View file

@ -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;