mirror of
https://github.com/lsalzman/enet
synced 2024-11-21 14:29:05 -07:00
win32 bug fixes
This commit is contained in:
parent
8b475848f1
commit
d0764152e4
2 changed files with 5 additions and 3 deletions
|
@ -35,6 +35,8 @@ typedef struct
|
|||
#else
|
||||
#define ENET_API __declspec( dllimport )
|
||||
#endif /* ENET_BUILDING_LIB */
|
||||
#else /* !ENET_DLL */
|
||||
#define ENET_API extern
|
||||
#endif /* ENET_DLL */
|
||||
|
||||
#endif /* __ENET_WIN32_H__ */
|
||||
|
|
6
win32.c
6
win32.c
|
@ -88,7 +88,7 @@ ENetSocket
|
|||
enet_socket_create (ENetSocketType type, const ENetAddress * address)
|
||||
{
|
||||
ENetSocket newSocket = socket (PF_INET, type == ENET_SOCKET_TYPE_DATAGRAM ? SOCK_DGRAM : SOCK_STREAM, 0);
|
||||
int nonBlocking = 1,
|
||||
u_long nonBlocking = 1,
|
||||
receiveBufferSize = ENET_HOST_RECEIVE_BUFFER_SIZE;
|
||||
struct sockaddr_in sin;
|
||||
|
||||
|
@ -216,8 +216,8 @@ enet_socket_receive (ENetSocket socket,
|
|||
ENetBuffer * buffers,
|
||||
size_t bufferCount)
|
||||
{
|
||||
DWORD sinLength = sizeof (struct sockaddr_in),
|
||||
flags = 0,
|
||||
INT sinLength = sizeof (struct sockaddr_in);
|
||||
DWORD flags = 0,
|
||||
recvLength;
|
||||
struct sockaddr_in sin;
|
||||
|
||||
|
|
Loading…
Reference in a new issue