Forum: C Mar 28th, 2005 |
| Replies: 1 Views: 5,683 Hey everyone, I'm trying to find some tutorials for peer-to-peer network programming ( LAN Parties ). I browsed through MSDN for any tutorials, but the only thing they have is stuff on DirectPlay. ... |
Forum: C Mar 24th, 2005 |
| Replies: 3 Views: 20,671 I searched on how to link Wsock32.LIB and found out how.
#include <stdio.h> // for printf
#include "winsock2.h"
#pragma comment( lib, "wsock32.lib" ) // This will link to... |
Forum: C Mar 24th, 2005 |
| Replies: 3 Views: 20,671 I googled for how to link a library and haven't found anything yet.
I'm using Visual Studio .NET for my C++ compiler. Some webpages that google turned up say that you can go into "Project" -->... |
Forum: C Mar 23rd, 2005 |
| Replies: 3 Views: 20,671 Hey everyone, I'm working on my first program using "Winsock2.h".
I'm getting back linker errors "error LNK2001: unresolved external symbol ..."
9 unresolved externals total
The program came... |
Forum: C Mar 21st, 2005 |
| Replies: 3 Views: 1,745 I'm just looking for other methods to test input or conditions.
hollystyles, you say that I can look at "switch statements". Then I will do some research on them. Thanks |
Forum: C Mar 21st, 2005 |
| Replies: 3 Views: 1,745 I've used "if and else" statements to test for conditions, but if's can get very "iffy" sometimes. Specially when you need to test for several possibilites.
I was wondering if there is another... |
Forum: C Dec 28th, 2004 |
| Replies: 13 Views: 9,744 Just somthing I made with the bit of info I learned from this thread. It also can be a simulation of those "test" the video broadcasters do for some reason. Let me know what you guys-n-gals think... |