Initial MSVC 2008 projects workspace

This commit is contained in:
alexey.min
2012-02-01 05:25:08 +00:00
commit 03de3bdc95
1446 changed files with 476853 additions and 0 deletions

55
l2packets/stdafx.h Normal file
View File

@@ -0,0 +1,55 @@
#ifndef H_STDAFX
#define H_STDAFX
/** \file stdafx.h
* precompiled header
*/
// detect OS
#if defined(_WIN32) || defined(WIN32) || defined(WINVER) || defined(_WIN32_WINNT)
#undef L2PACKETS_WINDOWS
#define L2PACKETS_WINDOWS
#else
#undef L2PACKETS_LINUX
#define L2PACKETS_LINUX
#endif
// before including windows and CRT headers, we must
// kill warnings for Visual Studio
#ifdef _MSC_VER
#define _CRT_SECURE_NO_DEPRECATE // vc2005
#define _CRT_SECURE_NO_WARNINGS // vc2008
#endif
#include <stdlib.h>
#include <stdio.h>
#include <stdarg.h>
#include <string.h>
#include <math.h>
#include <wchar.h>
#if defined(_WIN32) || defined(WIN32) || defined(WINVER) || defined(_WIN32_WINNT)
#define WIN32_LEAN_AND_MEAN // for windows headers
#include "targetver.h"
#include <winsock2.h>
#include <windows.h>
#include <tchar.h>
#else // LINUX
#include <errno.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/select.h>
#include <unistd.h>
#include <fcntl.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
#endif
#include <openssl/bn.h>
#include <openssl/rsa.h>
#include <openssl/engine.h>
#include <openssl/blowfish.h>
#endif