<html><div style='background-color:'><P class=RTE>Yes the program compiled and ran perfectly until I added in the Enet files. Here is my winmain.cpp:</P>
<DIV class=RTE>#define WIN32_LEAN_AND_MEAN</DIV>
<DIV class=RTE>#include &lt;windows.h&gt;<BR>#include "enet/enet.h"</DIV>
<P>LRESULT CALLBACK WindowProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)<BR>{<BR>&nbsp;switch (msg)<BR>&nbsp;{<BR>&nbsp;case WM_CREATE:<BR>&nbsp;&nbsp;{<BR>&nbsp;&nbsp;&nbsp;enet_initialize();<BR>&nbsp;&nbsp;&nbsp;return 0;<BR>&nbsp;&nbsp;}</P>
<P>&nbsp;case WM_DESTROY:<BR>&nbsp;&nbsp;{<BR>&nbsp;&nbsp;&nbsp;enet_deinitialize();<BR>&nbsp;&nbsp;&nbsp;PostQuitMessage(0);<BR>&nbsp;&nbsp;&nbsp;return 0;<BR>&nbsp;&nbsp;}<BR>&nbsp;}</P>
<P>&nbsp;return DefWindowProc(hWnd, msg, wParam, lParam);<BR>}</P>
<P>int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nShowcmd)<BR>{<BR>&nbsp;WNDCLASS windowClass;<BR>&nbsp;HWND hWnd;<BR>&nbsp;MSG msg;</P>
<P>&nbsp;windowClass.style = NULL;<BR>&nbsp;windowClass.lpfnWndProc = WindowProc;<BR>&nbsp;windowClass.cbClsExtra = 0;<BR>&nbsp;windowClass.cbWndExtra = 0;<BR>&nbsp;windowClass.hInstance = hInstance;<BR>&nbsp;windowClass.hIcon = LoadIcon(NULL, IDI_APPLICATION);<BR>&nbsp;windowClass.hCursor = LoadCursor(NULL, IDC_ARROW);<BR>&nbsp;windowClass.hbrBackground = (HBRUSH) GetStockObject(WHITE_BRUSH);<BR>&nbsp;windowClass.lpszMenuName = NULL;<BR>&nbsp;windowClass.lpszClassName = "WinClass";</P>
<P>&nbsp;RegisterClass(&amp;windowClass);</P>
<P>&nbsp;hWnd = CreateWindow("WinClass", "PokeClient", WS_OVERLAPPEDWINDOW | WS_VISIBLE,<BR>&nbsp;&nbsp;10, 10, 488, 354, NULL, NULL, hInstance, NULL);</P>
<P>&nbsp;while (GetMessage(&amp;msg, NULL, 0, 0))<BR>&nbsp;{<BR>&nbsp;&nbsp;TranslateMessage(&amp;msg);<BR>&nbsp;&nbsp;DispatchMessage(&amp;msg);<BR>&nbsp;}<BR>&nbsp;<BR>&nbsp;return msg.wParam;<BR>}</P>
<P class=RTE><BR>It all looks quite normal to me. Is something wrong with #include "enet/enet.h"? I have an enet folder in my project folder with the following files, although none of these files were officially 'added' to the project: enet.h, list.h, memory.h, protocol.h, time.h, types.h, unix.h, utility.h, and win32.h</P>
<P class=RTE>I have the following enet source files added to my project properly and they all compile: host.c, list.c, memory.c, packet.c, peer.c, protocol.c, unix.c, win32.c</P>
<P class=RTE>All of the enet files were downloaded from <A href="http://enet.cubik.org/">http://enet.cubik.org/</A>&nbsp;a couple days ago and are unchanged. I am linking properly to ws2_32.lib. I can't see a single reason for this to be happening, it's a very weird error indeed :( could it be a problem with MSVC++ 6.0? I don't want to get a new compiler just for this problem, but I might have to. Maybe the following information will help. Under the External Dependencies folder in the compiler window it has the following files: basetsd.h, basetsd.h (listed again), enet.h, guiddef.h, propidl.h, reason.h, stralign.h, tvout.h, utility.h, win32.h, winefs.h</P>
<P class=RTE>It seems weird that the program lists enet.h, win32.h, and utility.h, but no other Enet header files. Could this be related somehow? Thanks for your time and quick replies, btw.<BR></P>
<DIV></DIV>&gt;From: Brian Hook &lt;hook_l@bookofhook.com&gt; 
<DIV></DIV>&gt;Reply-To: Discussion of the ENet library &lt;enet-discuss@cubik.org&gt; 
<DIV></DIV>&gt;To: Discussion of the ENet library &lt;enet-discuss@cubik.org&gt; 
<DIV></DIV>&gt;Subject: Re: [ENet-discuss] Linker Errors 
<DIV></DIV>&gt;Date: Tue, 20 Jul 2004 19:18:33 -0400 
<DIV></DIV>&gt; 
<DIV></DIV>&gt;Well, that's odd.&nbsp;&nbsp;If you just have the files in there, it should just 
<DIV></DIV>&gt;be working fine.&nbsp;&nbsp;Does the test program compile for you? 
<DIV></DIV>&gt; 
<DIV></DIV>&gt; 
<DIV></DIV>&gt;_______________________________________________ 
<DIV></DIV>&gt;ENet-discuss mailing list 
<DIV></DIV>&gt;ENet-discuss@cubik.org 
<DIV></DIV>&gt;http://lists.cubik.org/mailman/listinfo/enet-discuss 
<DIV></DIV></div><br clear=all><hr>Open your e-mail without having to worry about viruses with  <a href="http://g.msn.com/8HMBENCA/2737??PS=47575">MSN Premium:  </a> Join now and get the first two months FREE*</html>