Hy Tarjei,

again me. It's easy to fix:
midgard.c: In function `mgd_init_ex':
midgard.c:205: warning: implicit declaration of function `WSAStartup'
midgard.c:205: warning: implicit declaration of function `MAKEWORD'
midgard.c:205: `ver' undeclared (first use in this function)
Just replace the following lines (205,206):

	WSAStartup(MAKEWORD(2, 0), &ver);
#ifdef WIN32

with
#ifdef WIN32
	WSAStartup(MAKEWORD(2, 0), &ver);

and it should compile.

Daniel
--
Best Off GbR                                   [EMAIL PROTECTED]
One company. One profession.            http://www.best-off.org/
Marie-Calm-Str. 25                       Phone +49 561 920 37 48
34131 Kassel                               Fax +49 561 920 37 49
Germany                                 Mobile +49 175 223 56 71



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to