Still trying to fix Windows header-file-order problem.

master
Nat Goodspeed 2011-07-13 19:41:23 -04:00
parent beea7cdc2d
commit ec780a733f
1 changed files with 7 additions and 7 deletions

View File

@ -25,13 +25,18 @@
* $/LicenseInfo$
*/
#if !LL_WINDOWS
#include "linden_common.h"
#if LL_WINDOWS
#include <winsock2.h>
typedef U32 uint32_t;
#else
#include <netinet/in.h>
#include <errno.h>
#include <sys/wait.h>
#endif
#include "linden_common.h"
#include "../llsd.h"
#include "../llsdserialize.h"
#include "../llformat.h"
@ -40,11 +45,6 @@
#include "llprocesslauncher.h"
#include "stringize.h"
#if LL_WINDOWS
#include <winsock2.h>
typedef U32 uint32_t;
#endif
std::vector<U8> string_to_vector(const std::string& str)
{
return std::vector<U8>(str.begin(), str.end());