1
0
Fork 0

Make some compilers more happy

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@2762
This commit is contained in:
Peter Veenstra 2007-01-13 10:17:39 +00:00
parent 29a8ba31c1
commit c05b3e6810
2 changed files with 4 additions and 3 deletions

View file

@ -1,7 +1,5 @@
#include "config.h"
#include "misc_util.h"
#if C_MODEM
/*****************************************************************************/
@ -24,6 +22,9 @@ typedef int socklen_t;
#define CAPWORD NETWRAPPER_TCP
#endif
#include "misc_util.h"
struct _TCPsocketX {
int ready;
SOCKET channel;

View file

@ -27,7 +27,7 @@ class TCPClientSocket {
TCPClientSocket(TCPsocket source);
TCPClientSocket(const char* destination, Bit16u port);
#ifdef NATIVESOCKETS
void* nativetcpstruct;
Bit8u* nativetcpstruct;
TCPClientSocket(int platformsocket);
#endif
~TCPClientSocket();