so im using enet for a programmign project yet there are errors saying it can find the source headers and the functions, even though ive properly linked all the files, is this common for enet?
#include "main.h"
#include <enet/enet.h>
void redNovember::initNetwork()
{
enet_initialize();
}
void redNovember::shutdownNetwork()
{
atexit(enet_deinitialize());
}
im using vs 2010 by the way.,
thanks for your input.






