16 lines
381 B
C++
16 lines
381 B
C++
/* Copyright (C) 2007-2008 Erik Faye-Lund and Egbert Teeselink
|
|
* For conditions of distribution and use, see copyright notice in COPYING
|
|
*/
|
|
#pragma once
|
|
|
|
#include <winsock2.h>
|
|
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
|
|
#include <windows.h>
|
|
|
|
#include <string>
|
|
#include <list>
|
|
|
|
#include <stdio.h>
|
|
#include <assert.h>
|
|
#define ASSERT(x) assert(x)
|