Index: trunk/src/trinityrealm/TrinityRealm.rc
===================================================================
--- trunk/src/trinityrealm/TrinityRealm.rc (revision 2)
+++ trunk/src/trinityrealm/TrinityRealm.rc (revision 6)
@@ -53,6 +53,6 @@
 
 VS_VERSION_INFO VERSIONINFO
- FILEVERSION 0,1,6700,670
- PRODUCTVERSION 0,1,6700,670
+ FILEVERSION 0,2,6721,676
+ PRODUCTVERSION 0,2,6721,676
  FILEFLAGSMASK 0x17L
 #ifdef _DEBUG
@@ -70,10 +70,10 @@
         BEGIN
             VALUE "FileDescription", "TrinityRealm"
-            VALUE "FileVersion", "0, 1, 6700, 670"
+            VALUE "FileVersion", "0, 2, 6721, 676"
             VALUE "InternalName", "TrinityRealm"
             VALUE "LegalCopyright", "Copyright (C) 2008"
             VALUE "OriginalFilename", "TrinityRealm.exe"
             VALUE "ProductName", "TrinityRealm"
-            VALUE "ProductVersion", "0, 1, 6700, 670"
+            VALUE "ProductVersion", "0, 2, 6721, 676"
         END
     END
Index: trunk/src/trinityrealm/Makefile.am
===================================================================
--- trunk/src/trinityrealm/Makefile.am (revision 2)
+++ trunk/src/trinityrealm/Makefile.am (revision 6)
@@ -25,4 +25,6 @@
 $(POSTGRE_INCLUDES) \
 -I$(top_srcdir)/dep/include \
+-I$(top_srcdir)/dep/ACE_wrappers \
+-I$(top_builddir)/dep/ACE_wrappers \
 -I$(top_srcdir)/src/framework \
 -I$(top_srcdir)/src/shared \
@@ -43,4 +45,5 @@
 $(top_builddir)/src/framework/libmangosframework.a \
 $(top_builddir)/dep/src/sockets/libmangossockets.a \
+$(top_builddir)/dep/ACE_wrappers/ace/libACE.la \
 $(top_builddir)/dep/src/zthread/libZThread.la
 
Index: trunk/src/shared/Database/DBCfmt.cpp
===================================================================
--- trunk/src/shared/Database/DBCfmt.cpp (revision 2)
+++ trunk/src/shared/Database/DBCfmt.cpp (revision 6)
@@ -61,5 +61,5 @@
 const char SpellCastTimefmt[]="nixx";
 const char SpellDurationfmt[]="niii";
-const char SpellEntryfmt[]="nixiiiiiiiixiiiiixiiiiiiiiiiiiiiiiiiiiiiifxiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiffffffiiiiiiiiiiiiiiiiiiiiifffiiiiiiiiiiiiiiifffixiixssssssssssssssssxssssssssssssssssxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxiiiiiiiiiixfffxxxiiii";
+const char SpellEntryfmt[]="nixiiiiiiiixiiiiiiiiiiiiiiiiiiiiiiiiiiiiifxiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiffffffiiiiiiiiiiiiiiiiiiiiifffiiiiiiiiiiiiiiifffixiixssssssssssssssssxssssssssssssssssxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxiiiiiiiiiixfffxxxiiii";
 const char SpellFocusObjectfmt[]="nxxxxxxxxxxxxxxxxx";
 const char SpellItemEnchantmentfmt[]="niiiiiixxxiiissssssssssssssssxiiii";
Index: trunk/src/shared/Database/DatabaseEnv.h
===================================================================
--- trunk/src/shared/Database/DatabaseEnv.h (revision 2)
+++ trunk/src/shared/Database/DatabaseEnv.h (revision 6)
@@ -35,4 +35,5 @@
 #define _LIKE_          "ILIKE"
 #define _TABLE_SIM_     "\""
+#define _CONCAT3_(A,B,C) "( " A " || " B " || " C " )"
 #else
 #include "Database/QueryResultMysql.h"
@@ -44,4 +45,5 @@
 #define _LIKE_          "LIKE"
 #define _TABLE_SIM_     "`"
+#define _CONCAT3_(A,B,C) "CONCAT( " A " , " B " , " C " )"
 #endif
 
Index: trunk/src/shared/Database/DBCStructure.h
===================================================================
--- trunk/src/shared/Database/DBCStructure.h (revision 2)
+++ trunk/src/shared/Database/DBCStructure.h (revision 6)
@@ -596,5 +596,5 @@
     uint32    TargetCreatureType;                           // 15
     uint32    RequiresSpellFocus;                           // 16
-    //uint32    FacingCasterFlags;                          // 17 not used
+    uint32    FacingCasterFlags;                            // 17
     uint32    CasterAuraState;                              // 18
     uint32    TargetAuraState;                              // 19
Index: trunk/src/shared/Timer.h
===================================================================
--- trunk/src/shared/Timer.h (revision 2)
+++ trunk/src/shared/Timer.h (revision 6)
@@ -23,5 +23,5 @@
 
 #if PLATFORM == PLATFORM_WINDOWS
-#   include <windows.h>
+#   include <ace/config-all.h>
 #   include <mmsystem.h>
 #   include <time.h>
Index: trunk/src/shared/Makefile.am
===================================================================
--- trunk/src/shared/Makefile.am (revision 2)
+++ trunk/src/shared/Makefile.am (revision 6)
@@ -31,4 +31,6 @@
 $(POSTGRE_INCLUDES) \
 -I$(top_srcdir)/dep/include \
+-I$(top_srcdir)/dep/ACE_wrappers \
+-I$(top_builddir)/dep/ACE_wrappers \
 -I$(top_srcdir)/src/framework
 
Index: trunk/src/shared/Common.h
===================================================================
--- trunk/src/shared/Common.h (revision 2)
+++ trunk/src/shared/Common.h (revision 6)
@@ -20,4 +20,42 @@
 #define MANGOSSERVER_COMMON_H
 
+// config.h needs to be included 1st
+// TODO this thingy looks like hack ,but its not, need to
+// make separate header however, because It makes mess here.
+#ifdef HAVE_CONFIG_H
+// Remove Some things that we will define 
+// This is in case including another config.h 
+// before trinity config.h 
+#ifdef PACKAGE
+#undef PACKAGE
+#endif //PACKAGE
+#ifdef PACKAGE_BUGREPORT
+#undef PACKAGE_BUGREPORT
+#endif //PACKAGE_BUGREPORT
+#ifdef PACKAGE_NAME
+#undef PACKAGE_NAME
+#endif //PACKAGE_NAME
+#ifdef PACKAGE_STRING
+#undef PACKAGE_STRING
+#endif //PACKAGE_STRING
+#ifdef PACKAGE_TARNAME
+#undef PACKAGE_TARNAME
+#endif //PACKAGE_TARNAME
+#ifdef PACKAGE_VERSION
+#undef PACKAGE_VERSION
+#endif //PACKAGE_VERSION
+#ifdef VERSION
+#undef VERSION
+#endif //VERSION
+# include "config.h"
+#undef PACKAGE
+#undef PACKAGE_BUGREPORT
+#undef PACKAGE_NAME
+#undef PACKAGE_STRING
+#undef PACKAGE_TARNAME
+#undef PACKAGE_VERSION
+#undef VERSION
+#endif //HAVE_CONFIG_H
+
 #include "Platform/Define.h"
 
@@ -43,8 +81,4 @@
 #endif                                                      // __SHOW_STUPID_WARNINGS__
 #endif                                                      // __GNUC__
-
-#ifdef HAVE_CONFIG_H
-# include <config.h>
-#endif
 
 #include "Utilities/HashMap.h"
@@ -77,6 +111,6 @@
 
 #if PLATFORM == PLATFORM_WINDOWS
-#  define FD_SETSIZE 1024
-#  include <winsock2.h>
+#  define FD_SETSIZE 4096
+#  include <ace/config-all.h>
 // XP winver - needed to compile with standard leak check in MemoryLeaks.h
 // uncomment later if needed
Index: trunk/src/game/Guild.cpp
===================================================================
--- trunk/src/game/Guild.cpp (revision 2)
+++ trunk/src/game/Guild.cpp (revision 6)
@@ -1806,6 +1806,11 @@
         need_space = count;
 
-    dest.push_back(GuildItemPosCount(slot,need_space));
-    count -= need_space;
+    GuildItemPosCount newPosition = GuildItemPosCount(slot,need_space);
+    if(!newPosition.isContainedIn(dest))
+    {
+        dest.push_back(newPosition);
+        count -= need_space;
+    }
+
     return EQUIP_ERR_OK;
 }
@@ -1837,5 +1842,25 @@
                     need_space = count;
 
-                dest.push_back(GuildItemPosCount(j,need_space));
+                GuildItemPosCount newPosition = GuildItemPosCount(j,need_space);
+                if(!newPosition.isContainedIn(dest))
+                {
+                    dest.push_back(newPosition);
+                    count -= need_space;
+
+                    if(count==0)
+                        return EQUIP_ERR_OK;
+                }
+            }
+        }
+        else
+        {
+            uint32 need_space = pSrcItem->GetMaxStackCount();
+            if(need_space > count)
+                need_space = count;
+
+            GuildItemPosCount newPosition = GuildItemPosCount(j,need_space);
+            if(!newPosition.isContainedIn(dest))
+            {
+                dest.push_back(newPosition);
                 count -= need_space;
 
@@ -1843,16 +1868,4 @@
                     return EQUIP_ERR_OK;
             }
-        }
-        else
-        {
-            uint32 need_space = pSrcItem->GetMaxStackCount();
-            if(need_space > count)
-                need_space = count;
-
-            dest.push_back(GuildItemPosCount(j,need_space));
-            count -= need_space;
-
-            if(count==0)
-                return EQUIP_ERR_OK;
         }
     }
@@ -1939,2 +1952,12 @@
     session->SendPacket(&data);
 }
+
+bool GuildItemPosCount::isContainedIn(GuildItemPosCountVec const &vec) const
+{
+    for(GuildItemPosCountVec::const_iterator itr = vec.begin(); itr != vec.end();++itr)
+        if(itr->slot == this->slot)
+            return true;
+
+    return false;
+}
+
Index: trunk/src/game/WorldSocket.h
===================================================================
--- trunk/src/game/WorldSocket.h (revision 2)
+++ trunk/src/game/WorldSocket.h (revision 6)
@@ -1,3 +1,3 @@
-/*
+/* 
  * Copyright (C) 2005-2008 MaNGOS <http://www.mangosproject.org/>
  *
@@ -17,163 +17,217 @@
  */
 
-/// \addtogroup u2w
-/// @{
-/// \file
-
-#ifndef __WORLDSOCKET_H
-#define __WORLDSOCKET_H
-
-#include "sockets/TcpSocket.h"
-#include "Auth/AuthCrypt.h"
-
-enum ResponseCodes
+/** \addtogroup u2w User to World Communication
+ * @{
+ * \file WorldSocket.h
+ * \author Derex <derex101@gmail.com>
+ */
+
+#ifndef _WORLDSOCKET_H
+#define	_WORLDSOCKET_H
+
+#include <ace/Basic_Types.h>
+#include <ace/Synch_Traits.h>
+#include <ace/Svc_Handler.h>
+#include <ace/SOCK_Stream.h>
+#include <ace/SOCK_Acceptor.h>
+#include <ace/Acceptor.h>
+#include <ace/Thread_Mutex.h>
+#include <ace/Guard_T.h>
+#include <ace/Unbounded_Queue.h>
+#include <ace/Message_Block.h>
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+#pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+#include "Common.h"
+#include "Auth/AuthCrypt.h" 
+
+class ACE_Message_Block;
+class WorldPacket;
+class WorldSession;
+
+/// Handler that can communicate over stream sockets.
+typedef ACE_Svc_Handler<ACE_SOCK_STREAM, ACE_NULL_SYNCH> WorldHandler;
+
+/**
+ * WorldSocket.
+ * 
+ * This class is responsible for the comunication with 
+ * remote clients.
+ * Most methods return -1 on failure. 
+ * The class uses refferece counting.
+ *
+ * For output the class uses one buffer (64K usually) and 
+ * a queue where it stores packet if there is no place on 
+ * the queue. The reason this is done, is because the server 
+ * does realy a lot of small-size writes to it, and it doesn't 
+ * scale well to allocate memory for every. When something is 
+ * writen to the output buffer the socket is not immideately 
+ * activated for output (again for the same reason), there 
+ * is 10ms celling (thats why there is Update() method). 
+ * This concept is simmilar to TCP_CORK, but TCP_CORK 
+ * usses 200ms celling. As result overhead generated by 
+ * sending packets from "producer" threads is minimal, 
+ * and doing a lot of writes with small size is tollerated.
+ * 
+ * The calls to Upate () method are managed by WorldSocketMgr
+ * and ReactorRunnable.
+ * 
+ * For input ,the class uses one 1024 bytes buffer on stack 
+ * to which it does recv() calls. And then recieved data is 
+ * distributed where its needed. 1024 matches pritey well the 
+ * traffic generated by client for now.
+ *  
+ * The input/output do speculative reads/writes (AKA it tryes 
+ * to read all data avaible in the kernel buffer or tryes to 
+ * write everything avaible in userspace buffer), 
+ * which is ok for using with Level and Edge Trigered IO 
+ * notification.
+ * 
+ */
+class WorldSocket : protected WorldHandler
 {
-    RESPONSE_SUCCESS                                       = 0x00,
-    RESPONSE_FAILURE                                       = 0x01,
-    RESPONSE_CANCELLED                                     = 0x02,
-    RESPONSE_DISCONNECTED                                  = 0x03,
-    RESPONSE_FAILED_TO_CONNECT                             = 0x04,
-    RESPONSE_CONNECTED                                     = 0x05,
-    RESPONSE_VERSION_MISMATCH                              = 0x06,
-
-    CSTATUS_CONNECTING                                     = 0x07,
-    CSTATUS_NEGOTIATING_SECURITY                           = 0x08,
-    CSTATUS_NEGOTIATION_COMPLETE                           = 0x09,
-    CSTATUS_NEGOTIATION_FAILED                             = 0x0A,
-    CSTATUS_AUTHENTICATING                                 = 0x0B,
-
-    AUTH_OK                                                = 0x0C,
-    AUTH_FAILED                                            = 0x0D,
-    AUTH_REJECT                                            = 0x0E,
-    AUTH_BAD_SERVER_PROOF                                  = 0x0F,
-    AUTH_UNAVAILABLE                                       = 0x10,
-    AUTH_SYSTEM_ERROR                                      = 0x11,
-    AUTH_BILLING_ERROR                                     = 0x12,
-    AUTH_BILLING_EXPIRED                                   = 0x13,
-    AUTH_VERSION_MISMATCH                                  = 0x14,
-    AUTH_UNKNOWN_ACCOUNT                                   = 0x15,
-    AUTH_INCORRECT_PASSWORD                                = 0x16,
-    AUTH_SESSION_EXPIRED                                   = 0x17,
-    AUTH_SERVER_SHUTTING_DOWN                              = 0x18,
-    AUTH_ALREADY_LOGGING_IN                                = 0x19,
-    AUTH_LOGIN_SERVER_NOT_FOUND                            = 0x1A,
-    AUTH_WAIT_QUEUE                                        = 0x1B,
-    AUTH_BANNED                                            = 0x1C,
-    AUTH_ALREADY_ONLINE                                    = 0x1D,
-    AUTH_NO_TIME                                           = 0x1E,
-    AUTH_DB_BUSY                                           = 0x1F,
-    AUTH_SUSPENDED                                         = 0x20,
-    AUTH_PARENTAL_CONTROL                                  = 0x21,
-    AUTH_LOCKED_ENFORCED                                   = 0x22,
-
-    REALM_LIST_IN_PROGRESS                                 = 0x23,
-    REALM_LIST_SUCCESS                                     = 0x24,
-    REALM_LIST_FAILED                                      = 0x25,
-    REALM_LIST_INVALID                                     = 0x26,
-    REALM_LIST_REALM_NOT_FOUND                             = 0x27,
-
-    ACCOUNT_CREATE_IN_PROGRESS                             = 0x28,
-    ACCOUNT_CREATE_SUCCESS                                 = 0x29,
-    ACCOUNT_CREATE_FAILED                                  = 0x2A,
-
-    CHAR_LIST_RETRIEVING                                   = 0x2B,
-    CHAR_LIST_RETRIEVED                                    = 0x2C,
-    CHAR_LIST_FAILED                                       = 0x2D,
-
-    CHAR_CREATE_IN_PROGRESS                                = 0x2E,
-    CHAR_CREATE_SUCCESS                                    = 0x2F,
-    CHAR_CREATE_ERROR                                      = 0x30,
-    CHAR_CREATE_FAILED                                     = 0x31,
-    CHAR_CREATE_NAME_IN_USE                                = 0x32,
-    CHAR_CREATE_DISABLED                                   = 0x33,
-    CHAR_CREATE_PVP_TEAMS_VIOLATION                        = 0x34,
-    CHAR_CREATE_SERVER_LIMIT                               = 0x35,
-    CHAR_CREATE_ACCOUNT_LIMIT                              = 0x36,
-    CHAR_CREATE_SERVER_QUEUE                               = 0x37,
-    CHAR_CREATE_ONLY_EXISTING                              = 0x38,
-    CHAR_CREATE_EXPANSION                                  = 0x39,
-
-    CHAR_DELETE_IN_PROGRESS                                = 0x3A,
-    CHAR_DELETE_SUCCESS                                    = 0x3B,
-    CHAR_DELETE_FAILED                                     = 0x3C,
-    CHAR_DELETE_FAILED_LOCKED_FOR_TRANSFER                 = 0x3D,
-    CHAR_DELETE_FAILED_GUILD_LEADER                        = 0x3E,
-    CHAR_DELETE_FAILED_ARENA_CAPTAIN                       = 0x3F,
-
-    CHAR_LOGIN_IN_PROGRESS                                 = 0x40,
-    CHAR_LOGIN_SUCCESS                                     = 0x41,
-    CHAR_LOGIN_NO_WORLD                                    = 0x42,
-    CHAR_LOGIN_DUPLICATE_CHARACTER                         = 0x43,
-    CHAR_LOGIN_NO_INSTANCES                                = 0x44,
-    CHAR_LOGIN_FAILED                                      = 0x45,
-    CHAR_LOGIN_DISABLED                                    = 0x46,
-    CHAR_LOGIN_NO_CHARACTER                                = 0x47,
-    CHAR_LOGIN_LOCKED_FOR_TRANSFER                         = 0x48,
-    CHAR_LOGIN_LOCKED_BY_BILLING                           = 0x49,
-
-    CHAR_NAME_SUCCESS                                      = 0x4A,
-    CHAR_NAME_FAILURE                                      = 0x4B,
-    CHAR_NAME_NO_NAME                                      = 0x4C,
-    CHAR_NAME_TOO_SHORT                                    = 0x4D,
-    CHAR_NAME_TOO_LONG                                     = 0x4E,
-    CHAR_NAME_INVALID_CHARACTER                            = 0x4F,
-    CHAR_NAME_MIXED_LANGUAGES                              = 0x50,
-    CHAR_NAME_PROFANE                                      = 0x51,
-    CHAR_NAME_RESERVED                                     = 0x52,
-    CHAR_NAME_INVALID_APOSTROPHE                           = 0x53,
-    CHAR_NAME_MULTIPLE_APOSTROPHES                         = 0x54,
-    CHAR_NAME_THREE_CONSECUTIVE                            = 0x55,
-    CHAR_NAME_INVALID_SPACE                                = 0x56,
-    CHAR_NAME_CONSECUTIVE_SPACES                           = 0x57,
-    CHAR_NAME_RUSSIAN_CONSECUTIVE_SILENT_CHARACTERS        = 0x58,
-    CHAR_NAME_RUSSIAN_SILENT_CHARACTER_AT_BEGINNING_OR_END = 0x59,
-    CHAR_NAME_DECLENSION_DOESNT_MATCH_BASE_NAME            = 0x5A,
+public:
+  /// Declare some friends
+  friend class ACE_Acceptor< WorldSocket, ACE_SOCK_ACCEPTOR >;
+  friend class WorldSocketMgr;
+  friend class ReactorRunnable;
+
+  /// Declare the acceptor for this class
+  typedef ACE_Acceptor< WorldSocket, ACE_SOCK_ACCEPTOR > Acceptor;
+
+  /// Mutex type used for various syncronizations.
+  typedef ACE_Thread_Mutex LockType;
+  typedef ACE_Guard<LockType> GuardType;
+
+  /// Queue for storing packets for which there is no space.
+  typedef ACE_Unbounded_Queue< WorldPacket* > PacketQueueT;
+
+  /// Check if socket is closed.
+  bool IsClosed (void) const;
+
+  /// Close the socket.
+  void CloseSocket (void);
+
+  /// Get address of connected peer.
+  const std::string& GetRemoteAddress (void) const;
+
+  /// Send A packet on the socket, this function is reentrant.
+  /// @param pct packet to send
+  /// @return -1 of failure
+  int SendPacket (const WorldPacket& pct);
+
+  /// Add refference to this object.
+  long AddReference (void);
+
+  /// Remove refference to this object.
+  long RemoveReference (void);
+
+protected:
+  /// things called by ACE framework.
+  WorldSocket (void);
+  virtual ~WorldSocket (void);
+
+  /// Called on open ,the void* is the acceptor.
+  virtual int open (void *);
+
+  /// Called on failures inside of the acceptor, don't call from your code.
+  virtual int close (int);
+
+  /// Called when we can read from the socket.
+  virtual int handle_input (ACE_HANDLE = ACE_INVALID_HANDLE);
+
+  /// Called when the socket can write.
+  virtual int handle_output (ACE_HANDLE = ACE_INVALID_HANDLE);
+
+  /// Called when connection is closed or error happens.
+  virtual int handle_close (ACE_HANDLE = ACE_INVALID_HANDLE,
+                            ACE_Reactor_Mask = ACE_Event_Handler::ALL_EVENTS_MASK);
+
+  /// Called by WorldSocketMgr/ReactorRunnable.
+  int Update (void);
+
+private:
+  /// Helper functions for processing incoming data.
+  int handle_input_header (void);
+  int handle_input_payload (void);
+  int handle_input_missing_data (void);
+
+  /// Help functions to mark/unmark the socket for output.
+  /// @param g the guard is for m_OutBufferLock, the function will release it
+  int cancel_wakeup_output (GuardType& g);
+  int schedule_wakeup_output (GuardType& g);
+
+  /// process one incoming packet.
+  /// @param new_pct received packet ,note that you need to delete it. 
+  int ProcessIncoming (WorldPacket* new_pct);
+
+  /// Called by ProcessIncoming() on CMSG_AUTH_SESSION.
+  int HandleAuthSession (WorldPacket& recvPacket);
+
+  /// Called by ProcessIncoming() on CMSG_PING.
+  int HandlePing (WorldPacket& recvPacket);
+
+  /// Try to write WorldPacket to m_OutBuffer ,return -1 if no space
+  /// Need to be called with m_OutBufferLock lock held
+  int iSendPacket (const WorldPacket& pct);
+
+  /// Flush m_PacketQueue if there are packets in it
+  /// Need to be called with m_OutBufferLock lock held
+  /// @return true if it wrote to the buffer ( AKA you need 
+  /// to mark the socket for output ).
+  bool iFlushPacketQueue ();
+
+private:
+  /// Time in which the last ping was received
+  ACE_Time_Value m_LastPingTime;
+  
+  /// Keep track of overspeed pings ,to prevent ping flood.
+  uint32 m_OverSpeedPings;
+
+  /// Address of the remote peer
+  std::string m_Address;
+
+  /// Class used for managing encryption of the headers
+  AuthCrypt m_Crypt;
+
+  /// Mutex lock to protect m_Session
+  LockType m_SessionLock;
+
+  /// Session to which recieved packets are routed
+  WorldSession* m_Session;
+
+  /// here are stored the fragmens of the recieved data
+  WorldPacket* m_RecvWPct;
+
+  /// This block actually refers to m_RecvWPct contents,
+  /// which alows easy and safe writing to it. 
+  /// It wont free memory when its deleted. m_RecvWPct takes care of freeing.
+  ACE_Message_Block m_RecvPct;
+
+  /// Fragment of the recieved header.
+  ACE_Message_Block m_Header;
+
+  /// Mutex for protecting otuput related data.
+  LockType m_OutBufferLock;
+
+  /// Buffer used for writing output.
+  ACE_Message_Block *m_OutBuffer;
+
+  /// Size of the m_OutBuffer.
+  size_t m_OutBufferSize;
+
+  /// Here are stored packets for which there was no space on m_OutBuffer,
+  /// this alows not-to kick player if its buffer is overflowed.
+  PacketQueueT m_PacketQueue;
+
+  /// True if the socket is registered with the reactor for output
+  bool m_OutActive;
+
+  uint32 m_Seed;
 };
 
-class WorldPacket;
-class SocketHandler;
-class WorldSession;
-
-/// Handle connection with the client software
-class WorldSocket : public TcpSocket
-{
-    public:
-        WorldSocket(ISocketHandler&);
-        ~WorldSocket();
-
-        void SendPacket(WorldPacket const* packet);
-        void CloseSocket();
-
-        void OnAccept();
-        void OnRead();
-        void OnDelete();
-
-        void Update(time_t diff);
-        // Player Queue
-        void SendAuthWaitQue(uint32 position);
-
-        WorldSession* GetSession() const { return _session; }
-    protected:
-        void SendSinglePacket();
-
-    protected:
-        void _HandleAuthSession(WorldPacket& recvPacket);
-        void _HandlePing(WorldPacket& recvPacket);
-
-    private:
-        AuthCrypt _crypt;
-        uint32 _seed;
-        uint32 _cmd;
-        uint16 _remaining;
-        WorldSession* _session;
-
-        ZThread::LockedQueue<WorldPacket*,ZThread::FastMutex> _sendQueue;
-
-        uint32 m_LastPingMSTime;
-        uint32 m_OverSpeedPings;
-
-        // internal checks
-        void SizeError(WorldPacket const& packet, uint32 size) const;
-};
-#endif
+#endif	/* _WORLDSOCKET_H */
+
 /// @}
Index: trunk/src/game/WorldSocketMgr.cpp
===================================================================
--- trunk/src/game/WorldSocketMgr.cpp (revision 2)
+++ trunk/src/game/WorldSocketMgr.cpp (revision 6)
@@ -17,39 +17,354 @@
  */
 
-/** \file
-    \ingroup u2w
-*/
-
+/** \file WorldSocketMgr.cpp
+ *  \ingroup u2w
+ *  \author Derex <derex101@gmail.com>
+ */
+
+#include "WorldSocketMgr.h"
+
+#include <ace/ACE.h>
+#include <ace/Log_Msg.h>
+#include <ace/Reactor.h>
+#include <ace/Reactor_Impl.h>
+#include <ace/TP_Reactor.h>
+#include <ace/Dev_Poll_Reactor.h>
+#include <ace/Guard_T.h>
+#include <ace/Atomic_Op.h>
+#include <ace/os_include/arpa/os_inet.h>
+#include <ace/os_include/netinet/os_tcp.h>
+#include <ace/os_include/sys/os_types.h>
+#include <ace/os_include/sys/os_socket.h>
+
+#include <set>
+
+#include "Log.h"
 #include "Common.h"
+#include "Config/ConfigEnv.h"
+#include "Database/DatabaseEnv.h"
 #include "WorldSocket.h"
-#include "WorldSocketMgr.h"
-#include "Policies/SingletonImp.h"
-
-INSTANTIATE_SINGLETON_1( WorldSocketMgr );
-
-/// WorldSocketMgr constructor
-WorldSocketMgr::WorldSocketMgr()
-{
-}
-
-/// Add a WorldSocket to the set
-void WorldSocketMgr::AddSocket(WorldSocket *s)
-{
-    m_sockets.insert(s);
-}
-
-/// Remove a WorldSocket to the set
-void WorldSocketMgr::RemoveSocket(WorldSocket *s)
-{
-    m_sockets.erase(s);
-}
-
-/// Triggers an 'update' to all sockets in the set
-void WorldSocketMgr::Update(time_t diff)
-{
-    SocketSet::iterator i;
-    for(i = m_sockets.begin(); i != m_sockets.end(); i++)
-    {
-        (*i)->Update(diff);
-    }
-}
+
+/** 
+ * This is a helper class to WorldSocketMgr ,that manages 
+ * network threads, and assigning connections from acceptor thread
+ * to other network threads
+ */
+class ReactorRunnable : protected ACE_Task_Base
+{
+public:
+
+  ReactorRunnable () :
+  m_ThreadId (-1),
+  m_Connections (0),
+  m_Reactor (0)
+  {
+    ACE_Reactor_Impl* imp = 0;
+
+#if defined (ACE_HAS_EVENT_POLL) || defined (ACE_HAS_DEV_POLL)
+    imp = new ACE_Dev_Poll_Reactor ();
+
+    imp->max_notify_iterations (128);
+    imp->restart (1);
+#else
+    imp = new ACE_TP_Reactor ();
+    imp->max_notify_iterations (128);
+#endif
+
+    m_Reactor = new ACE_Reactor (imp, 1);
+  }
+
+  virtual
+  ~ReactorRunnable ()
+  {
+    this->Stop ();
+    this->Wait ();
+
+    if (m_Reactor)
+      delete m_Reactor;
+  }
+
+  void
+  Stop ()
+  {
+    m_Reactor->end_reactor_event_loop ();
+  }
+
+  int
+  Start ()
+  {
+    if (m_ThreadId != -1)
+      return -1;
+
+    return (m_ThreadId = this->activate ());
+  }
+
+  void
+  Wait ()
+  {
+    ACE_Task_Base::wait ();
+  }
+
+  long
+  Connections ()
+  {
+    return static_cast<long> (m_Connections.value ());
+  }
+
+  int
+  AddSocket (WorldSocket* sock)
+  {
+    ACE_GUARD_RETURN (ACE_Thread_Mutex, Guard, m_NewSockets_Lock, -1);
+
+    ++m_Connections;
+    sock->AddReference();
+    sock->reactor (m_Reactor);
+    m_NewSockets.insert (sock);
+
+    return 0;
+  }
+  
+  ACE_Reactor* GetReactor ()
+  {
+    return m_Reactor;
+  }
+  
+protected:
+  
+  void
+  AddNewSockets ()
+  {
+    ACE_GUARD (ACE_Thread_Mutex, Guard, m_NewSockets_Lock);
+
+    if (m_NewSockets.empty ())
+      return;
+
+    for (SocketSet::iterator i = m_NewSockets.begin (); i != m_NewSockets.end (); ++i)
+      {
+        WorldSocket* sock = (*i);
+
+        if (sock->IsClosed ())
+          {
+            sock->RemoveReference ();
+            --m_Connections;
+          }
+        else
+          m_Sockets.insert (sock);
+      }
+
+    m_NewSockets.clear ();
+  }
+
+  virtual int
+  svc (void)
+  {
+    DEBUG_LOG ("Network Thread Starting");
+
+    WorldDatabase.ThreadStart ();
+
+    ACE_ASSERT (m_Reactor);
+
+    SocketSet::iterator i, t;
+
+    while (!m_Reactor->reactor_event_loop_done ())
+      {
+        // dont be too smart to move this outside the loop 
+        // the run_reactor_event_loop will modify interval
+        ACE_Time_Value interval (0, 10000);
+
+        if (m_Reactor->run_reactor_event_loop (interval) == -1)
+          break;
+
+        AddNewSockets ();
+
+        for (i = m_Sockets.begin (); i != m_Sockets.end ();)
+          {
+            if ((*i)->Update () == -1)
+              {
+                t = i;
+                i++;
+                (*t)->CloseSocket ();
+                (*t)->RemoveReference ();
+                --m_Connections;
+                m_Sockets.erase (t);
+              }
+            else
+              i++;
+          }
+      }
+
+    WorldDatabase.ThreadEnd ();
+
+    DEBUG_LOG ("Network Thread Exitting");
+
+    return 0;
+  }
+
+private:
+  typedef ACE_Atomic_Op<ACE_SYNCH_MUTEX, long> AtomicInt;
+  typedef std::set<WorldSocket*> SocketSet;
+
+  ACE_Reactor* m_Reactor;
+  AtomicInt m_Connections;
+  int m_ThreadId;
+
+  SocketSet m_Sockets;
+
+  SocketSet m_NewSockets;
+  ACE_Thread_Mutex m_NewSockets_Lock;
+};
+
+
+
+WorldSocketMgr::WorldSocketMgr () :
+m_NetThreadsCount (0),
+m_NetThreads (0),
+m_SockOutKBuff (-1),
+m_SockOutUBuff (65536),
+m_UseNoDelay (true),
+m_Acceptor (0) {}
+
+WorldSocketMgr::~WorldSocketMgr ()
+{
+  if (m_NetThreads)
+    delete [] m_NetThreads;
+  
+  if(m_Acceptor)
+    delete m_Acceptor;
+}
+
+int
+WorldSocketMgr::StartReactiveIO (ACE_UINT16 port, const char* address)
+{
+  m_UseNoDelay = sConfig.GetBoolDefault ("Network.TcpNodelay", true);
+
+  int num_threads = sConfig.GetIntDefault ("Network.Threads", 1);
+
+  if (num_threads <= 0)
+    {
+      sLog.outError ("Network.Threads is wrong in your config file");
+      return -1;
+    }
+
+  m_NetThreadsCount = static_cast<size_t> (num_threads + 1);
+
+  m_NetThreads = new ReactorRunnable[m_NetThreadsCount];
+
+  sLog.outBasic ("Max alowed socket connections %d",ACE::max_handles ());
+
+  m_SockOutKBuff = sConfig.GetIntDefault ("Network.OutKBuff", -1); // -1 means use default
+
+  m_SockOutUBuff = sConfig.GetIntDefault ("Network.OutUBuff", 65536);
+
+  if ( m_SockOutUBuff <= 0 )
+    {
+      sLog.outError ("Network.OutUBuff is wrong in your config file");
+      return -1;
+    }
+
+  WorldSocket::Acceptor *acc = new WorldSocket::Acceptor;
+  m_Acceptor = acc;
+
+  ACE_INET_Addr listen_addr (port, address);
+
+  if (acc->open (listen_addr, m_NetThreads[0].GetReactor (), ACE_NONBLOCK) == -1)
+    {
+      sLog.outError ("Failed to open acceptor ,check if the port is free");
+      return -1;
+    }
+
+  for (size_t i = 0; i < m_NetThreadsCount; ++i)
+    m_NetThreads[i].Start ();
+
+  return 0;
+}
+
+int
+WorldSocketMgr::StartNetwork (ACE_UINT16 port, const char* address)
+{
+  if (!sLog.IsOutDebug ())
+    ACE_Log_Msg::instance ()->priority_mask (LM_ERROR, ACE_Log_Msg::PROCESS);
+
+  if (this->StartReactiveIO (port, address) == -1)
+    return -1;
+
+  return 0;
+}
+
+void
+WorldSocketMgr::StopNetwork ()
+{
+  if (m_Acceptor)
+    {
+      WorldSocket::Acceptor* acc = dynamic_cast<WorldSocket::Acceptor*> (m_Acceptor);
+
+      if (acc)
+        acc->close ();
+    }
+
+  if (m_NetThreadsCount != 0)
+    {
+      for (size_t i = 0; i < m_NetThreadsCount; ++i)
+        m_NetThreads[i].Stop ();
+    }
+  
+  this->Wait ();
+}
+
+void 
+WorldSocketMgr::Wait ()
+{
+  if (m_NetThreadsCount != 0)
+    {
+      for (size_t i = 0; i < m_NetThreadsCount; ++i)
+        m_NetThreads[i].Wait ();
+    }
+}
+
+int
+WorldSocketMgr::OnSocketOpen (WorldSocket* sock)
+{
+  // set some options here
+  if (m_SockOutKBuff >= 0)
+    if (sock->peer ().set_option (SOL_SOCKET,
+                                  SO_SNDBUF,
+                                  (void*) & m_SockOutKBuff,
+                                  sizeof (int)) == -1 && errno != ENOTSUP)
+      {
+        sLog.outError ("WorldSocketMgr::OnSocketOpen set_option SO_SNDBUF");
+        return -1;
+      }
+
+  static const int ndoption = 1;
+
+  // Set TCP_NODELAY.
+  if (m_UseNoDelay)
+    if (sock->peer ().set_option (ACE_IPPROTO_TCP,
+                                  TCP_NODELAY,
+                                  (void*) & ndoption,
+                                  sizeof (int)) == -1)
+      {
+        sLog.outError ("WorldSocketMgr::OnSocketOpen: peer ().set_option TCP_NODELAY errno = %s", ACE_OS::strerror (errno));
+        return -1;
+      }
+  
+  sock->m_OutBufferSize = static_cast<size_t> (m_SockOutUBuff);
+
+  // we skip the Acceptor Thread
+  size_t min = 1;
+
+  ACE_ASSERT (m_NetThreadsCount >= 1);
+
+  for (size_t i = 1; i < m_NetThreadsCount; ++i)
+    if (m_NetThreads[i].Connections () < m_NetThreads[min].Connections ())
+      min = i;
+
+  return m_NetThreads[min].AddSocket (sock);
+
+  return 0;
+}
+
+WorldSocketMgr*
+WorldSocketMgr::Instance ()
+{
+  return ACE_Singleton<WorldSocketMgr,ACE_Thread_Mutex>::instance();
+}
Index: trunk/src/game/Creature.h
===================================================================
--- trunk/src/game/Creature.h (revision 2)
+++ trunk/src/game/Creature.h (revision 6)
@@ -124,13 +124,4 @@
     uint32 lastincr;
     uint32 ExtendedCost;
-};
-
-struct TrainerSpell
-{
-    SpellEntry const* spell;
-    uint32 spellcost;
-    uint32 reqskill;
-    uint32 reqskillvalue;
-    uint32 reqlevel;
 };
 
@@ -301,4 +292,27 @@
 #endif
 
+struct TrainerSpell
+{
+    uint32 spell;
+    uint32 spellcost;
+    uint32 reqskill;
+    uint32 reqskillvalue;
+    uint32 reqlevel;
+};
+
+typedef std::vector<TrainerSpell*> TrainerSpellList;
+
+struct TrainerSpellData
+{
+    TrainerSpellData() : trainerType(0) {}
+
+    TrainerSpellList spellList;
+    uint32 trainerType;                                     // trainer type based at trainer spells, can be different from creature_template value.
+                                                            // req. for correct show non-prof. trainers like weaponmaster, allowed values 0 and 2.
+
+    void Clear();
+    TrainerSpell const* Find(uint32 spell_id) const;
+};
+
 typedef std::list<GossipOption> GossipOptionList;
 
@@ -441,12 +455,5 @@
         }
 
-        /*********************************************************/
-        /***                    TRAINER SYSTEM                 ***/
-        /*********************************************************/
-        typedef std::list<TrainerSpell> SpellsList;
-        void LoadTrainerSpells();                           // must be called before access to trainer spells, lazy loading at first call
-        void ReloadTrainerSpells() { m_trainerSpellsLoaded = false; LoadTrainerSpells(); }
-        SpellsList const& GetTrainerSpells() const { return m_trainer_spells; }
-        uint32 GetTrainerType() const { return m_trainer_type; }
+        TrainerSpellData const* GetTrainerSpells() const;
 
         CreatureInfo const *GetCreatureInfo() const { return m_creatureInfo; }
@@ -559,9 +566,4 @@
         bool m_itemsLoaded;                                 // vendor items loading state
 
-        // trainer spells
-        bool m_trainerSpellsLoaded;                         // trainer spells loading state
-        SpellsList m_trainer_spells;
-        uint32 m_trainer_type;                              // trainer type based at trainer spells, can be different from creature_template value.
-                                                            // req. for correct show non-prof. trainers like weaponmaster.
         void _RealtimeSetCreatureInfo();
 
@@ -581,5 +583,4 @@
         bool m_gossipOptionLoaded;
         GossipOptionList m_goptions;
-        uint32 m_NPCTextId;                                 // cached value
 
         uint8 m_emoteState;
Index: trunk/src/game/SpellEffects.cpp
===================================================================
--- trunk/src/game/SpellEffects.cpp (revision 2)
+++ trunk/src/game/SpellEffects.cpp (revision 6)
@@ -79,5 +79,5 @@
     &Spell::EffectUnused,                                   // 21 SPELL_EFFECT_EVADE                    one spell: Evade (DND)
     &Spell::EffectParry,                                    // 22 SPELL_EFFECT_PARRY
-    &Spell::EffectUnused,                                   // 23 SPELL_EFFECT_BLOCK                    one spell: Block
+    &Spell::EffectBlock,                                    // 23 SPELL_EFFECT_BLOCK                    one spell: Block
     &Spell::EffectCreateItem,                               // 24 SPELL_EFFECT_CREATE_ITEM
     &Spell::EffectUnused,                                   // 25 SPELL_EFFECT_WEAPON
@@ -5331,4 +5331,12 @@
 }
 
+void Spell::EffectBlock(uint32 /*i*/)
+{
+    if (unitTarget->GetTypeId() != TYPEID_PLAYER)
+        return;
+
+    ((Player*)unitTarget)->SetCanBlock(true);
+}
+
 void Spell::EffectMomentMove(uint32 i)
 {
Index: trunk/src/game/Chat.h
===================================================================
--- trunk/src/game/Chat.h (revision 2)
+++ trunk/src/game/Chat.h (revision 6)
@@ -27,4 +27,5 @@
 class Player;
 class Unit;
+struct GameTele;
 
 struct LanguageDesc
@@ -151,4 +152,5 @@
         bool HandleReloadAllItemCommand(const char* args);
         bool HandleReloadAllLootCommand(const char* args);
+        bool HandleReloadAllNpcCommand(const char* args);
         bool HandleReloadAllQuestCommand(const char* args);
         bool HandleReloadAllScriptsCommand(const char* args);
@@ -165,4 +167,5 @@
         bool HandleReloadGameGraveyardZoneCommand(const char* args);
         bool HandleReloadGameObjectScriptsCommand(const char* args);
+        bool HandleReloadGameTeleCommand(const char* args);
         bool HandleReloadGOQuestRelationsCommand(const char* args);
         bool HandleReloadGOQuestInvRelationsCommand(const char* args);
@@ -178,4 +181,7 @@
         bool HandleReloadLootTemplatesSkinningCommand(const char* args);
         bool HandleReloadMangosStringCommand(const char* args);
+        bool HandleReloadNpcGossipCommand(const char* args);
+        bool HandleReloadNpcTrainerCommand(const char* args);
+        bool HandleReloadNpcVendorCommand(const char* args);
         bool HandleReloadQuestAreaTriggersCommand(const char* args);
         bool HandleReloadQuestEndScriptsCommand(const char* args);
@@ -265,4 +271,5 @@
         bool HandleAllowMovementCommand(const char* args);
         bool HandleGoCommand(const char* args);
+
         bool HandleLearnCommand(const char* args);
         bool HandleLearnAllCommand(const char* args);
@@ -275,4 +282,20 @@
         bool HandleLearnAllMySpellsCommand(const char* args);
         bool HandleLearnAllMyTalentsCommand(const char* args);
+
+        bool HandleLookupAreaCommand(const char* args);
+        bool HandleLookupCreatureCommand(const char* args);
+        bool HandleLookupEventCommand(const char* args);
+        bool HandleLookupFactionCommand(const char * args);
+        bool HandleLookupItemCommand(const char * args);
+        bool HandleLookupItemSetCommand(const char * args);
+        bool HandleLookupObjectCommand(const char* args);
+        bool HandleLookupPlayerIpCommand(const char* args);
+        bool HandleLookupPlayerAccountCommand(const char* args);
+        bool HandleLookupPlayerEmailCommand(const char* args);
+        bool HandleLookupQuestCommand(const char* args);
+        bool HandleLookupSkillCommand(const char* args);
+        bool HandleLookupSpellCommand(const char* args);
+        bool HandleLookupTeleCommand(const char * args);
+
         bool HandleCooldownCommand(const char* args);
         bool HandleUnLearnCommand(const char* args);
@@ -300,6 +323,5 @@
         bool HandleAddItemCommand(const char* args);
         bool HandleAddItemSetCommand(const char* args);
-        bool HandleLookupItemCommand(const char * args);
-        bool HandleLookupItemSetCommand(const char * args);
+
         bool HandleGuildCreateCommand(const char* args);
         bool HandleGuildInviteCommand(const char* args);
@@ -315,5 +337,4 @@
         bool HandleDelTeleCommand(const char * args);
         bool HandleListAurasCommand(const char * args);
-        bool HandleLookupTeleCommand(const char * args);
 
         bool HandleResetHonorCommand(const char * args);
@@ -333,12 +354,4 @@
         bool HandleListObjectCommand(const char* args);
         bool HandleNearObjectCommand(const char* args);
-        bool HandleLookupAreaCommand(const char* args);
-        bool HandleLookupCreatureCommand(const char* args);
-        bool HandleLookupEventCommand(const char* args);
-        bool HandleLookupFactionCommand(const char * args);
-        bool HandleLookupObjectCommand(const char* args);
-        bool HandleLookupQuestCommand(const char* args);
-        bool HandleLookupSkillCommand(const char* args);
-        bool HandleLookupSpellCommand(const char* args);
         bool HandlePasswordCommand(const char* args);
         bool HandleLockAccountCommand(const char* args);
@@ -387,4 +400,5 @@
         char*     extractKeyFromLink(char* text, char const* const* linkTypes, int* found_idx, char** something1 = NULL);
         uint32    extractSpellIdFromLink(char* text);
+        GameTele const* extractGameTeleFromLink(char* text);
 
         GameObject* GetObjectGlobalyWithGuidOrNearWithDbGuid(uint32 lowguid,uint32 entry);
@@ -395,4 +409,5 @@
         void ShowTicket(uint64 guid, char const* text, char const* time);
         uint32 GetTicketIDByNum(uint32 num);
+        bool LookupPlayerSearchCommand(QueryResult* result, int32 limit);
 
         void SetSentErrorMessage(bool val){ sentErrorMessage = val;};
Index: trunk/src/game/Level1.cpp
===================================================================
--- trunk/src/game/Level1.cpp (revision 2)
+++ trunk/src/game/Level1.cpp (revision 6)
@@ -1555,5 +1555,4 @@
 }
 
-//Teleport by game_tele entry
 bool ChatHandler::HandleModifyHonorCommand (const char* args)
 {
@@ -1585,29 +1584,10 @@
     Player* _player = m_session->GetPlayer();
 
-    char* cId = extractKeyFromLink((char*)args,"Htele");    // string or [name] Shift-click form |color|Htele:name|h[name]|h|r
-    if(!cId)
-        return false;
-
-    std::string name = cId;
-    WorldDatabase.escape_string(name);
-
-    QueryResult *result = WorldDatabase.PQuery("SELECT position_x,position_y,position_z,orientation,map FROM game_tele WHERE name = '%s'",name.c_str());
-    if (!result)
+    // id, or string, or [name] Shift-click form |color|Htele:id|h[name]|h|r
+    GameTele const* tele = extractGameTeleFromLink((char*)args);
+
+    if (!tele)
     {
         SendSysMessage(LANG_COMMAND_TELE_NOTFOUND);
-        SetSentErrorMessage(true);
-        return false;
-    }
-    Field *fields = result->Fetch();
-    float x = fields[0].GetFloat();
-    float y = fields[1].GetFloat();
-    float z = fields[2].GetFloat();
-    float ort = fields[3].GetFloat();
-    int mapid = fields[4].GetUInt16();
-    delete result;
-
-    if(!MapManager::IsValidMapCoord(mapid,x,y,x,ort))
-    {
-        PSendSysMessage(LANG_INVALID_TARGET_COORD,x,y,mapid);
         SetSentErrorMessage(true);
         return false;
@@ -1624,5 +1604,5 @@
         _player->SaveRecallPosition();
 
-    _player->TeleportTo(mapid, x, y, z, ort);
+    _player->TeleportTo(tele->mapId, tele->position_x, tele->position_y, tele->position_z, tele->orientation);
     return true;
 }
@@ -1703,32 +1683,34 @@
 
     std::string namepart = str;
-    WorldDatabase.escape_string(namepart);
-    QueryResult *result = WorldDatabase.PQuery("SELECT name FROM game_tele WHERE name "_LIKE_" '""%%%s%%""'",namepart.c_str());
-    if (!result)
-    {
-        SendSysMessage(LANG_COMMAND_TELE_NOREQUEST);
-        SetSentErrorMessage(true);
-        return false;
-    }
-    std::string reply;
-    for (uint64 i=0; i < result->GetRowCount(); i++)
-    {
-        Field *fields = result->Fetch();
-        reply += "  |cffffffff|Htele:";
-        reply += fields[0].GetCppString();
-        reply += "|h[";
-        reply += fields[0].GetCppString();
-        reply += "]|h|r\n";
-        result->NextRow();
-    }
-    delete result;
-
-    if(reply.empty())
+    std::wstring wnamepart;
+
+    if(!Utf8toWStr(namepart,wnamepart))
+        return false;
+
+    // converting string that we try to find to lower case
+    wstrToLower( wnamepart );
+
+    GameTeleMap const & teleMap = objmgr.GetGameTeleMap();
+
+    std::ostringstream reply;
+    for(GameTeleMap::const_iterator itr = teleMap.begin(); itr != teleMap.end(); ++itr)
+    {
+        GameTele const* tele = &itr->second;
+
+        if(tele->wnameLow.find(wnamepart) == std::wstring::npos)
+            continue;
+
+        reply << "  |cffffffff|Htele:";
+        reply << itr->first;
+        reply << "|h[";
+        reply << tele->name;
+        reply << "]|h|r\n";
+    }
+
+    if(reply.str().empty())
         SendSysMessage(LANG_COMMAND_TELE_NOLOCATION);
     else
-    {
-        reply = GetMangosString(LANG_COMMAND_TELE_LOCATION) + reply;
-        SendSysMessage(reply.c_str());
-    }
+        PSendSysMessage(LANG_COMMAND_TELE_LOCATION,reply.str().c_str());
+
     return true;
 }
@@ -1862,43 +1844,22 @@
         return false;
 
+    std::string name = pName;
+
+    if(!normalizePlayerName(name))
+    {
+        SendSysMessage(LANG_PLAYER_NOT_FOUND);
+        SetSentErrorMessage(true);
+        return false;
+    }
+
     char* tail = strtok(NULL, "");
     if(!tail)
         return false;
 
-    char* cId = extractKeyFromLink((char*)tail,"Htele");    // string or [name] Shift-click form |color|Htele:name|h[name]|h|r
-    if(!cId)
-        return false;
-
-    std::string location = cId;
-
-    std::string name = pName;
-
-    if(!normalizePlayerName(name))
-    {
-        SendSysMessage(LANG_PLAYER_NOT_FOUND);
-        SetSentErrorMessage(true);
-        return false;
-    }
-
-    WorldDatabase.escape_string(location);
-    QueryResult *result = WorldDatabase.PQuery("SELECT position_x,position_y,position_z,orientation,map FROM game_tele WHERE name = '%s'",location.c_str());
-    if (!result)
+    // id, or string, or [name] Shift-click form |color|Htele:id|h[name]|h|r
+    GameTele const* tele = extractGameTeleFromLink(tail);
+    if(!tele)
     {
         SendSysMessage(LANG_COMMAND_TELE_NOTFOUND);
-        SetSentErrorMessage(true);
-        return false;
-    }
-
-    Field *fields = result->Fetch();
-    float x = fields[0].GetFloat();
-    float y = fields[1].GetFloat();
-    float z = fields[2].GetFloat();
-    float ort = fields[3].GetFloat();
-    int mapid = fields[4].GetUInt16();
-    delete result;
-
-    if(!MapManager::IsValidMapCoord(mapid,x,y,x,ort))
-    {
-        PSendSysMessage(LANG_INVALID_TARGET_COORD,x,y,mapid);
         SetSentErrorMessage(true);
         return false;
@@ -1916,5 +1877,5 @@
         }
 
-        PSendSysMessage(LANG_TELEPORTING_TO, chr->GetName(),"", location.c_str());
+        PSendSysMessage(LANG_TELEPORTING_TO, chr->GetName(),"", tele->name.c_str());
 
         if (m_session->GetPlayer()->IsVisibleGloballyFor(chr))
@@ -1931,10 +1892,10 @@
             chr->SaveRecallPosition();
 
-        chr->TeleportTo(mapid,x,y,z,chr->GetOrientation());
+        chr->TeleportTo(tele->mapId,tele->position_x,tele->position_y,tele->position_z,tele->orientation);
     }
     else if (uint64 guid = objmgr.GetPlayerGUIDByName(name.c_str()))
     {
-        PSendSysMessage(LANG_TELEPORTING_TO, name.c_str(), GetMangosString(LANG_OFFLINE), location.c_str());
-        Player::SavePositionInDB(mapid,x,y,z,ort,MapManager::Instance().GetZoneId(mapid,x,y),guid);
+        PSendSysMessage(LANG_TELEPORTING_TO, name.c_str(), GetMangosString(LANG_OFFLINE), tele->name.c_str());
+        Player::SavePositionInDB(tele->mapId,tele->position_x,tele->position_y,tele->position_z,tele->orientation,MapManager::Instance().GetZoneId(tele->mapId,tele->position_x,tele->position_y),guid);
     }
     else
@@ -1958,13 +1919,7 @@
     }
 
-    char* cId = extractKeyFromLink((char*)args,"Htele");    // string or [name] Shift-click form |color|Htele:name|h[name]|h|r
-    if(!cId)
-        return false;
-
-    std::string location = cId;
-
-    WorldDatabase.escape_string(location);
-    QueryResult *result = WorldDatabase.PQuery("SELECT position_x,position_y,position_z,orientation,map FROM game_tele WHERE name = '%s'",location.c_str());
-    if (!result)
+    // id, or string, or [name] Shift-click form |color|Htele:id|h[name]|h|r
+    GameTele const* tele = extractGameTeleFromLink((char*)args);
+    if(!tele)
     {
         SendSysMessage(LANG_COMMAND_TELE_NOTFOUND);
@@ -1972,21 +1927,6 @@
         return false;
     }
-    Field *fields = result->Fetch();
-    float x = fields[0].GetFloat();
-    float y = fields[1].GetFloat();
-    float z = fields[2].GetFloat();
-    float ort = fields[3].GetFloat();
-    int mapid = fields[4].GetUInt16();
-    delete result;
-
-    if(!MapManager::IsValidMapCoord(mapid,x,y,z,ort))
-    {
-        PSendSysMessage(LANG_INVALID_TARGET_COORD,x,y,mapid);
-        SetSentErrorMessage(true);
-        return false;
-    }
 
     Group *grp = player->GetGroup();
-
     if(!grp)
     {
@@ -2009,5 +1949,5 @@
         }
 
-        PSendSysMessage(LANG_TELEPORTING_TO, pl->GetName(),"", location.c_str());
+        PSendSysMessage(LANG_TELEPORTING_TO, pl->GetName(),"", tele->name.c_str());
 
         if (m_session->GetPlayer() != pl && m_session->GetPlayer()->IsVisibleGloballyFor(pl))
@@ -2024,5 +1964,5 @@
             pl->SaveRecallPosition();
 
-        pl->TeleportTo(mapid, x, y, z, ort);
+        pl->TeleportTo(tele->mapId, tele->position_x, tele->position_y, tele->position_z, tele->orientation);
     }
 
Index: trunk/src/game/Level3.cpp
===================================================================
--- trunk/src/game/Level3.cpp (revision 2)
+++ trunk/src/game/Level3.cpp (revision 6)
@@ -62,9 +62,9 @@
 {
     HandleReloadAreaTriggerTeleportCommand("");
-    //HandleReloadAreaTriggerTavernCommand(""); -- reloaded in HandleReloadAreaTriggerTavernCommand
-    //HandleReloadQuestAreaTriggersCommand(""); -- reloaded in HandleReloadAllQuestCommand
     HandleReloadSkillFishingBaseLevelCommand("");
 
+    HandleReloadAllAreaCommand("");
     HandleReloadAllLootCommand("");
+    HandleReloadAllNpcCommand("");
     HandleReloadAllQuestCommand("");
     HandleReloadAllSpellCommand("");
@@ -74,4 +74,5 @@
     HandleReloadReservedNameCommand("");
     HandleReloadMangosStringCommand("");
+    HandleReloadGameTeleCommand("");
     return true;
 }
@@ -79,6 +80,24 @@
 bool ChatHandler::HandleReloadAllAreaCommand(const char*)
 {
+    //HandleReloadQuestAreaTriggersCommand(""); -- reloaded in HandleReloadAllQuestCommand
     HandleReloadAreaTriggerTeleportCommand("");
-    //HandleReloadAreaTriggerTavernCommand(""); -- reloaded in HandleReloadAreaTriggerTavernCommand
+    HandleReloadAreaTriggerTavernCommand("");
+    HandleReloadGameGraveyardZoneCommand("");
+    return true;
+}
+
+bool ChatHandler::HandleReloadAllLootCommand(const char*)
+{
+    sLog.outString( "Re-Loading Loot Tables..." );
+    LoadLootTables();
+    SendGlobalSysMessage("DB tables `*_loot_template` reloaded.");
+    return true;
+}
+
+bool ChatHandler::HandleReloadAllNpcCommand(const char* /*args*/)
+{
+    HandleReloadNpcGossipCommand("a");
+    HandleReloadNpcTrainerCommand("a");
+    HandleReloadNpcVendorCommand("a");
     return true;
 }
@@ -92,12 +111,4 @@
     objmgr.LoadQuestRelations();
     SendGlobalSysMessage("DB tables `*_questrelation` and `*_involvedrelation` reloaded.");
-    return true;
-}
-
-bool ChatHandler::HandleReloadAllLootCommand(const char*)
-{
-    sLog.outString( "Re-Loading Loot Tables..." );
-    LoadLootTables();
-    SendGlobalSysMessage("DB tables `*_loot_template` reloaded.");
     return true;
 }
@@ -321,4 +332,28 @@
 }
 
+bool ChatHandler::HandleReloadNpcGossipCommand(const char*)
+{
+    sLog.outString( "Re-Loading `npc_gossip` Table!" );
+    objmgr.LoadNpcTextId();
+    SendGlobalSysMessage("DB table `npc_gossip` reloaded.");
+    return true;
+}
+
+bool ChatHandler::HandleReloadNpcTrainerCommand(const char*)
+{
+    sLog.outString( "Re-Loading `npc_trainer` Table!" );
+    objmgr.LoadTrainerSpell();
+    SendGlobalSysMessage("DB table `npc_trainer` reloaded.");
+    return true;
+}
+
+bool ChatHandler::HandleReloadNpcVendorCommand(const char*)
+{
+    sLog.outString( "Re-Loading `npc_vendor` Table!" );
+    objmgr.LoadVendors();
+    SendGlobalSysMessage("DB table `npc_vendor` reloaded.");
+    return true;
+}
+
 bool ChatHandler::HandleReloadReservedNameCommand(const char*)
 {
@@ -548,4 +583,15 @@
 
     SendGlobalSysMessage("DB table `game_graveyard_zone` reloaded.");
+
+    return true;
+}
+
+bool ChatHandler::HandleReloadGameTeleCommand(const char* /*arg*/)
+{
+    sLog.outString( "Re-Loading Game Tele coordinates...");
+
+    objmgr.LoadGameTele();
+
+    SendGlobalSysMessage("DB table `game_tele` reloaded.");
 
     return true;
@@ -3870,26 +3916,27 @@
     if(!*args)
         return false;
-    QueryResult *result;
+
     Player *player=m_session->GetPlayer();
-    if (!player) return false;
+    if (!player)
+        return false;
 
     std::string name = args;
-    WorldDatabase.escape_string(name);
-    result = WorldDatabase.PQuery("SELECT id FROM game_tele WHERE name = '%s'",name.c_str());
-    if (result)
+
+    if(objmgr.GetGameTele(name))
     {
         SendSysMessage(LANG_COMMAND_TP_ALREADYEXIST);
-        delete result;
-        SetSentErrorMessage(true);
-        return false;
-    }
-
-    float x = player->GetPositionX();
-    float y = player->GetPositionY();
-    float z = player->GetPositionZ();
-    float ort = player->GetOrientation();
-    int mapid = player->GetMapId();
-
-    if(WorldDatabase.PExecuteLog("INSERT INTO game_tele (position_x,position_y,position_z,orientation,map,name) VALUES (%f,%f,%f,%f,%d,'%s')",x,y,z,ort,mapid,name.c_str()))
+        SetSentErrorMessage(true);
+        return false;
+    }
+
+    GameTele tele;
+    tele.position_x  = player->GetPositionX();
+    tele.position_y  = player->GetPositionY();
+    tele.position_z  = player->GetPositionZ();
+    tele.orientation = player->GetOrientation();
+    tele.mapId       = player->GetMapId();
+    tele.name        = name;
+
+    if(objmgr.AddGameTele(tele))
     {
         SendSysMessage(LANG_COMMAND_TP_ADDED);
@@ -3911,8 +3958,6 @@
 
     std::string name = args;
-    WorldDatabase.escape_string(name);
-
-    QueryResult *result=WorldDatabase.PQuery("SELECT id FROM game_tele WHERE name = '%s'",name.c_str());
-    if (!result)
+
+    if(!objmgr.DeleteGameTele(name))
     {
         SendSysMessage(LANG_COMMAND_TELE_NOTFOUND);
@@ -3920,16 +3965,6 @@
         return false;
     }
-    delete result;
-
-    if(WorldDatabase.PExecuteLog("DELETE FROM game_tele WHERE name = '%s'",name.c_str()))
-    {
-        SendSysMessage(LANG_COMMAND_TP_DELETED);
-    }
-    else
-    {
-        SendSysMessage(LANG_COMMAND_TP_DELETEERR);
-        SetSentErrorMessage(true);
-        return false;
-    }
+
+    SendSysMessage(LANG_COMMAND_TP_DELETED);
     return true;
 }
@@ -4759,5 +4794,5 @@
     if(Type == "ip")
     {
-        result = loginDatabase.PQuery("SELECT ip FROM ip_banned WHERE ip "_LIKE_" '""%%%s%%""'",Filter.c_str());
+        result = loginDatabase.PQuery("SELECT ip FROM ip_banned WHERE ip "_LIKE_" "_CONCAT3_("'%%'","'%s'","'%%'"),Filter.c_str());
         if(!result)
         {
@@ -4778,5 +4813,5 @@
     if(Type == "account")
     {
-        result = loginDatabase.PQuery("SELECT id FROM account WHERE username "_LIKE_" '""%%%s%%""' ",Filter.c_str());
+        result = loginDatabase.PQuery("SELECT id FROM account WHERE username "_LIKE_" "_CONCAT3_("'%%'","'%s'","'%%'"),Filter.c_str());
         if (!result)
         {
@@ -4788,5 +4823,5 @@
     else if(Type == "characters")
     {
-        result = CharacterDatabase.PQuery("SELECT account FROM characters, WHERE name "_LIKE_" '""%%%s%%""' ",Filter.c_str());
+        result = CharacterDatabase.PQuery("SELECT account FROM characters, WHERE name "_LIKE_" "_CONCAT3_("'%%'","'%s'","'%%'"),Filter.c_str());
         if (!result)
         {
Index: trunk/src/game/WaypointMovementGenerator.cpp
===================================================================
--- trunk/src/game/WaypointMovementGenerator.cpp (revision 2)
+++ trunk/src/game/WaypointMovementGenerator.cpp (revision 6)
@@ -112,4 +112,6 @@
             // Now we re-set destination to same node and start travel
             creature.addUnitState(UNIT_STAT_ROAMING);
+            if (creature.canFly())
+                creature.SetUnitMovementFlags(MOVEMENTFLAG_FLYING2);
             const WaypointNode &node = i_path->at(i_currentNode);
             i_destinationHolder.SetDestination(traveller, node.x, node.y, node.z);
@@ -174,4 +176,6 @@
         {
             creature.addUnitState(UNIT_STAT_ROAMING);
+            if (creature.canFly())
+                creature.SetUnitMovementFlags(MOVEMENTFLAG_FLYING2);
             const WaypointNode &node = i_path->at(i_currentNode);
             i_destinationHolder.SetDestination(traveller, node.x, node.y, node.z);
Index: trunk/src/game/WorldSocketMgr.h
===================================================================
--- trunk/src/game/WorldSocketMgr.h (revision 2)
+++ trunk/src/game/WorldSocketMgr.h (revision 6)
@@ -17,31 +17,61 @@
  */
 
-/// \addtogroup u2w User to World Communication
-/// @{
-/// \file
+/** \addtogroup u2w User to World Communication
+ *  @{
+ *  \file WorldSocketMgr.h
+ *  \author Derex <derex101@gmail.com>
+ */
 
 #ifndef __WORLDSOCKETMGR_H
 #define __WORLDSOCKETMGR_H
 
-#include "Policies/Singleton.h"
+#include <ace/Basic_Types.h>
+#include <ace/Singleton.h>
+#include <ace/Thread_Mutex.h>
 
 class WorldSocket;
+class ReactorRunnable;
+class ACE_Event_Handler;
 
-/// Manages the list of connected WorldSockets
-class WorldSocketMgr
+/// Manages all sockets connected to peers and network threads
+class WorldSocketMgr 
 {
-    public:
-        WorldSocketMgr();
+public:
+  friend class WorldSocket;
+  friend class ACE_Singleton<WorldSocketMgr,ACE_Thread_Mutex>;
 
-        void AddSocket(WorldSocket *s);
-        void RemoveSocket(WorldSocket *s);
-        void Update(time_t diff);
-
-    private:
-        typedef std::set<WorldSocket*> SocketSet;
-        SocketSet m_sockets;
+  /// Start network, listen at address:port .
+  int StartNetwork (ACE_UINT16 port, const char* address);
+  
+  /// Stops all network threads, It will wait for all running threads .
+  void StopNetwork ();
+  
+  /// Wait untill all network threads have "joined" .
+  void Wait ();
+  
+  /// Make this class singleton .
+  static WorldSocketMgr* Instance ();
+  
+private:
+  int OnSocketOpen(WorldSocket* sock);
+  
+  int StartReactiveIO(ACE_UINT16 port, const char* address);
+  
+private:  
+  WorldSocketMgr ();
+  virtual ~WorldSocketMgr ();
+  
+  ReactorRunnable* m_NetThreads;
+  size_t m_NetThreadsCount;
+  
+  int m_SockOutKBuff;
+  int m_SockOutUBuff;
+  bool m_UseNoDelay;
+  
+  ACE_Event_Handler* m_Acceptor;
 };
 
-#define sWorldSocketMgr MaNGOS::Singleton<WorldSocketMgr>::Instance()
+#define sWorldSocketMgr WorldSocketMgr::Instance ()
+
 #endif
 /// @}
Index: trunk/src/game/GuardAI.cpp
===================================================================
--- trunk/src/game/GuardAI.cpp (revision 2)
+++ trunk/src/game/GuardAI.cpp (revision 6)
@@ -38,4 +38,8 @@
 void GuardAI::MoveInLineOfSight(Unit *u)
 {
+    // Ignore Z for flying creatures
+    if ( !i_creature.canFly() && i_creature.GetDistanceZ(u) > CREATURE_Z_ATTACK_RANGE )
+        return;
+
     if( !i_creature.getVictim() && u->isTargetableForAttack() &&
         ( u->IsHostileToPlayers() || i_creature.IsHostileTo(u) /*|| u->getVictim() && i_creature.IsFriendlyTo(u->getVictim())*/ ) &&
@@ -43,5 +47,5 @@
     {
         float attackRadius = i_creature.GetAttackDistance(u);
-        if(i_creature.IsWithinDistInMap(u,attackRadius) && i_creature.GetDistanceZ(u) <= CREATURE_Z_ATTACK_RANGE)
+        if(i_creature.IsWithinDistInMap(u,attackRadius))
         {
             //Need add code to let guard support player
Index: trunk/src/game/Chat.cpp
===================================================================
--- trunk/src/game/Chat.cpp (revision 2)
+++ trunk/src/game/Chat.cpp (revision 6)
@@ -194,6 +194,7 @@
     {
         { "all",            SEC_ADMINISTRATOR,  &ChatHandler::HandleReloadAllCommand,           "", NULL },
+        { "all_loot",       SEC_ADMINISTRATOR,  &ChatHandler::HandleReloadAllLootCommand,       "", NULL },
+        { "all_npc",        SEC_ADMINISTRATOR,  &ChatHandler::HandleReloadAllNpcCommand,        "", NULL },
         { "all_quest",      SEC_ADMINISTRATOR,  &ChatHandler::HandleReloadAllQuestCommand,      "", NULL },
-        { "all_loot",       SEC_ADMINISTRATOR,  &ChatHandler::HandleReloadAllLootCommand,       "", NULL },
         { "all_scripts",    SEC_ADMINISTRATOR,  &ChatHandler::HandleReloadAllScriptsCommand,    "", NULL },
         { "all_spell",      SEC_ADMINISTRATOR,  &ChatHandler::HandleReloadAllSpellCommand,      "", NULL },
@@ -213,4 +214,5 @@
         { "fishing_loot_template",       SEC_ADMINISTRATOR, &ChatHandler::HandleReloadLootTemplatesFishingCommand,    "", NULL },
         { "game_graveyard_zone",         SEC_ADMINISTRATOR, &ChatHandler::HandleReloadGameGraveyardZoneCommand,       "", NULL },
+        { "game_tele",                   SEC_ADMINISTRATOR, &ChatHandler::HandleReloadGameTeleCommand,                "", NULL },
         { "gameobject_involvedrelation", SEC_ADMINISTRATOR, &ChatHandler::HandleReloadGOQuestInvRelationsCommand,     "", NULL },
         { "gameobject_loot_template",    SEC_ADMINISTRATOR, &ChatHandler::HandleReloadLootTemplatesGameobjectCommand, "", NULL },
@@ -220,4 +222,7 @@
         { "item_loot_template",          SEC_ADMINISTRATOR, &ChatHandler::HandleReloadLootTemplatesItemCommand,       "", NULL },
         { "mangos_string",               SEC_ADMINISTRATOR, &ChatHandler::HandleReloadMangosStringCommand,            "", NULL },
+        { "npc_gossip",                  SEC_ADMINISTRATOR, &ChatHandler::HandleReloadNpcGossipCommand,               "", NULL },
+        { "npc_trainer",                 SEC_ADMINISTRATOR, &ChatHandler::HandleReloadNpcTrainerCommand,              "", NULL },
+        { "npc_vendor",                  SEC_ADMINISTRATOR, &ChatHandler::HandleReloadNpcVendorCommand,               "", NULL },
         { "page_text",                   SEC_ADMINISTRATOR, &ChatHandler::HandleReloadPageTextsCommand,               "", NULL },
         { "pickpocketing_loot_template", SEC_ADMINISTRATOR, &ChatHandler::HandleReloadLootTemplatesPickpocketingCommand,"",NULL},
@@ -265,4 +270,12 @@
     };
 
+    static ChatCommand lookupPlayerCommandTable[] =
+    {
+        { "ip",            SEC_GAMEMASTER,     &ChatHandler::HandleLookupPlayerIpCommand,       "", NULL },
+        { "account",       SEC_GAMEMASTER,     &ChatHandler::HandleLookupPlayerAccountCommand,  "", NULL },
+        { "email",         SEC_GAMEMASTER,     &ChatHandler::HandleLookupPlayerEmailCommand,    "", NULL },
+        { NULL,            0,                  NULL,                                            "", NULL }
+    };
+
     static ChatCommand lookupCommandTable[] =
     {
@@ -275,4 +288,5 @@
         { "object",         SEC_ADMINISTRATOR,  &ChatHandler::HandleLookupObjectCommand,        "", NULL },
         { "quest",          SEC_ADMINISTRATOR,  &ChatHandler::HandleLookupQuestCommand,         "", NULL },
+        { "player",         SEC_GAMEMASTER,     NULL,                                           "", lookupPlayerCommandTable },
         { "skill",          SEC_ADMINISTRATOR,  &ChatHandler::HandleLookupSkillCommand,         "", NULL },
         { "spell",          SEC_ADMINISTRATOR,  &ChatHandler::HandleLookupSpellCommand,         "", NULL },
@@ -1102,2 +1116,16 @@
 }
 
+GameTele const* ChatHandler::extractGameTeleFromLink(char* text)
+{
+    // id, or string, or [name] Shift-click form |color|Htele:id|h[name]|h|r
+    char* cId = extractKeyFromLink(text,"Htele");
+    if(!cId)
+        return false;
+
+    // id case (explicit or from shift link)
+    if(cId[0] >= '0' || cId[0] >= '9')
+        if(uint32 id = atoi(cId))
+            return objmgr.GetGameTele(id);
+
+    return objmgr.GetGameTele(cId);
+}
Index: trunk/src/game/GossipDef.h
===================================================================
--- trunk/src/game/GossipDef.h (revision 2)
+++ trunk/src/game/GossipDef.h (revision 6)
@@ -109,7 +109,12 @@
         void AddMenuItem(uint8 Icon, char const* Message, uint32 dtSender, uint32 dtAction, char const* BoxMessage, uint32 BoxMoney, bool Coded = false);
 
-        unsigned int MenuItemCount()
+        unsigned int MenuItemCount() const
         {
             return m_gItems.size();
+        }
+
+        bool Empty() const
+        {
+            return m_gItems.empty();
         }
 
@@ -138,8 +143,14 @@
         void ClearMenu();
 
-        uint8 MenuItemCount()
+        uint8 MenuItemCount() const
         {
             return m_qItems.size();
         }
+
+        bool Empty() const
+        {
+            return m_qItems.empty();
+        }
+
         bool HasItem( uint32 questid );
 
@@ -156,6 +167,6 @@
 {
     private:
-        GossipMenu* pGossipMenu;
-        QuestMenu* pQuestMenu;
+        GossipMenu mGossipMenu;
+        QuestMenu  mQuestMenu;
         WorldSession* pSession;
 
@@ -164,6 +175,8 @@
         ~PlayerMenu();
 
-        GossipMenu* GetGossipMenu() { return pGossipMenu; }
-        QuestMenu* GetQuestMenu() { return pQuestMenu; }
+        GossipMenu& GetGossipMenu() { return mGossipMenu; }
+        QuestMenu& GetQuestMenu() { return mQuestMenu; }
+
+        bool Empty() const { return mGossipMenu.Empty() && mQuestMenu.Empty(); }
 
         void ClearMenus();
Index: trunk/src/game/Player.h
===================================================================
--- trunk/src/game/Player.h (revision 2)
+++ trunk/src/game/Player.h (revision 6)
@@ -671,5 +671,5 @@
 {
     ItemPosCount(uint16 _pos, uint8 _count) : pos(_pos), count(_count) {}
-    bool isContainedIn(std::vector<ItemPosCount>&);
+    bool isContainedIn(std::vector<ItemPosCount> const& vec) const;
     uint16 pos;
     uint8 count;
@@ -1742,5 +1742,7 @@
         uint32 GetShieldBlockValue() const;                 // overwrite Unit version (virtual)
         bool CanParry() const { return m_canParry; }
-        void SetCanParry(bool value) { m_canParry = value; }
+        void SetCanParry(bool value);
+        bool CanBlock() const { return m_canBlock; }
+        void SetCanBlock(bool value);
         bool CanDualWield() const { return m_canDualWield; }
         void SetCanDualWield(bool value) { m_canDualWield = value; }
@@ -2202,4 +2204,5 @@
         uint32 m_ArmorProficiency;
         bool m_canParry;
+        bool m_canBlock;
         bool m_canDualWield;
         uint8 m_swingErrorMsg;
Index: trunk/src/game/GossipDef.cpp
===================================================================
--- trunk/src/game/GossipDef.cpp (revision 2)
+++ trunk/src/game/GossipDef.cpp (revision 6)
@@ -92,36 +92,32 @@
 }
 
-PlayerMenu::PlayerMenu( WorldSession *Session )
-{
-    pGossipMenu = new GossipMenu();
-    pQuestMenu  = new QuestMenu();
-    pSession    = Session;
+PlayerMenu::PlayerMenu( WorldSession *session ) : pSession(session)
+{
 }
 
 PlayerMenu::~PlayerMenu()
 {
-    delete pGossipMenu;
-    delete pQuestMenu;
+    ClearMenus();
 }
 
 void PlayerMenu::ClearMenus()
 {
-    pGossipMenu->ClearMenu();
-    pQuestMenu->ClearMenu();
+    mGossipMenu.ClearMenu();
+    mQuestMenu.ClearMenu();
 }
 
 uint32 PlayerMenu::GossipOptionSender( unsigned int Selection )
 {
-    return pGossipMenu->MenuItemSender( Selection );
+    return mGossipMenu.MenuItemSender( Selection );
 }
 
 uint32 PlayerMenu::GossipOptionAction( unsigned int Selection )
 {
-    return pGossipMenu->MenuItemAction( Selection );
+    return mGossipMenu.MenuItemAction( Selection );
 }
 
 bool PlayerMenu::GossipOptionCoded( unsigned int Selection )
 {
-    return pGossipMenu->MenuItemCoded( Selection );
+    return mGossipMenu.MenuItemCoded( Selection );
 }
 
@@ -132,9 +128,9 @@
     data << uint32(0);                                      // new 2.4.0
     data << uint32( TitleTextId );
-    data << uint32( pGossipMenu->MenuItemCount() );         // max count 0x0F
-
-    for ( unsigned int iI = 0; iI < pGossipMenu->MenuItemCount(); iI++ )
-    {
-        GossipMenuItem const& gItem = pGossipMenu->GetItem(iI);
+    data << uint32( mGossipMenu.MenuItemCount() );         // max count 0x0F
+
+    for ( unsigned int iI = 0; iI < mGossipMenu.MenuItemCount(); iI++ )
+    {
+        GossipMenuItem const& gItem = mGossipMenu.GetItem(iI);
         data << uint32( iI );
         data << uint8( gItem.m_gIcon );
@@ -151,9 +147,9 @@
     }
 
-    data << uint32( pQuestMenu->MenuItemCount() );          // max count 0x20
-
-    for ( uint16 iI = 0; iI < pQuestMenu->MenuItemCount(); iI++ )
-    {
-        QuestMenuItem const& qItem = pQuestMenu->GetItem(iI);
+    data << uint32( mQuestMenu.MenuItemCount() );          // max count 0x20
+
+    for ( uint16 iI = 0; iI < mQuestMenu.MenuItemCount(); iI++ )
+    {
+        QuestMenuItem const& qItem = mQuestMenu.GetItem(iI);
         uint32 questID = qItem.m_qId;
         Quest const* pQuest = objmgr.GetQuestTemplate(questID);
@@ -358,9 +354,10 @@
     data << uint32(eEmote._Delay );                         // player emote
     data << uint32(eEmote._Emote );                         // NPC emote
-    data << uint8 ( pQuestMenu->MenuItemCount() );
-
-    for ( uint16 iI = 0; iI < pQuestMenu->MenuItemCount(); iI++ )
-    {
-        QuestMenuItem qmi=pQuestMenu->GetItem(iI);
+    data << uint8 ( mQuestMenu.MenuItemCount() );
+
+    for ( uint16 iI = 0; iI < mQuestMenu.MenuItemCount(); iI++ )
+    {
+        QuestMenuItem const& qmi = mQuestMenu.GetItem(iI);
+
         uint32 questID = qmi.m_qId;
         Quest const *pQuest = objmgr.GetQuestTemplate(questID);
Index: trunk/src/game/WorldSocket.cpp
===================================================================
--- trunk/src/game/WorldSocket.cpp (revision 2)
+++ trunk/src/game/WorldSocket.cpp (revision 6)
@@ -1,3 +1,3 @@
-/*
+/* 
  * Copyright (C) 2005-2008 MaNGOS <http://www.mangosproject.org/>
  *
@@ -17,25 +17,31 @@
  */
 
-/** \file
-    \ingroup u2w
-*/
-
 #include "Common.h"
-#include "Log.h"
+#include "WorldSocket.h" 
+#include <ace/Message_Block.h>
+#include <ace/OS_NS_string.h>
+#include <ace/OS_NS_unistd.h>
+#include <ace/os_include/arpa/os_inet.h>
+#include <ace/os_include/netinet/os_tcp.h>
+#include <ace/os_include/sys/os_types.h>
+#include <ace/os_include/sys/os_socket.h>
+#include <ace/OS_NS_string.h>
+#include <ace/Reactor.h>
+#include <ace/Auto_Ptr.h>
+
+#include "Util.h"
+#include "World.h"
+#include "WorldPacket.h"
+#include "SharedDefines.h"
+#include "ByteBuffer.h"
+#include "AddonHandler.h"
 #include "Opcodes.h"
 #include "Database/DatabaseEnv.h"
 #include "Auth/Sha1.h"
-#include "WorldPacket.h"
-#include "WorldSocket.h"
 #include "WorldSession.h"
-#include "World.h"
 #include "WorldSocketMgr.h"
-#include "Policies/SingletonImp.h"
+#include "Log.h"
 #include "WorldLog.h"
-#include "AddonHandler.h"
-#include "sockets/Utility.h"
-#include "Util.h"
-
-// GCC have alternative #pragma pack(N) syntax and old gcc version not support pack(push,N), also any gcc version not support it at some platform
+
 #if defined( __GNUC__ )
 #pragma pack(1)
@@ -44,19 +50,16 @@
 #endif
 
-/// Client Packet Header
+struct ServerPktHeader
+{
+  ACE_UINT16 size;
+  ACE_UINT16 cmd;
+};
+
 struct ClientPktHeader
 {
-    uint16 size;
-    uint32 cmd;
+  ACE_UINT16 size;
+  ACE_UINT32 cmd;
 };
 
-/// Server Packet Header
-struct ServerPktHeader
-{
-    uint16 size;
-    uint16 cmd;
-};
-
-// GCC have alternative #pragma pack() syntax and old gcc version not support pack(pop), also any gcc version not support it at some platform
 #if defined( __GNUC__ )
 #pragma pack()
@@ -65,600 +68,1022 @@
 #endif
 
-#define SOCKET_CHECK_PACKET_SIZE(P,S) if((P).size() < (S)) return SizeError((P),(S));
-
-/// WorldSocket construction and initialization.
-WorldSocket::WorldSocket(ISocketHandler &sh): TcpSocket(sh), _cmd(0), _remaining(0), _session(NULL)
-{
-    _seed = static_cast<uint32>(rand32());
-    m_LastPingMSTime = 0;                                   // first time it will counted as overspeed maybe, but this is not important
-    m_OverSpeedPings = 0;
-
-    if (sWorld.getConfig(CONFIG_TCP_NO_DELAY))
-        SetTcpNodelay(true);
-}
-
-/// WorldSocket destructor
-WorldSocket::~WorldSocket()
-{
-    if(_session)
-        _session->SetSocket(0);
-
-    WorldPacket *packet;
-
-    ///- Go through the to-be-sent queue and delete remaining packets
-    while(!_sendQueue.empty())
-    {
-        packet = _sendQueue.next();
-        delete packet;
-    }
-}
-
-/// Copy the packet to the to-be-sent queue
-void WorldSocket::SendPacket(WorldPacket const* packet)
-{
-    WorldPacket *pck = new WorldPacket(*packet);
-    ASSERT(pck);
-    _sendQueue.add(pck);
-}
-
-/// On client connection
-void WorldSocket::OnAccept()
-{
-    ///- Add the current socket to the list of sockets to be managed (WorldSocketMgr)
-    sWorldSocketMgr.AddSocket(this);
-    Utility::ResolveLocal();
-
-    ///- Send a AUTH_CHALLENGE packet
-    WorldPacket packet( SMSG_AUTH_CHALLENGE, 4 );
-    packet << _seed;
-
-    SendPacket(&packet);
-}
-
-/// Read the client transmitted data
-void WorldSocket::OnRead()
-{
-    TcpSocket::OnRead();
-
-    while(1)
-    {
-        ///- Read the packet header and decipher it (if needed)
-        if (!_remaining)
-        {
-            if (ibuf.GetLength() < 6)
-                break;
-
-            ClientPktHeader hdr;
-
-            ibuf.Read((char *)&hdr, 6);
-            _crypt.DecryptRecv((uint8 *)&hdr, 6);
-
-            _remaining = ntohs(hdr.size) - 4;
-            _cmd = hdr.cmd;
-        }
-
-        if (ibuf.GetLength() < _remaining)
-            break;
-
-        ///- Read the remaining of the packet
-        WorldPacket packet((uint16)_cmd, _remaining);
-
-        packet.resize(_remaining);
-        if(_remaining) ibuf.Read((char*)packet.contents(), _remaining);
-        _remaining = 0;
-
-        ///- If log of world packets is enable, log the incoming packet
-        if( sWorldLog.LogWorld() )
-        {
-            sWorldLog.Log("CLIENT:\nSOCKET: %u\nLENGTH: %u\nOPCODE: %s (0x%.4X)\nDATA:\n",
-                (uint32)GetSocket(),
-                packet.size(),
-                LookupOpcodeName(packet.GetOpcode()),
-                packet.GetOpcode());
-
-            uint32 p = 0;
-            while (p < packet.size())
+// used when testing to alow login without password and encryption
+// #define _NETCODE_FAKE_AUTH
+
+WorldSocket::WorldSocket (void) :
+WorldHandler (),
+m_Session (0),
+m_RecvWPct (0),
+m_RecvPct (),
+m_Header (sizeof (ClientPktHeader)),
+m_OutBuffer (0),
+m_OutBufferSize (65536),
+m_OutActive (false),
+m_Seed (static_cast<uint32> (rand32 ())),
+m_OverSpeedPings (0),
+m_LastPingTime (ACE_Time_Value::zero)
+{
+  this->reference_counting_policy ().value (ACE_Event_Handler::Reference_Counting_Policy::ENABLED);
+}
+
+WorldSocket::~WorldSocket (void)
+{
+  if (m_RecvWPct)
+    delete m_RecvWPct;
+
+  if (m_OutBuffer)
+    m_OutBuffer->release ();
+
+  this->closing_ = true;
+
+  this->peer ().close ();
+
+  WorldPacket* pct;
+  while (m_PacketQueue.dequeue_head (pct) == 0)
+    delete pct;
+}
+
+bool
+WorldSocket::IsClosed (void) const
+{
+  return this->closing_;
+}
+
+void
+WorldSocket::CloseSocket (void)
+{
+  {
+    ACE_GUARD (LockType, Guard, m_OutBufferLock);
+
+    if (this->closing_)
+      return;
+
+    this->closing_ = true;
+
+    this->peer ().close_writer ();
+  }
+
+  {
+    ACE_GUARD (LockType, Guard, m_SessionLock);
+
+    m_Session = NULL;
+  }
+
+}
+
+const std::string&
+WorldSocket::GetRemoteAddress (void) const
+{
+  return m_Address;
+}
+
+int
+WorldSocket::SendPacket (const WorldPacket& pct)
+{
+  ACE_GUARD_RETURN (LockType, Guard, m_OutBufferLock, -1);
+
+  if (this->closing_)
+    return -1;
+
+  // Dump outgoing packet.
+  if (sWorldLog.LogWorld ())
+    {
+      sWorldLog.Log ("SERVER:\nSOCKET: %u\nLENGTH: %u\nOPCODE: %s (0x%.4X)\nDATA:\n",
+                     (uint32) get_handle (),
+                     pct.size (),
+                     LookupOpcodeName (pct.GetOpcode ()),
+                     pct.GetOpcode ());
+
+      uint32 p = 0;
+      while (p < pct.size ())
+        {
+          for (uint32 j = 0; j < 16 && p < pct.size (); j++)
+            sWorldLog.Log ("%.2X ", const_cast<WorldPacket&>(pct)[p++]);
+
+          sWorldLog.Log ("\n");
+        }
+
+      sWorldLog.Log ("\n\n");
+    }
+
+  if (iSendPacket (pct) == -1)
+    {
+      WorldPacket* npct;
+
+      ACE_NEW_RETURN (npct, WorldPacket (pct), -1);
+
+      // NOTE maybe check of the size of the queue can be good ?
+      // to make it bounded instead of unbounded
+      if (m_PacketQueue.enqueue_tail (npct) == -1)
+        {
+          delete npct;
+          sLog.outError ("WorldSocket::SendPacket: m_PacketQueue.enqueue_tail failed");
+          return -1;
+        }
+    }
+
+  return 0;
+}
+
+long
+WorldSocket::AddReference (void)
+{
+  return static_cast<long> (this->add_reference ());
+}
+
+long
+WorldSocket::RemoveReference (void)
+{
+  return static_cast<long> (this->remove_reference ());
+}
+
+int
+WorldSocket::open (void *a)
+{
+  ACE_UNUSED_ARG (a);
+
+  // Prevent double call to this func.
+  if (m_OutBuffer)
+    return -1;
+
+  // This will also prevent the socket from being Updated
+  // while we are initializing it.
+  m_OutActive = true;
+
+  // Hook for the manager.
+  if (sWorldSocketMgr->OnSocketOpen (this) == -1)
+    return -1;
+
+  // Allocate the buffer.
+  ACE_NEW_RETURN (m_OutBuffer, ACE_Message_Block (m_OutBufferSize), -1);
+
+  // Store peer address.
+  ACE_INET_Addr remote_addr;
+
+  if (this->peer ().get_remote_addr (remote_addr) == -1)
+    {
+      sLog.outError ("WorldSocket::open: peer ().get_remote_addr errno = %s", ACE_OS::strerror (errno));
+      return -1;
+    }
+
+  m_Address = remote_addr.get_host_addr ();
+
+  // Send startup packet.
+  WorldPacket packet (SMSG_AUTH_CHALLENGE, 4);
+  packet << m_Seed;
+
+  if (SendPacket (packet) == -1)
+    return -1;
+
+  // Register with ACE Reactor
+  if (this->reactor ()->register_handler
+      (this,
+       ACE_Event_Handler::READ_MASK | ACE_Event_Handler::WRITE_MASK) == -1)
+    {
+      sLog.outError ("WorldSocket::open: unable to register client handler errno = %s", ACE_OS::strerror (errno));
+      return -1;
+    }
+
+  // reactor takes care of the socket from now on
+  this->remove_reference ();
+
+  return 0;
+}
+
+int
+WorldSocket::close (int)
+{
+  this->shutdown ();
+
+  this->closing_ = true;
+
+  this->remove_reference ();
+
+  return 0;
+}
+
+int
+WorldSocket::handle_input (ACE_HANDLE)
+{
+  if (this->closing_)
+    return -1;
+
+  switch (this->handle_input_missing_data ())
+    {
+    case -1 :
+      {
+        if ((errno == EWOULDBLOCK) ||
+            (errno == EAGAIN))
+          {
+            //return 0;
+            return this->Update (); // interesting line ,isnt it ?
+          }
+
+        DEBUG_LOG ("WorldSocket::handle_input: Peer error closing connection errno = %s", ACE_OS::strerror (errno));
+
+        return -1;
+      }
+    case 0:
+      {
+        DEBUG_LOG ("WorldSocket::handle_input: Peer has closed connection\n");
+
+        errno = ECONNRESET;
+
+        return -1;
+      }
+    case 1:
+      return 1;
+    }
+
+  //return 0;
+  return this->Update (); // another interesting line ;)
+}
+
+int
+WorldSocket::handle_output (ACE_HANDLE)
+{
+  ACE_GUARD_RETURN (LockType, Guard, m_OutBufferLock, -1);
+
+  if (this->closing_)
+    return -1;
+
+  const size_t send_len = m_OutBuffer->length ();
+
+  if (send_len == 0)
+    return this->cancel_wakeup_output (Guard);
+  
+// TODO SO_NOSIGPIPE on platforms that support it
+#ifdef MSG_NOSIGNAL
+  ssize_t n = this->peer ().send (m_OutBuffer->rd_ptr (), send_len, MSG_NOSIGNAL);
+#else
+  ssize_t n = this->peer ().send (m_OutBuffer->rd_ptr (), send_len);
+#endif // MSG_NOSIGNAL
+          
+  if (n == 0)
+    return -1;
+  else if (n == -1)
+    {
+      if (errno == EWOULDBLOCK || errno == EAGAIN)
+        return this->schedule_wakeup_output (Guard);
+
+      return -1;
+    }
+  else if (n < send_len) //now n > 0
+    {
+      m_OutBuffer->rd_ptr (static_cast<size_t> (n));
+
+      // move the data to the base of the buffer
+      m_OutBuffer->crunch ();
+
+      return this->schedule_wakeup_output (Guard);
+    }
+  else //now n == send_len
+    {
+      m_OutBuffer->reset ();
+
+      if (!iFlushPacketQueue ())
+        return this->cancel_wakeup_output (Guard);
+      else
+        return this->schedule_wakeup_output (Guard);
+    }
+
+  ACE_NOTREACHED (return 0);
+}
+
+int
+WorldSocket::handle_close (ACE_HANDLE h, ACE_Reactor_Mask)
+{
+  // Critical section
+  {
+    ACE_GUARD_RETURN (LockType, Guard, m_OutBufferLock, -1);
+
+    this->closing_ = true;
+
+    if (h == ACE_INVALID_HANDLE)
+      this->peer ().close_writer ();
+  }
+
+  // Critical section
+  {
+    ACE_GUARD_RETURN (LockType, Guard, m_SessionLock, -1);
+
+    m_Session = NULL;
+  }
+
+  return 0;
+}
+
+int
+WorldSocket::Update (void)
+{
+  if (this->closing_)
+    return -1;
+
+  if (m_OutActive || m_OutBuffer->length () == 0)
+    return 0;
+
+  return this->handle_output (this->get_handle ());
+}
+
+int
+WorldSocket::handle_input_header (void)
+{
+  ACE_ASSERT (m_RecvWPct == NULL);
+
+  if (m_Header.length () != sizeof (ClientPktHeader))
+    {
+      sLog.outError ("WorldSocket::handle_input_header: internal error: invalid header");
+      errno = EINVAL;
+      return -1;
+    }
+
+  m_Crypt.DecryptRecv ((ACE_UINT8*) m_Header.rd_ptr (), sizeof (ClientPktHeader));
+
+  ClientPktHeader& header = *((ClientPktHeader*) m_Header.rd_ptr ());
+
+  header.size = ACE_NTOHS (header.size);
+
+#if ACE_BYTE_ORDER == ACE_BIG_ENDIAN
+  header.cmd = ACE_SWAP_LONG (header.cmd)
+#endif // ACE_BIG_ENDIAN
+
+  if ((header.size < 4) ||
+      (header.size > 10240) ||
+      (header.cmd <= 0) ||
+      (header.cmd > 10240)
+      )
+    {
+      sLog.outError ("WorldSocket::handle_input_header: client sent mailformed packet size = %d , cmd = %d",
+                     header.size,
+                     header.cmd);
+
+      errno = EINVAL;
+      return -1;
+    }
+
+  header.size -= 4;
+
+  ACE_NEW_RETURN (m_RecvWPct, WorldPacket ((uint16) header.cmd, header.size), -1);
+
+  if(header.size > 0)
+  {
+     m_RecvWPct->resize (header.size);  
+     m_RecvPct.base ((char*) m_RecvWPct->contents (), m_RecvWPct->size ());
+  }
+  else
+  {
+     ACE_ASSERT(m_RecvPct.space() == 0);
+  }
+
+
+  return 0;
+}
+
+int
+WorldSocket::handle_input_payload (void)
+{
+  // set errno properly here on error !!!
+  // now have a header and payload
+
+  ACE_ASSERT (m_RecvPct.space () == 0);
+  ACE_ASSERT (m_Header.space () == 0);
+  ACE_ASSERT (m_RecvWPct != NULL);
+
+  const int ret = this->ProcessIncoming (m_RecvWPct);
+
+  m_RecvPct.base (NULL, 0);
+  m_RecvPct.reset ();
+  m_RecvWPct = NULL;
+
+  m_Header.reset ();
+
+  if (ret == -1)
+    errno = EINVAL;
+
+  return ret;
+}
+
+int
+WorldSocket::handle_input_missing_data (void)
+{
+  char buf [1024];
+
+  ACE_Data_Block db (sizeof (buf),
+                     ACE_Message_Block::MB_DATA,
+                     buf,
+                     0,
+                     0,
+                     ACE_Message_Block::DONT_DELETE,
+                     0);
+
+  ACE_Message_Block message_block (&db,
+                                   ACE_Message_Block::DONT_DELETE,
+                                   0);
+
+  const size_t recv_size = message_block.space ();
+
+  const ssize_t n = this->peer ().recv (message_block.wr_ptr (),
+                                        recv_size);
+
+  if (n <= 0)
+    return n;
+
+  message_block.wr_ptr (n);
+
+  while (message_block.length () > 0)
+    {
+      if (m_Header.space () > 0)
+        {
+          //need to recieve the header
+          const size_t to_header = (message_block.length () > m_Header.space () ? m_Header.space () : message_block.length ());
+          m_Header.copy (message_block.rd_ptr (), to_header);
+          message_block.rd_ptr (to_header);
+
+          if (m_Header.space () > 0)
             {
-                for (uint32 j = 0; j < 16 && p < packet.size(); j++)
-                    sWorldLog.Log("%.2X ", packet[p++]);
-                sWorldLog.Log("\n");
+              //couldnt recieve the whole header this time
+              ACE_ASSERT (message_block.length () == 0);
+              errno = EWOULDBLOCK;
+              return -1;
             }
-            sWorldLog.Log("\n\n");
-        }
-
-        ///- If the packet is PING, KEEP_ALIVE or AUTH_SESSION, handle immediately
-        switch (_cmd)
-        {
-            case CMSG_KEEP_ALIVE:
-                break;                                      // just ignore, network connectivity timeout preventing
-            case CMSG_PING:
+
+          //we just recieved nice new header
+          if (this->handle_input_header () == -1)
             {
-                _HandlePing(packet);
-                break;
+              ACE_ASSERT ((errno != EWOULDBLOCK) && (errno != EAGAIN));
+              return -1;
             }
-            case CMSG_AUTH_SESSION:
+        }
+
+      // Its possible on some error situations that this happens
+      // for example on closing when epoll recieves more chunked data and stuff
+      // hope this is not hack ,as proper m_RecvWPct is asserted around
+      if (!m_RecvWPct)
+        {
+          sLog.outError ("Forsing close on input m_RecvWPct = NULL");
+          errno = EINVAL;
+          return -1;
+        }
+
+      // We have full readed header, now check the data payload
+      if (m_RecvPct.space () > 0)
+        {
+          //need more data in the payload
+          const size_t to_data = (message_block.length () > m_RecvPct.space () ? m_RecvPct.space () : message_block.length ());
+          m_RecvPct.copy (message_block.rd_ptr (), to_data);
+          message_block.rd_ptr (to_data);
+
+          if (m_RecvPct.space () > 0)
             {
-                _HandleAuthSession(packet);
-                break;
+              //couldnt recieve the whole data this time
+              ACE_ASSERT (message_block.length () == 0);
+              errno = EWOULDBLOCK;
+              return -1;
             }
-            default:
+        }
+
+      //just recieved fresh new payload
+      if (this->handle_input_payload () == -1)
+        {
+          ACE_ASSERT ((errno != EWOULDBLOCK) && (errno != EAGAIN));
+          return -1;
+        }
+    }
+
+  return n == recv_size ? 1 : 2;
+}
+
+int
+WorldSocket::cancel_wakeup_output (GuardType& g)
+{
+  if (!m_OutActive)
+    return 0;
+
+  m_OutActive = false;
+
+  g.release ();
+
+  if (this->reactor ()->cancel_wakeup
+      (this, ACE_Event_Handler::WRITE_MASK) == -1)
+    {
+      // would be good to store errno from reactor with errno guard
+      sLog.outError ("WorldSocket::cancel_wakeup_output");
+      return -1;
+    }
+
+  return 0;
+}
+
+int
+WorldSocket::schedule_wakeup_output (GuardType& g)
+{
+  if (m_OutActive)
+    return 0;
+
+  m_OutActive = true;
+
+  g.release ();
+
+  if (this->reactor ()->schedule_wakeup
+      (this, ACE_Event_Handler::WRITE_MASK) == -1)
+    {
+      sLog.outError ("WorldSocket::schedule_wakeup_output");
+      return -1;
+    }
+
+  return 0;
+}
+
+int
+WorldSocket::ProcessIncoming (WorldPacket* new_pct)
+{
+  ACE_ASSERT (new_pct);
+  
+  // manage memory ;)
+  ACE_Auto_Ptr<WorldPacket> aptr (new_pct);
+
+  const ACE_UINT16 opcode = new_pct->GetOpcode ();
+
+  if (this->closing_)
+    return -1;
+
+  // dump recieved packet
+  if (sWorldLog.LogWorld ())
+    {
+      sWorldLog.Log ("CLIENT:\nSOCKET: %u\nLENGTH: %u\nOPCODE: %s (0x%.4X)\nDATA:\n",
+                     (uint32) get_handle (),
+                     new_pct->size (),
+                     LookupOpcodeName (new_pct->GetOpcode ()),
+                     new_pct->GetOpcode ());
+
+      uint32 p = 0;
+      while (p < new_pct->size ())
+        {
+          for (uint32 j = 0; j < 16 && p < new_pct->size (); j++)
+            sWorldLog.Log ("%.2X ", (*new_pct)[p++]);
+          sWorldLog.Log ("\n");
+        }
+      sWorldLog.Log ("\n\n");
+    }
+
+  // like one switch ;)
+  if (opcode == CMSG_PING)
+    {
+      return HandlePing (*new_pct);
+    }
+  else if (opcode == CMSG_AUTH_SESSION)
+    {
+      if (m_Session)
+        {
+          sLog.outError ("WorldSocket::ProcessIncoming: Player send CMSG_AUTH_SESSION again");
+          return -1;
+        }
+
+      return HandleAuthSession (*new_pct);
+    }
+  else if (opcode == CMSG_KEEP_ALIVE)
+    {
+      DEBUG_LOG ("CMSG_KEEP_ALIVE ,size: %d", new_pct->size ());
+
+      return 0;
+    }
+  else
+    {
+      ACE_GUARD_RETURN (LockType, Guard, m_SessionLock, -1);
+
+      if (m_Session != NULL)
+        {
+          // OK ,give the packet to WorldSession
+          aptr.release ();
+          // WARNINIG here we call it with locks held.
+          // Its possible to cause deadlock if QueuePacket calls back
+          m_Session->QueuePacket (new_pct);
+          return 0;
+        }
+      else
+        {
+          sLog.outError ("WorldSocket::ProcessIncoming: Client not authed opcode = ", opcode);
+          return -1;
+        }
+    }
+
+  ACE_NOTREACHED (return 0);
+}
+
+int
+WorldSocket::HandleAuthSession (WorldPacket& recvPacket)
+{
+  uint8 digest[20];
+  uint32 clientSeed;
+  uint32 unk2;
+  uint32 BuiltNumberClient;
+  uint32 id, security;
+  bool tbc = false;
+  LocaleConstant locale;
+  std::string account;
+  Sha1Hash sha1;
+  BigNumber v, s, g, N, x, I;
+  WorldPacket packet, SendAddonPacked;
+
+  BigNumber K;
+
+  if (recvPacket.size () < (4 + 4 + 1 + 4 + 20))
+    {
+      sLog.outError ("WorldSocket::HandleAuthSession: wrong packet size");
+      return -1;
+    }
+
+  // Read the content of the packet
+  recvPacket >> BuiltNumberClient; // for now no use
+  recvPacket >> unk2;
+  recvPacket >> account;
+
+  if (recvPacket.size () < (4 + 4 + (account.size () + 1) + 4 + 20))
+    {
+      sLog.outError ("WorldSocket::HandleAuthSession: wrong packet size second check");
+      return -1;
+    }
+
+  recvPacket >> clientSeed;
+  recvPacket.read (digest, 20);
+
+  DEBUG_LOG ("WorldSocket::HandleAuthSession: client %u, unk2 %u, account %s, clientseed %u",
+             BuiltNumberClient,
+             unk2,
+             account.c_str (),
+             clientSeed);
+
+#if defined _NETCODE_FAKE_AUTH
+  bool dontchechtheacc = false;
+  uint8 digest_fake[sizeof (digest)];
+  memset ((void*) digest_fake, '\0', sizeof (digest_fake));
+  if (memcmp ((void*) digest, (void*) digest_fake, sizeof (digest_fake)) == 0)
+    {
+      dontchechtheacc = true;
+    }
+#endif //_NETCODE_FAKE_AUTH
+
+  // Get the account information from the realmd database
+  std::string safe_account = account; // Duplicate, else will screw the SHA hash verification below
+  loginDatabase.escape_string (safe_account);
+  // No SQL injection, username escaped.
+
+  QueryResult *result =
+          loginDatabase.PQuery ("SELECT "
+                                "id, " //0
+                                "gmlevel, " //1
+                                "sessionkey, " //2
+                                "last_ip, " //3
+                                "locked, " //4
+                                "sha_pass_hash, " //5
+                                "v, " //6
+                                "s, " //7
+                                "tbc, " //8
+                                "mutetime, " //9
+                                "locale " //10
+                                "FROM account "
+                                "WHERE username = '%s'",
+                                safe_account.c_str ());
+
+  // Stop if the account is not found
+  if (!result)
+    {
+      packet.Initialize (SMSG_AUTH_RESPONSE, 1);
+      packet << uint8 (AUTH_UNKNOWN_ACCOUNT);
+
+      SendPacket (packet);
+
+      sLog.outError ("WorldSocket::HandleAuthSession: Sent Auth Response (unknown account).");
+      return -1;
+    }
+
+  Field* fields = result->Fetch ();
+
+  tbc = fields[8].GetUInt8 () && sWorld.getConfig (CONFIG_EXPANSION) > 0;
+
+  N.SetHexStr ("894B645E89E1535BBDAD5B8B290650530801B18EBFBF5E8FAB3C82872A3E9BB7");
+  g.SetDword (7);
+  I.SetHexStr (fields[5].GetString ());
+
+  //In case of leading zeros in the I hash, restore them
+  uint8 mDigest[SHA_DIGEST_LENGTH];
+  memset (mDigest, 0, SHA_DIGEST_LENGTH);
+
+  if (I.GetNumBytes () <= SHA_DIGEST_LENGTH)
+    memcpy (mDigest, I.AsByteArray (), I.GetNumBytes ());
+
+  std::reverse (mDigest, mDigest + SHA_DIGEST_LENGTH);
+
+  s.SetHexStr (fields[7].GetString ());
+  sha1.UpdateData (s.AsByteArray (), s.GetNumBytes ());
+  sha1.UpdateData (mDigest, SHA_DIGEST_LENGTH);
+  sha1.Finalize ();
+  x.SetBinary (sha1.GetDigest (), sha1.GetLength ());
+  v = g.ModExp (x, N);
+
+  const char* sStr = s.AsHexStr (); //Must be freed by OPENSSL_free()
+  const char* vStr = v.AsHexStr (); //Must be freed by OPENSSL_free()
+  const char* vold = fields[6].GetString ();
+
+  DEBUG_LOG ("WorldSocket::HandleAuthSession: (s,v) check s: %s v_old: %s v_new: %s",
+             sStr,
+             vold,
+             vStr);
+
+  loginDatabase.PExecute ("UPDATE account "
+                          "SET "
+                          "v = '0', "
+                          "s = '0' "
+                          "WHERE username = '%s'",
+                          safe_account.c_str ());
+
+#if defined _NETCODE_FAKE_AUTH
+  if (!dontchechtheacc)
+    {
+#endif
+      if (!vold || strcmp (vStr, vold))
+        {
+          packet.Initialize (SMSG_AUTH_RESPONSE, 1);
+          packet << uint8 (AUTH_UNKNOWN_ACCOUNT);
+          SendPacket (packet);
+          delete result;
+          OPENSSL_free ((void*) sStr);
+          OPENSSL_free ((void*) vStr);
+
+          sLog.outError ("WorldSocket::HandleAuthSession: User not logged.");
+          return -1;
+        }
+#if defined _NETCODE_FAKE_AUTH
+    }
+#endif
+
+  OPENSSL_free ((void*) sStr);
+  OPENSSL_free ((void*) vStr);
+
+  ///- Re-check ip locking (same check as in realmd).
+  if (fields[4].GetUInt8 () == 1) // if ip is locked
+    {
+      if (strcmp (fields[3].GetString (), GetRemoteAddress ().c_str ()))
+        {
+          packet.Initialize (SMSG_AUTH_RESPONSE, 1);
+          packet << uint8 (AUTH_FAILED);
+          SendPacket (packet);
+
+          delete result;
+          sLog.outError ("WorldSocket::HandleAuthSession: Sent Auth Response (Account IP differs).");
+          return -1;
+        }
+    }
+
+  id = fields[0].GetUInt32 ();
+  security = fields[1].GetUInt16 ();
+  K.SetHexStr (fields[2].GetString ());
+
+  time_t mutetime = time_t (fields[9].GetUInt64 ());
+
+  locale = LocaleConstant (fields[10].GetUInt8 ());
+  if (locale >= MAX_LOCALE)
+    locale = LOCALE_enUS;
+
+  delete result;
+
+#if defined _NETCODE_FAKE_AUTH
+  if (!dontchechtheacc)
+    {
+#endif
+      // Re-check account ban (same check as in realmd) 
+      QueryResult *banresult =
+              loginDatabase.PQuery ("SELECT "
+                                    "bandate, "
+                                    "unbandate "
+                                    "FROM account_banned "
+                                    "WHERE id = '%u' "
+                                    "AND active = 1",
+                                    id);
+
+      if (banresult) // if account banned
+        {
+          packet.Initialize (SMSG_AUTH_RESPONSE, 1);
+          packet << uint8 (AUTH_BANNED);
+          SendPacket (packet);
+
+          delete banresult;
+
+          sLog.outError ("WorldSocket::HandleAuthSession: Sent Auth Response (Account banned).");
+          return -1;
+        }
+
+      // Check locked state for server
+      AccountTypes allowedAccountType = sWorld.GetPlayerSecurityLimit ();
+
+      if (allowedAccountType > SEC_PLAYER && security < allowedAccountType)
+        {
+          WorldPacket Packet (SMSG_AUTH_RESPONSE, 1);
+          Packet << uint8 (AUTH_UNAVAILABLE);
+
+          SendPacket (packet);
+
+          sLog.outBasic ("WorldSocket::HandleAuthSession: User tryes to login but his security level is not enough");
+          return -1;
+        }
+
+      // Check that Key and account name are the same on client and server
+      Sha1Hash sha;
+
+      uint32 t = 0;
+      uint32 seed = m_Seed;
+
+      sha.UpdateData (account);
+      sha.UpdateData ((uint8 *) & t, 4);
+      sha.UpdateData ((uint8 *) & clientSeed, 4);
+      sha.UpdateData ((uint8 *) & seed, 4);
+      sha.UpdateBigNumbers (&K, NULL);
+      sha.Finalize ();
+
+      if (memcmp (sha.GetDigest (), digest, 20))
+        {
+          packet.Initialize (SMSG_AUTH_RESPONSE, 1);
+          packet << uint8 (AUTH_FAILED);
+
+          SendPacket (packet);
+
+          sLog.outError ("WorldSocket::HandleAuthSession: Sent Auth Response (authentification failed).");
+          return -1;
+        }
+#if defined _NETCODE_FAKE_AUTH
+    }
+#endif
+
+  std::string address = this->GetRemoteAddress ();
+
+  DEBUG_LOG ("WorldSocket::HandleAuthSession: Client '%s' authenticated successfully from %s.",
+             account.c_str (),
+             address.c_str ());
+
+  // Update the last_ip in the database
+  // No SQL injection, username escaped.
+  loginDatabase.escape_string (address);
+
+  loginDatabase.PExecute ("UPDATE account "
+                          "SET last_ip = '%s' "
+                          "WHERE username = '%s'",
+                          address.c_str (),
+                          safe_account.c_str ());
+
+  // TODO protect here probably ?
+  // Althought atm the socket is singlethreaded
+  ACE_NEW_RETURN (m_Session, WorldSession (id, this, security, tbc, mutetime, locale), -1);
+
+#if defined _NETCODE_FAKE_AUTH
+  if (!dontchechtheacc)
+    {
+#endif
+      this->m_Crypt.SetKey (&K);
+      this->m_Crypt.Init ();
+#if defined _NETCODE_FAKE_AUTH
+    }
+#endif
+
+  // In case needed sometime the second arg is in microseconds 1 000 000 = 1 sec
+  ACE_OS::sleep (ACE_Time_Value (0, 10000));
+
+  // TODO error handling
+  sWorld.AddSession (this->m_Session);
+
+  // Create and send the Addon packet
+  if (sAddOnHandler.BuildAddonPacket (&recvPacket, &SendAddonPacked))
+    SendPacket (SendAddonPacked);
+
+  return 0;
+}
+
+int
+WorldSocket::HandlePing (WorldPacket& recvPacket)
+{
+  uint32 ping;
+  uint32 latency;
+
+  if (recvPacket.size () < 8)
+    {
+      sLog.outError ("WorldSocket::_HandlePing wrong packet size");
+      return -1;
+    }
+
+  // Get the ping packet content
+  recvPacket >> ping;
+  recvPacket >> latency;
+
+  if (m_LastPingTime == ACE_Time_Value::zero)
+    m_LastPingTime = ACE_OS::gettimeofday (); // for 1st ping
+  else
+    {
+      ACE_Time_Value cur_time = ACE_OS::gettimeofday ();
+      ACE_Time_Value diff_time (cur_time);
+      diff_time -= m_LastPingTime;
+      m_LastPingTime = cur_time;
+
+      if (diff_time < ACE_Time_Value (27))
+        {
+          ++m_OverSpeedPings;
+
+          uint32 max_count = sWorld.getConfig (CONFIG_MAX_OVERSPEED_PINGS);
+
+          if (max_count && m_OverSpeedPings > max_count)
             {
-                ///- Else, put it in the world session queue for this user (need to be already authenticated)
-                if (_session)
-                    _session->QueuePacket(packet);
-                else
-                    sLog.outDetail("Received out of place packet with cmdid 0x%.4X", _cmd);
-                break;
+              ACE_GUARD_RETURN (LockType, Guard, m_SessionLock, -1);
+
+              if (m_Session && m_Session->GetSecurity () == SEC_PLAYER)
+                {
+                  sLog.outError ("WorldSocket::HandlePing: Player kicked for "
+                                 "overspeeded pings adress = %s",
+                                 GetRemoteAddress ().c_str ());
+
+                  return -1;
+                }
             }
         }
-    }
-}
-
-/// On socket closing
-void WorldSocket::CloseSocket()
-{
-    ///- Set CloseAndDelete flag for TcpSocket class
-    SetCloseAndDelete(true);
-
-    ///- Set _session to NULL. Prevent crashes
-    _session = NULL;
-}
-
-/// On socket deleting
-void WorldSocket::OnDelete()
-{
-    ///- Stop sending remaining data through this socket
-    if (_session)
-    {
-        _session->SetSocket(NULL);
-        // Session deleted from World session list at socket==0, This is only back reference from socket to session.
-        _session = NULL;
-    }
-
-    ///- Remove the socket from the WorldSocketMgr list
-    sWorldSocketMgr.RemoveSocket(this);
-
-    ///- Removes socket from player queue
-    sWorld.RemoveQueuedPlayer(this);
-}
-
-/// Handle the client authentication packet
-void WorldSocket::_HandleAuthSession(WorldPacket& recvPacket)
-{
-    uint8 digest[20];
-    uint32 clientSeed;
-    uint32 unk2;
-    uint32 BuiltNumberClient;
-    uint32 id, security;
-    bool tbc = false;
-    std::string account;
-    Sha1Hash sha1;
-    BigNumber v, s, g, N, x, I;
-    WorldPacket packet, SendAddonPacked;
-
-    BigNumber K;
-
-    SOCKET_CHECK_PACKET_SIZE(recvPacket,4+4+1+4+20);
-
-    ///- Read the content of the packet
-    recvPacket >> BuiltNumberClient;                        // for now no use
-    recvPacket >> unk2;
-    recvPacket >> account;
-
-    // recheck size
-    SOCKET_CHECK_PACKET_SIZE(recvPacket,4+4+(account.size()+1)+4+20);
-
-    recvPacket >> clientSeed;
-    recvPacket.read(digest, 20);
-
-    sLog.outDebug("Auth: client %u, unk2 %u, account %s, clientseed %u", BuiltNumberClient, unk2, account.c_str(), clientSeed);
-
-    ///- Normalize account name
-    //utf8ToUpperOnlyLatin(account); -- client already send account in expected form
-
-    ///- Get the account information from the realmd database
-    std::string safe_account = account;                     // Duplicate, else will screw the SHA hash verification below
-    loginDatabase.escape_string(safe_account);
-    //No SQL injection, username escaped.
-    //                                                 0   1        2           3        4       5              6  7  8    9         10
-    QueryResult *result = loginDatabase.PQuery("SELECT id, gmlevel, sessionkey, last_ip, locked, sha_pass_hash, v, s, tbc, mutetime, locale FROM account WHERE username = '%s'", safe_account.c_str());
-
-    ///- Stop if the account is not found
-    if ( !result )
-    {
-        packet.Initialize( SMSG_AUTH_RESPONSE, 1 );
-        packet << uint8( AUTH_UNKNOWN_ACCOUNT );
-        SendPacket( &packet );
-        sLog.outDetail( "SOCKET: Sent Auth Response (unknown account)." );
-        return;
-    }
-
-    Field* fields = result->Fetch();
-
-    tbc = fields[8].GetUInt8() && sWorld.getConfig(CONFIG_EXPANSION) > 0;
-
-    N.SetHexStr("894B645E89E1535BBDAD5B8B290650530801B18EBFBF5E8FAB3C82872A3E9BB7");
-    g.SetDword(7);
-    I.SetHexStr(fields[5].GetString());
-
-    //In case of leading zeros in the I hash, restore them
-    uint8 mDigest[SHA_DIGEST_LENGTH];
-    memset(mDigest,0,SHA_DIGEST_LENGTH);
-    if (I.GetNumBytes() <= SHA_DIGEST_LENGTH)
-        memcpy(mDigest,I.AsByteArray(),I.GetNumBytes());
-
-    std::reverse(mDigest,mDigest+SHA_DIGEST_LENGTH);
-
-    s.SetHexStr(fields[7].GetString());
-    sha1.UpdateData(s.AsByteArray(), s.GetNumBytes());
-    sha1.UpdateData(mDigest, SHA_DIGEST_LENGTH);
-    sha1.Finalize();
-    x.SetBinary(sha1.GetDigest(), sha1.GetLength());
-    v = g.ModExp(x, N);
-
-    const char* sStr = s.AsHexStr();                        //Must be freed by OPENSSL_free()
-    const char* vStr = v.AsHexStr();                        //Must be freed by OPENSSL_free()
-    const char* vold = fields[6].GetString();
-    sLog.outDebug("SOCKET: (s,v) check s: %s v_old: %s v_new: %s", sStr, vold, vStr );
-    loginDatabase.PExecute("UPDATE account SET v = '0', s = '0' WHERE username = '%s'", safe_account.c_str());
-    if ( !vold || strcmp( vStr, vold ) )
-    {
-        packet.Initialize( SMSG_AUTH_RESPONSE, 1 );
-        packet << uint8( AUTH_UNKNOWN_ACCOUNT );
-        SendPacket( &packet );
-        sLog.outDetail( "SOCKET: User not logged.");
-        delete result;
-        OPENSSL_free((void*)sStr);
-        OPENSSL_free((void*)vStr);
-        return;
-    }
-    OPENSSL_free((void*)sStr);
-    OPENSSL_free((void*)vStr);
-
-    ///- Re-check ip locking (same check as in realmd).
-    if(fields[4].GetUInt8() == 1)                           // if ip is locked
-    {
-        if ( strcmp(fields[3].GetString(),GetRemoteAddress().c_str()) )
-        {
-            packet.Initialize( SMSG_AUTH_RESPONSE, 1 );
-            packet << uint8( AUTH_FAILED );
-            SendPacket( &packet );
-
-            sLog.outDetail( "SOCKET: Sent Auth Response (Account IP differs)." );
-            delete result;
-            return;
-        }
-    }
-
-    id = fields[0].GetUInt32();
-    security = fields[1].GetUInt16();
-    K.SetHexStr(fields[2].GetString());
-    time_t mutetime = time_t(fields[9].GetUInt64());
-
-    LocaleConstant locale = LocaleConstant(fields[10].GetUInt8());
-    if (locale>=MAX_LOCALE)
-        locale=LOCALE_enUS;
-
-    delete result;
-
-    ///- Re-check account ban (same check as in realmd) /// TO DO: why on earth do 2 checks for same thing?
-    QueryResult *banresult = loginDatabase.PQuery("SELECT bandate,unbandate FROM account_banned WHERE id = '%u' AND active = 1", id);
-    if(banresult)                                           // if account banned
-    {
-        packet.Initialize( SMSG_AUTH_RESPONSE, 1 );
-        packet << uint8( AUTH_BANNED );
-        SendPacket( &packet );
-
-        sLog.outDetail( "SOCKET: Sent Auth Response (Account banned)." );
-        delete banresult;
-        return;
-    }
-
-    ///- Check locked state for server
-    AccountTypes allowedAccountType = sWorld.GetPlayerSecurityLimit();
-    if( allowedAccountType > SEC_PLAYER && security < allowedAccountType)
-    {
-        WorldPacket Packet(SMSG_AUTH_RESPONSE, 1);
-        Packet << uint8(AUTH_UNAVAILABLE);
-        SendPacket(&Packet);
-        return;
-    }
-
-    ///- kick already loaded player with same account (if any) and remove session
-    ///- if player is in loading and want to load again, return
-    if(!sWorld.RemoveSession(id))
-    {
-        return;
-    }
-
-    ///- Check that Key and account name are the same on client and server
-    Sha1Hash sha;
-
-    uint32 t = 0;
-    uint32 seed = _seed;
-
-    sha.UpdateData(account);
-    sha.UpdateData((uint8 *)&t, 4);
-    sha.UpdateData((uint8 *)&clientSeed, 4);
-    sha.UpdateData((uint8 *)&seed, 4);
-    sha.UpdateBigNumbers(&K, NULL);
-    sha.Finalize();
-
-    if (memcmp(sha.GetDigest(), digest, 20))
-    {
-        packet.Initialize( SMSG_AUTH_RESPONSE, 1 );
-        packet << uint8( AUTH_FAILED );
-        SendPacket( &packet );
-
-        sLog.outDetail( "SOCKET: Sent Auth Response (authentication failed)." );
-        return;
-    }
-
-    ///- Initialize the encryption with the Key
-    _crypt.SetKey(&K);
-    _crypt.Init();
-
-    ///- Send 'Auth is ok'
-    packet.Initialize( SMSG_AUTH_RESPONSE, 1+4+1+4+1 );
-    packet << uint8( AUTH_OK );
-    packet << uint32(0);                                    // unknown random value...
-    packet << uint8(0);                                     // can be 0 and 2
-    packet << uint32(0);                                    // const 0
-    packet << uint8(tbc ? 1 : 0);                           // 0 - normal, 1 - TBC, must be set in database manually for each account
-    SendPacket(&packet);
-
-    ///- Create a new WorldSession for the player and add it to the World
-    _session = new WorldSession(id, this,security,tbc,mutetime,locale);
-    sWorld.AddSession(_session);
-
-    if(sLog.IsOutDebug())                                   // optimize disabled debug output
-    {
-        sLog.outDebug( "SOCKET: Client '%s' authenticated successfully.", account.c_str() );
-        sLog.outDebug( "Account: '%s' Logged in from IP %s.", account.c_str(), GetRemoteAddress().c_str());
-    }
-
-    ///- Update the last_ip in the database
-    //No SQL injection, username escaped.
-    std::string address = GetRemoteAddress();
-    loginDatabase.escape_string(address);
-    loginDatabase.PExecute("UPDATE account SET last_ip = '%s' WHERE username = '%s'",address.c_str(), safe_account.c_str());
-
-    // do small delay (10ms) at accepting successful authed connection to prevent dropping packets by client
-    // don't must harm anyone (let login ~100 accounts in 1 sec ;) )
-    #ifdef WIN32
-    Sleep(10);
-    #else
-    ZThread::Thread::sleep(10);
-    #endif
-
-    ///- Check that we do not exceed the maximum number of online players in the realm
-    uint32 Sessions  = sWorld.GetActiveAndQueuedSessionCount();
-    uint32 pLimit    = sWorld.GetPlayerAmountLimit();
-    uint32 QueueSize = sWorld.GetQueueSize();               //number of players in the queue
-    bool   inQueue   = false;
-    --Sessions;                                             //so we don't count the user trying to login as a session and queue the socket that we are using
-
-    if( pLimit >  0 && Sessions >= pLimit && security == SEC_PLAYER )
-    {
-        sWorld.AddQueuedPlayer(this);
-        SendAuthWaitQue(sWorld.GetQueuePos(this));
-        sWorld.UpdateMaxSessionCounters();
-        sLog.outDetail( "PlayerQueue: %s is in Queue Position (%u).",safe_account.c_str(),++QueueSize);
-        inQueue = true;
-    }
-
-    ///- Create and send the Addon packet
-    if(sAddOnHandler.BuildAddonPacket(&recvPacket, &SendAddonPacked))
-        SendPacket(&SendAddonPacked);
-
-    if(inQueue)
-        return;
-
-    sWorld.UpdateMaxSessionCounters();
-
-    // Updates the population
-    if (pLimit > 0)
-    {
-        float popu = sWorld.GetActiveSessionCount();        //updated number of users on the server
-        popu /= pLimit;
-        popu *= 2;
-        loginDatabase.PExecute("UPDATE realmlist SET population = '%f' WHERE id = '%d'",popu,realmID);
-        sLog.outDetail( "Server Population (%f).",popu);
-    }
-
-    return;
-}
-
-/// Handle the Ping packet
-void WorldSocket::_HandlePing(WorldPacket& recvPacket)
-{
-    uint32 ping;
-    uint32 latency;
-
-    CHECK_PACKET_SIZE(recvPacket,8);
-
-    ///- Get the ping packet content
-    recvPacket >> ping;
-    recvPacket >> latency;
-
-    if (_session )
-        _session->SetLatency(latency);
-
-    ///- check ping speed for players
-    if(_session && _session->GetSecurity() == SEC_PLAYER)
-    {
-        uint32 cur_mstime = getMSTime();
-
-        // can overflow and start from 0
-        uint32 diff_mstime = getMSTimeDiff(m_LastPingMSTime,cur_mstime);
-        m_LastPingMSTime = cur_mstime;
-        if(diff_mstime < 27000)                             // should be 30000 (=30 secs), add little tolerance
-        {
-            ++m_OverSpeedPings;
-
-            uint32 max_count = sWorld.getConfig(CONFIG_MAX_OVERSPEED_PINGS);
-            if(max_count && m_OverSpeedPings > max_count)
+      else
+        m_OverSpeedPings = 0;
+    }
+
+  // critical section
+  {
+    ACE_GUARD_RETURN (LockType, Guard, m_SessionLock, -1);
+
+    if (m_Session)
+      m_Session->SetLatency (latency);
+    else
+      {
+        sLog.outError ("WorldSocket::HandlePing: peer sent CMSG_PING, "
+                       "but is not authenticated or got recently kicked,"
+                       " adress = %s",
+                       this->GetRemoteAddress ().c_str ());
+        return -1;
+      }
+  }
+
+  WorldPacket packet (SMSG_PONG, 4);
+  packet << ping;
+  return this->SendPacket (packet);
+}
+
+int
+WorldSocket::iSendPacket (const WorldPacket& pct)
+{
+  if (m_OutBuffer->space () < pct.size () + sizeof (ServerPktHeader))
+    {
+      errno = ENOBUFS;
+      return -1;
+    }
+
+  ServerPktHeader header;
+
+  header.cmd = pct.GetOpcode ();
+
+#if ACE_BYTE_ORDER == ACE_BIG_ENDIAN
+  header.cmd = ACE_SWAP_WORD (header.cmd)
+#endif
+          
+  header.size = (uint16) pct.size () + 2;
+  header.size = ACE_HTONS (header.size);
+
+  m_Crypt.EncryptSend ((uint8*) & header, sizeof (header));
+
+  if (m_OutBuffer->copy ((char*) & header, sizeof (header)) == -1)
+    ACE_ASSERT (false);
+
+  if (!pct.empty ())
+    if (m_OutBuffer->copy ((char*) pct.contents (), pct.size ()) == -1)
+      ACE_ASSERT (false);
+
+  return 0;
+}
+
+bool
+WorldSocket::iFlushPacketQueue ()
+{
+  WorldPacket *pct;
+  bool haveone = false;
+
+  while (m_PacketQueue.dequeue_head (pct) == 0)
+    {
+      if (iSendPacket (*pct) == -1)
+        {
+          if (m_PacketQueue.enqueue_head (pct) == -1)
             {
-                sLog.outBasic("Player %s from account id %u kicked for overspeed ping packets from client (non-playable connection lags or cheating) ",_session->GetPlayerName(),_session->GetAccountId());
-                _session->KickPlayer();
-                return;
+              delete pct;
+              sLog.outError ("WorldSocket::iFlushPacketQueue m_PacketQueue->enqueue_head");
+              return false;
             }
-        }
-        else
-            m_OverSpeedPings = 0;
-
-    }
-
-    ///- And put the pong answer in the to-be-sent queue
-    WorldPacket packet( SMSG_PONG, 4 );
-    packet << ping;
-    SendPacket(&packet);
-
-    return;
-}
-
-/// Handle the update order for the socket
-void WorldSocket::SendSinglePacket()
-{
-    WorldPacket *packet;
-    ServerPktHeader hdr;
-
-    ///- If we have packet to send
-    if (!_sendQueue.empty())
-    {
-        packet = _sendQueue.next();
-
-        hdr.size = ntohs((uint16)packet->size() + 2);
-        hdr.cmd = packet->GetOpcode();
-
-        if( sWorldLog.LogWorld() )
-        {
-            sWorldLog.Log("SERVER:\nSOCKET: %u\nLENGTH: %u\nOPCODE: %s (0x%.4X)\nDATA:\n",
-                (uint32)GetSocket(),
-                packet->size(),
-                LookupOpcodeName(packet->GetOpcode()),
-                packet->GetOpcode());
-
-            uint32 p = 0;
-            while (p < packet->size())
-            {
-                for (uint32 j = 0; j < 16 && p < packet->size(); j++)
-                    sWorldLog.Log("%.2X ", (*packet)[p++]);
-
-                sWorldLog.Log("\n");
-            }
-
-            sWorldLog.Log("\n\n");
-        }
-
-        ///- Encrypt (if needed) the header
-        _crypt.EncryptSend((uint8*)&hdr, 4);
-
-        ///- Send the header and body to the client
-        TcpSocket::SendBuf((char*)&hdr, 4);
-        if(!packet->empty()) TcpSocket::SendBuf((char*)packet->contents(), packet->size());
-
-        delete packet;
-    }
-}
-
-void WorldSocket::Update(time_t diff)
-{
-    const uint32 SEND_PACKETS_MAX = 100;
-    const uint32 SEND_BUFFER_SIZE = 1024;
-
-    uint8 sendBuffer[SEND_BUFFER_SIZE];
-
-    while (!_sendQueue.empty())
-    {
-        bool haveBigPacket = false;
-        uint32 bufferSize = 0;
-
-        ///- While we have packets to send
-        for (uint32 packetCount = 0; (packetCount < SEND_PACKETS_MAX) && !_sendQueue.empty(); packetCount++)
-        {
-            ServerPktHeader *hdr = (ServerPktHeader*)&sendBuffer[bufferSize];
-
-            // check merge possibility.
-            WorldPacket *front = _sendQueue.front();
-            uint32 packetSize = front->size();
-
-            if ((sizeof(*hdr) + packetSize) > SEND_BUFFER_SIZE)
-            {
-                haveBigPacket = true;
-                break;
-            }
-
-            if ((bufferSize + sizeof(*hdr) + packetSize) > sizeof(sendBuffer))
-                break;
-
-            // can be merged
-            WorldPacket *packet = _sendQueue.next();
-
-            hdr->size = ntohs((uint16)packetSize + 2);
-            hdr->cmd = packet->GetOpcode();
-
-            if( sWorldLog.LogWorld() )
-            {
-                sWorldLog.Log("SERVER:\nSOCKET: %u\nLENGTH: %u\nOPCODE: %s (0x%.4X)\nDATA:\n",
-                    (uint32)GetSocket(),
-                    packetSize,
-                    LookupOpcodeName(packet->GetOpcode()),
-                    packet->GetOpcode());
-
-                uint32 p = 0;
-                while (p < packetSize)
-                {
-                    for (uint32 j = 0; j < 16 && p < packetSize; j++)
-                        sWorldLog.Log("%.2X ", (*packet)[p++]);
-
-                    sWorldLog.Log("\n");
-                }
-
-                sWorldLog.Log("\n\n");
-            }
-
-            ///- Encrypt (if needed) the header
-            _crypt.EncryptSend((uint8*)hdr, sizeof(*hdr));
-            bufferSize += sizeof(*hdr);
-
-            if (packetSize)
-            {
-                memcpy(&sendBuffer[bufferSize], packet->contents(), packetSize);
-                bufferSize += packetSize;
-            }
-
-            ///- Send the header and body to the client
-            delete packet;
-        }
-
-        // send merged packets
-        if (bufferSize) TcpSocket::SendBuf((char*)sendBuffer, bufferSize);
-        // send too big non-merged packet
-        if (haveBigPacket) SendSinglePacket();
-    }
-}
-
-/// Handle the authentication waiting queue (to be completed)
-void WorldSocket::SendAuthWaitQue(uint32 position)
-{
-    if(position == 0)
-    {
-        WorldPacket packet( SMSG_AUTH_RESPONSE, 1 );
-        packet << uint8( AUTH_OK );
-        SendPacket(&packet);
-    }
-    else
-    {
-        WorldPacket packet( SMSG_AUTH_RESPONSE, 5 );
-        packet << uint8( AUTH_WAIT_QUEUE );
-        packet << uint32 (position);                        //amount of players in queue
-        SendPacket(&packet);
-    }
-}
-
-void WorldSocket::SizeError(WorldPacket const& packet, uint32 size) const
-{
-    sLog.outError("Client send packet %s (%u) with size %u but expected %u (attempt crash server?), skipped",
-        LookupOpcodeName(packet.GetOpcode()),packet.GetOpcode(),packet.size(),size);
-}
+
+          break;
+        }
+      else
+        {
+          haveone = true;
+          delete pct;
+        }
+    }
+
+  return haveone;
+}
Index: trunk/src/game/AggressorAI.cpp
===================================================================
--- trunk/src/game/AggressorAI.cpp (revision 2)
+++ trunk/src/game/AggressorAI.cpp (revision 6)
@@ -44,6 +44,8 @@
 AggressorAI::MoveInLineOfSight(Unit *u)
 {
-    if( i_creature.GetDistanceZ(u) > CREATURE_Z_ATTACK_RANGE )
+    // Ignore Z for flying creatures
+    if( !i_creature.canFly() && i_creature.GetDistanceZ(u) > CREATURE_Z_ATTACK_RANGE )
         return;
+    
     if( !i_creature.getVictim() && !i_creature.hasUnitState(UNIT_STAT_STUNDED) && u->isTargetableForAttack() &&
         ( i_creature.IsHostileTo( u ) /*|| u->getVictim() && i_creature.IsFriendlyTo( u->getVictim() )*/ ) &&
Index: trunk/src/game/GridNotifiers.h
===================================================================
--- trunk/src/game/GridNotifiers.h (revision 2)
+++ trunk/src/game/GridNotifiers.h (revision 6)
@@ -113,5 +113,5 @@
         bool i_ownTeamOnly;
         float i_dist;
-        MessageDistDeliverer(Player &pl, WorldPacket *msg, bool to_self, bool ownTeamOnly, float dist) : i_player(pl), i_message(msg), i_toSelf(to_self), i_ownTeamOnly(ownTeamOnly), i_dist(dist) {}
+        MessageDistDeliverer(Player &pl, WorldPacket *msg, float dist, bool to_self, bool ownTeamOnly) : i_player(pl), i_message(msg), i_dist(dist), i_toSelf(to_self), i_ownTeamOnly(ownTeamOnly) {}
         void Visit(PlayerMapType &m);
         template<class SKIP> void Visit(GridRefManager<SKIP> &) {}
Index: trunk/src/game/StatSystem.cpp
===================================================================
--- trunk/src/game/StatSystem.cpp (revision 2)
+++ trunk/src/game/StatSystem.cpp (revision 6)
@@ -432,13 +432,18 @@
 void Player::UpdateBlockPercentage()
 {
-    // Base value
-    float value = 5.0f;
-    // Modify value from defense skill
-    value += (int32(GetDefenseSkillValue()) - int32(GetMaxSkillValueForLevel())) * 0.04f;
-    // Increase from SPELL_AURA_MOD_BLOCK_PERCENT aura
-    value += GetTotalAuraModifier(SPELL_AURA_MOD_BLOCK_PERCENT);
-    // Increase from rating
-    value += GetRatingBonusValue(CR_BLOCK);
-    value = value < 0.0f ? 0.0f : value;
+    // No block
+    float value = 0.0f;
+    if(CanBlock())
+    {
+        // Base value
+        value = 5.0f;
+        // Modify value from defense skill
+        value += (int32(GetDefenseSkillValue()) - int32(GetMaxSkillValueForLevel())) * 0.04f;
+        // Increase from SPELL_AURA_MOD_BLOCK_PERCENT aura
+        value += GetTotalAuraModifier(SPELL_AURA_MOD_BLOCK_PERCENT);
+        // Increase from rating
+        value += GetRatingBonusValue(CR_BLOCK);
+        value = value < 0.0f ? 0.0f : value;
+    }
     SetStatFloatValue(PLAYER_BLOCK_PERCENTAGE, value);
 }
@@ -492,13 +497,18 @@
 void Player::UpdateParryPercentage()
 {
-    // Base parry
-    float value  = 5.0f;
-    // Modify value from defense skill
-    value += (int32(GetDefenseSkillValue()) - int32(GetMaxSkillValueForLevel())) * 0.04f;
-    // Parry from SPELL_AURA_MOD_PARRY_PERCENT aura
-    value += GetTotalAuraModifier(SPELL_AURA_MOD_PARRY_PERCENT);
-    // Parry from rating
-    value += GetRatingBonusValue(CR_PARRY);
-    value = value < 0.0f ? 0.0f : value;
+    // No parry
+    float value = 0.0f;
+    if (CanParry())
+    {
+        // Base parry
+        value  = 5.0f;
+        // Modify value from defense skill
+        value += (int32(GetDefenseSkillValue()) - int32(GetMaxSkillValueForLevel())) * 0.04f;
+        // Parry from SPELL_AURA_MOD_PARRY_PERCENT aura
+        value += GetTotalAuraModifier(SPELL_AURA_MOD_PARRY_PERCENT);
+        // Parry from rating
+        value += GetRatingBonusValue(CR_PARRY);
+        value = value < 0.0f ? 0.0f : value;
+    }
     SetStatFloatValue(PLAYER_PARRY_PERCENTAGE, value);
 }
Index: trunk/src/game/Unit.h
===================================================================
--- trunk/src/game/Unit.h (revision 2)
+++ trunk/src/game/Unit.h (revision 6)
@@ -116,4 +116,9 @@
 
 #define MAX_SPELLMOD 32
+
+enum SpellFacingFlags
+{
+    SPELL_FACING_FLAG_INFRONT = 0x0001
+};
 
 #define BASE_MINDAMAGE 1.0f
Index: trunk/src/game/CreatureAISelector.cpp
===================================================================
--- trunk/src/game/CreatureAISelector.cpp (revision 2)
+++ trunk/src/game/CreatureAISelector.cpp (revision 6)
@@ -54,11 +54,9 @@
         {
             if( creature->isGuard() )
-                ainame="GuardAI";
+                ai_factory = ai_registry.GetRegistryItem("GuardAI"); 
             else if(creature->isPet() || creature->isCharmed())
-                ainame="PetAI";
+                ai_factory = ai_registry.GetRegistryItem("PetAI");
             else if(creature->isTotem())
-                ainame="TotemAI";
-
-            ai_factory = ai_registry.GetRegistryItem( ainame.c_str() );
+                ai_factory = ai_registry.GetRegistryItem("TotemAI");
         }
 
Index: trunk/src/game/Makefile.am
===================================================================
--- trunk/src/game/Makefile.am (revision 2)
+++ trunk/src/game/Makefile.am (revision 6)
@@ -31,4 +31,6 @@
 $(POSTGRE_INCLUDES) \
 -I$(top_srcdir)/dep/include \
+-I$(top_srcdir)/dep/ACE_wrappers \
+-I$(top_builddir)/dep/ACE_wrappers \
 -I$(top_srcdir)/src/framework \
 -I$(top_srcdir)/src/shared \
Index: trunk/src/game/World.h
===================================================================
--- trunk/src/game/World.h (revision 2)
+++ trunk/src/game/World.h (revision 6)
@@ -363,8 +363,8 @@
 
         //player Queue
-        typedef std::list<WorldSocket*> Queue;
-        void AddQueuedPlayer(WorldSocket* Socket);
-        void RemoveQueuedPlayer(WorldSocket* Socket);
-        int32 GetQueuePos(WorldSocket* Socket);
+        typedef std::list<WorldSession*> Queue;
+        void AddQueuedPlayer(WorldSession*);
+        void RemoveQueuedPlayer(WorldSession*);
+        int32 GetQueuePos(WorldSession*);
         uint32 GetQueueSize() const { return m_QueuedPlayer.size(); }
 
@@ -526,4 +526,8 @@
         //Player Queue
         Queue m_QueuedPlayer;
+        
+        //sessions that are added async
+        void AddSession_(WorldSession* s);
+        ZThread::LockedQueue<WorldSession*, ZThread::FastMutex> addSessQueue;
 };
 
Index: trunk/src/game/WorldSession.h
===================================================================
--- trunk/src/game/WorldSession.h (revision 2)
+++ trunk/src/game/WorldSession.h (revision 6)
@@ -89,5 +89,5 @@
         char const* GetPlayerName() const;
         void SetSecurity(uint32 security) { _security = security; }
-        void SetSocket(WorldSocket *sock);
+        std::string& GetRemoteAddress() { return m_Address; }
         void SetPlayer(Player *plr) { _player = plr; }
         bool IsTBC() const { return m_isTBC; }
@@ -111,6 +111,9 @@
         void KickPlayer();
 
-        void QueuePacket(WorldPacket& packet);
+        void QueuePacket(WorldPacket* new_packet);
         bool Update(uint32 diff);
+        
+        /// Handle the authentication waiting queue (to be completed)
+        void SendAuthWaitQue(uint32 position);
 
         //void SendTestCreatureQueryOpcode( uint32 entry, uint64 guid, uint32 testvalue );
@@ -619,5 +622,6 @@
         void logUnexpectedOpcode(WorldPacket *packet, const char * reason);
         Player *_player;
-        WorldSocket *_socket;
+        WorldSocket *m_Socket;
+        std::string m_Address;
 
         uint32 _security;
Index: trunk/src/game/Unit.cpp
===================================================================
--- trunk/src/game/Unit.cpp (revision 2)
+++ trunk/src/game/Unit.cpp (revision 6)
@@ -2991,7 +2991,7 @@
         if(player->CanParry() )
         {
-            Item *tmpitem = ((Player*)this)->GetWeaponForAttack(BASE_ATTACK,true);
+            Item *tmpitem = player->GetWeaponForAttack(BASE_ATTACK,true);
             if(!tmpitem)
-                tmpitem = ((Player*)this)->GetWeaponForAttack(OFF_ATTACK,true);
+                tmpitem = player->GetWeaponForAttack(OFF_ATTACK,true);
 
             if(tmpitem)
@@ -3018,9 +3018,13 @@
     if(GetTypeId() == TYPEID_PLAYER)
     {
-        Item *tmpitem = ((Player const*)this)->GetItemByPos(INVENTORY_SLOT_BAG_0, EQUIPMENT_SLOT_OFFHAND);
-        if(tmpitem && !tmpitem->IsBroken() && tmpitem->GetProto()->Block)
-            return GetFloatValue(PLAYER_BLOCK_PERCENTAGE);
-        else
-            return 0.0f;
+        Player const* player = (Player const*)this;
+        if(player->CanBlock() )
+        {
+            Item *tmpitem = player->GetItemByPos(INVENTORY_SLOT_BAG_0, EQUIPMENT_SLOT_OFFHAND);
+            if(tmpitem && !tmpitem->IsBroken() && tmpitem->GetProto()->Block)
+                return GetFloatValue(PLAYER_BLOCK_PERCENTAGE);
+        }
+        // is player but has no block ability or no not broken shield equiped
+        return 0.0f;
     }
     else
@@ -3416,5 +3420,5 @@
         return c->canSwim();
     else
-        return c->canWalk();
+        return c->canWalk() || c->canFly();
 }
 
Index: trunk/src/game/ObjectMgr.h
===================================================================
--- trunk/src/game/ObjectMgr.h (revision 2)
+++ trunk/src/game/ObjectMgr.h (revision 6)
@@ -43,4 +43,5 @@
 #include <string>
 #include <map>
+#include <limits>
 
 extern SQLStorage sCreatureStorage;
@@ -60,4 +61,17 @@
 class TransportPath;
 class Item;
+
+struct GameTele
+{
+    float  position_x;
+    float  position_y;
+    float  position_z;
+    float  orientation;
+    uint32 mapId;
+    std::string name;
+    std::wstring wnameLow;
+};
+
+typedef HM_NAMESPACE::hash_map<uint32, GameTele > GameTeleMap;
 
 struct ScriptInfo
@@ -144,8 +158,8 @@
     uint32 repfaction2;
     bool is_teamaward1;
-    uint32 reputration_max_cap1;
+    uint32 reputation_max_cap1;
     int32 repvalue1;
     bool is_teamaward2;
-    uint32 reputration_max_cap2;
+    uint32 reputation_max_cap2;
     int32 repvalue2;
     bool team_dependent;
@@ -212,4 +226,21 @@
 };
 
+// NPC gossip text id
+typedef HM_NAMESPACE::hash_map<uint32, uint32> CacheNpcTextIdMap;
+
+// Vendors
+struct VendorItem
+{
+    uint32 item;
+    uint32 maxcount;
+    uint32 incrtime;
+    uint32 ExtendedCost;
+};
+typedef std::vector<VendorItem*> VendorItemList;
+
+typedef HM_NAMESPACE::hash_map<uint32, VendorItemList> CacheVendorItemMap;
+
+typedef HM_NAMESPACE::hash_map<uint32, TrainerSpellData> CacheTrainerSpellMap;
+
 enum SkillRangeType
 {
@@ -467,6 +498,6 @@
         void LoadSpellScripts();
 
-        bool LoadMangosStrings(DatabaseType& db, char const* table, bool positive_entries);
-        bool LoadMangosStrings() { return LoadMangosStrings(WorldDatabase,"mangos_string",true); }
+        bool LoadMangosStrings(DatabaseType& db, char const* table, int32 min_value, int32 max_value);
+        bool LoadMangosStrings() { return LoadMangosStrings(WorldDatabase,"mangos_string",1,std::numeric_limits<int32>::max()); }
         void LoadPetCreateSpells();
         void LoadCreatureLocales();
@@ -513,4 +544,9 @@
 
         void LoadWeatherZoneChances();
+        void LoadGameTele();
+
+        void LoadNpcTextId();
+        void LoadVendors();
+        void LoadTrainerSpell();
 
         std::string GeneratePetName(uint32 entry);
@@ -664,4 +700,42 @@
 
             return mConditions[condition_id].Meets(player);
+        }
+
+        GameTele const* GetGameTele(uint32 id) const
+        {
+            GameTeleMap::const_iterator itr = m_GameTeleMap.find(id);
+            if(itr==m_GameTeleMap.end()) return NULL;
+            return &itr->second;
+        }
+        GameTele const* GetGameTele(std::string name) const;
+        GameTeleMap const& GetGameTeleMap() const { return m_GameTeleMap; }
+        bool AddGameTele(GameTele& data);
+        bool DeleteGameTele(std::string name);
+
+        uint32 GetNpcGossip(uint32 entry) const
+        {
+            CacheNpcTextIdMap::const_iterator iter = m_mCacheNpcTextIdMap.find(entry);
+            if(iter == m_mCacheNpcTextIdMap.end())
+                return 0;
+            
+            return iter->second;
+        }
+
+        TrainerSpellData const* GetNpcTrainerSpells(uint32 entry) const
+        {
+            CacheTrainerSpellMap::const_iterator  iter = m_mCacheTrainerSpellMap.find(entry);
+            if(iter == m_mCacheTrainerSpellMap.end())
+                return NULL;
+
+            return &iter->second;
+        }
+
+        VendorItemList const* GetNpcVendorItemList(uint32 entry) const
+        {
+            CacheVendorItemMap::const_iterator  iter = m_mCacheVendorItemMap.find(entry);
+            if(iter == m_mCacheVendorItemMap.end())
+                return NULL;
+
+            return &iter->second;
         }
     protected:
@@ -721,4 +795,6 @@
 
         GraveYardMap        mGraveYardMap;
+
+        GameTeleMap         m_GameTeleMap;
 
         typedef             std::vector<LocaleConstant> LocalForIndex;
@@ -771,10 +847,14 @@
         ConditionStore mConditions;
 
+        CacheNpcTextIdMap m_mCacheNpcTextIdMap;
+        CacheVendorItemMap m_mCacheVendorItemMap;
+        CacheTrainerSpellMap m_mCacheTrainerSpellMap;
 };
 
 #define objmgr MaNGOS::Singleton<ObjectMgr>::Instance()
+
+// scripting access functions
+bool MANGOS_DLL_SPEC LoadMangosStrings(DatabaseType& db, char const* table,int32 start_value = -1, int32 end_value = std::numeric_limits<int32>::min());
+MANGOS_DLL_SPEC const char* GetAreaTriggerScriptNameById(uint32 id);
+
 #endif
-
-// scripting access functions
-bool MANGOS_DLL_SPEC LoadMangosStrings(DatabaseType& db, char const* table);
-MANGOS_DLL_SPEC const char* GetAreaTriggerScriptNameById(uint32 id);
Index: trunk/src/game/Spell.h
===================================================================
--- trunk/src/game/Spell.h (revision 2)
+++ trunk/src/game/Spell.h (revision 6)
@@ -252,4 +252,5 @@
         void EffectResurrect(uint32 i);
         void EffectParry(uint32 i);
+        void EffectBlock(uint32 i);
         void EffectMomentMove(uint32 i);
         void EffectTransmitted(uint32 i);
Index: trunk/src/game/World.cpp
===================================================================
--- trunk/src/game/World.cpp (revision 2)
+++ trunk/src/game/World.cpp (revision 6)
@@ -22,4 +22,5 @@
 
 #include "Common.h"
+//#include "WorldSocket.h"
 #include "Database/DatabaseEnv.h"
 #include "Config/ConfigEnv.h"
@@ -51,5 +52,4 @@
 #include "GameEvent.h"
 #include "Database/DatabaseImpl.h"
-#include "WorldSocket.h"
 #include "GridNotifiersImpl.h"
 #include "CellImpl.h"
@@ -124,4 +124,6 @@
 
     if(m_resultQueue) delete m_resultQueue;
+    
+    //TODO free addSessQueue
 }
 
@@ -174,23 +176,76 @@
 }
 
-/// Add a session to the session list
 void World::AddSession(WorldSession* s)
 {
-    ASSERT(s);
-
-    WorldSession* old = m_sessions[s->GetAccountId()];
-    m_sessions[s->GetAccountId()] = s;
-
-    // if session already exist, prepare to it deleting at next world update
-    if(old)
-        m_kicked_sessions.insert(old);
-}
-
-int32 World::GetQueuePos(WorldSocket* socket)
+  addSessQueue.add(s);
+}
+
+void
+World::AddSession_ (WorldSession* s)
+{
+  ASSERT (s);
+
+  //NOTE - Still there is race condition in WorldSession* being used in the Sockets
+
+  ///- kick already loaded player with same account (if any) and remove session
+  ///- if player is in loading and want to load again, return
+  if (!RemoveSession (s->GetAccountId ()))
+    {
+      s->KickPlayer ();
+      m_kicked_sessions.insert (s);
+      return;
+    }
+
+  WorldSession* old = m_sessions[s->GetAccountId ()];
+  m_sessions[s->GetAccountId ()] = s;
+
+  // if session already exist, prepare to it deleting at next world update
+  // NOTE - KickPlayer() should be called on "old" in RemoveSession()
+  if (old)
+    m_kicked_sessions.insert (old);
+
+  uint32 Sessions = GetActiveAndQueuedSessionCount ();
+  uint32 pLimit = GetPlayerAmountLimit ();
+  uint32 QueueSize = GetQueueSize (); //number of players in the queue
+  bool inQueue = false;
+  //so we don't count the user trying to 
+  //login as a session and queue the socket that we are using
+  --Sessions;
+
+  if (pLimit > 0 && Sessions >= pLimit && s->GetSecurity () == SEC_PLAYER )
+    {
+      AddQueuedPlayer (s);
+      UpdateMaxSessionCounters ();
+      sLog.outDetail ("PlayerQueue: Account id %u is in Queue Position (%u).", s->GetAccountId (), ++QueueSize);
+      return;
+    }
+  
+  WorldPacket packet(SMSG_AUTH_RESPONSE, 1 + 4 + 1 + 4 + 1);
+  packet << uint8 (AUTH_OK);
+  packet << uint32 (0); // unknown random value...
+  packet << uint8 (0);
+  packet << uint32 (0);
+  packet << uint8 (s->IsTBC () ? 1 : 0); // 0 - normal, 1 - TBC, must be set in database manually for each account
+  s->SendPacket (&packet);
+
+  UpdateMaxSessionCounters ();
+
+  // Updates the population
+  if (pLimit > 0)
+    {
+      float popu = GetActiveSessionCount (); //updated number of users on the server
+      popu /= pLimit;
+      popu *= 2;
+      loginDatabase.PExecute ("UPDATE realmlist SET population = '%f' WHERE id = '%d'", popu, realmID);
+      sLog.outDetail ("Server Population (%f).", popu);
+    }
+}
+
+int32 World::GetQueuePos(WorldSession* sess)
 {
     uint32 position = 1;
 
     for(Queue::iterator iter = m_QueuedPlayer.begin(); iter != m_QueuedPlayer.end(); ++iter, ++position)
-        if((*iter) == socket)
+        if((*iter) == sess)
             return position;
 
@@ -198,10 +253,22 @@
 }
 
-void World::AddQueuedPlayer(WorldSocket* socket)
-{
-    m_QueuedPlayer.push_back(socket);
-}
-
-void World::RemoveQueuedPlayer(WorldSocket* socket)
+void World::AddQueuedPlayer(WorldSession* sess)
+{
+    m_QueuedPlayer.push_back (sess);
+    
+    // The 1st SMSG_AUTH_RESPONSE needs to contain other info too.
+    WorldPacket packet (SMSG_AUTH_RESPONSE, 1 + 4 + 1 + 4 + 1);
+    packet << uint8 (AUTH_WAIT_QUEUE);
+    packet << uint32 (0); // unknown random value...
+    packet << uint8 (0);
+    packet << uint32 (0);
+    packet << uint8 (sess->IsTBC () ? 1 : 0); // 0 - normal, 1 - TBC, must be set in database manually for each account
+    packet << uint32(GetQueuePos (sess));
+    sess->SendPacket (&packet);
+    
+    //sess->SendAuthWaitQue (GetQueuePos (sess));
+}
+
+void World::RemoveQueuedPlayer(WorldSession* sess)
 {
     // sessions count including queued to remove (if removed_session set)
@@ -214,8 +281,8 @@
     bool decrease_session = true;
 
-    // search socket to remove and count skipped positions
+    // search to remove and count skipped positions
     for(;iter != m_QueuedPlayer.end(); ++iter, ++position)
     {
-        if(*iter==socket)
+        if(*iter==sess)
         {
             Queue::iterator iter2 = iter;
@@ -237,5 +304,5 @@
     if( (!m_playerLimit || sessions < m_playerLimit) && !m_QueuedPlayer.empty() )
     {
-        WorldSocket * socket = m_QueuedPlayer.front();
+        WorldSession * socket = m_QueuedPlayer.front();
         socket->SendAuthWaitQue(0);
         m_QueuedPlayer.pop_front();
@@ -1016,4 +1083,16 @@
     objmgr.LoadBattleMastersEntry();
 
+    sLog.outString( "Loading GameTeleports..." );
+    objmgr.LoadGameTele();
+
+    sLog.outString( "Loading Npc Text Id..." );
+    objmgr.LoadNpcTextId();                                 // must be after load Creature and NpcText
+
+    sLog.outString( "Loading vendors..." );
+    objmgr.LoadVendors();                                   // must be after load CreatureTemplate and ItemTemplate
+
+    sLog.outString( "Loading trainers..." );
+    objmgr.LoadTrainerSpell();                              // must be after load CreatureTemplate
+
     sLog.outString( "Loading Waypoints..." );
     WaypointMgr.Load();
@@ -2069,7 +2148,8 @@
 {
     // session not removed at kick and will removed in next update tick
-    for (Queue::iterator itr = m_QueuedPlayer.begin(); itr != m_QueuedPlayer.end(); ++itr)
-        if(WorldSession* session = (*itr)->GetSession())
-            session->KickPlayer();
+  //TODO here
+//    for (Queue::iterator itr = m_QueuedPlayer.begin(); itr != m_QueuedPlayer.end(); ++itr)
+//        if(WorldSession* session = (*itr)->GetSession())
+//            session->KickPlayer();
 
     m_QueuedPlayer.empty();
@@ -2321,4 +2401,10 @@
 void World::UpdateSessions( time_t diff )
 {
+    while(!addSessQueue.empty())
+    {
+      WorldSession* sess = addSessQueue.next ();
+      AddSession_ (sess);
+    }
+        
     ///- Delete kicked sessions at add new session
     for (std::set<WorldSession*>::iterator itr = m_kicked_sessions.begin(); itr != m_kicked_sessions.end(); ++itr)
Index: trunk/src/game/Level2.cpp
===================================================================
--- trunk/src/game/Level2.cpp (revision 2)
+++ trunk/src/game/Level2.cpp (revision 6)
@@ -34,4 +34,5 @@
 #include "GameEvent.h"
 #include "SpellMgr.h"
+#include "AccountMgr.h"
 #include "WaypointManager.h"
 #include "Util.h"
@@ -208,5 +209,5 @@
             result = WorldDatabase.PQuery(
                 "SELECT guid, id, position_x, position_y, position_z, orientation, map, (POW(position_x - %f, 2) + POW(position_y - %f, 2) + POW(position_z - %f, 2)) AS order_ "
-                "FROM gameobject,gameobject_template WHERE gameobject_template.entry = gameobject.id AND map = %i AND name "_LIKE_" '""%%%s%%""' ORDER BY order_ ASC LIMIT 1",
+                "FROM gameobject,gameobject_template WHERE gameobject_template.entry = gameobject.id AND map = %i AND name "_LIKE_" "_CONCAT3_("'%%'","'%s'","'%%'")" ORDER BY order_ ASC LIMIT 1",
                 pl->GetPositionX(), pl->GetPositionY(), pl->GetPositionZ(), pl->GetMapId(),name.c_str());
         }
@@ -3947,2 +3948,99 @@
     return false;
 }
+
+bool ChatHandler::HandleLookupPlayerIpCommand(const char* args)
+{
+  
+    if(!*args)
+        return false;
+
+    std::string ip = strtok((char*)args, " ");
+    char* limit_str = strtok(NULL, " ");
+    int32 limit = limit_str ? atoi(limit_str) : -1;
+
+    loginDatabase.escape_string(ip);
+
+    QueryResult* result = loginDatabase.PQuery("SELECT id,username FROM account WHERE last_ip = '%s'", ip.c_str());
+
+    return LookupPlayerSearchCommand(result,limit);
+}
+
+bool ChatHandler::HandleLookupPlayerAccountCommand(const char* args)
+{
+    if(!*args)
+        return false;
+
+    std::string account = strtok((char*)args, " ");
+    char* limit_str = strtok(NULL, " ");
+    int32 limit = limit_str ? atoi(limit_str) : -1;
+
+    if(!AccountMgr::normilizeString(account))
+        return false;
+
+    loginDatabase.escape_string(account);
+
+    QueryResult* result = loginDatabase.PQuery("SELECT id,username FROM account WHERE username = '%s'", account.c_str());
+
+    return LookupPlayerSearchCommand(result,limit);
+}
+
+bool ChatHandler::HandleLookupPlayerEmailCommand(const char* args)
+{
+  
+    if(!*args)
+        return false;
+
+    std::string email = strtok((char*)args, " ");
+    char* limit_str = strtok(NULL, " ");
+    int32 limit = limit_str ? atoi(limit_str) : -1;
+
+    loginDatabase.escape_string(email);
+
+    QueryResult* result = loginDatabase.PQuery("SELECT id,username FROM account WHERE email = '%s'", email.c_str());
+
+    return LookupPlayerSearchCommand(result,limit);
+}
+
+bool ChatHandler::LookupPlayerSearchCommand(QueryResult* result, int32 limit)
+{
+    if(!result)
+    {
+        PSendSysMessage(LANG_NO_PLAYERS_FOUND);
+        SetSentErrorMessage(true);
+        return false;
+    }
+
+    int i =0;
+    do
+    {
+        Field* fields = result->Fetch();
+        uint32 acc_id = fields[0].GetUInt32();
+        std::string acc_name = fields[1].GetCppString();
+        
+        QueryResult* chars = CharacterDatabase.PQuery("SELECT guid,name FROM characters WHERE account = '%u'", acc_id);
+        if(chars)
+        {
+            PSendSysMessage(LANG_LOOKUP_PLAYER_ACCOUNT,acc_name.c_str(),acc_id);
+
+            uint64 guid = 0;
+            std::string name;
+
+            do
+            {
+                Field* charfields = chars->Fetch();
+                guid = charfields[0].GetUInt64();
+                name = charfields[1].GetCppString();
+
+                PSendSysMessage(LANG_LOOKUP_PLAYER_CHARACTER,name.c_str(),guid);
+                ++i;
+
+            } while( chars->NextRow() && ( limit == -1 || i < limit ) );
+
+            delete chars;
+        }
+    } while(result->NextRow());
+
+    delete result;
+
+    return true;
+}
Index: trunk/src/game/CharacterHandler.cpp
===================================================================
--- trunk/src/game/CharacterHandler.cpp (revision 2)
+++ trunk/src/game/CharacterHandler.cpp (revision 6)
@@ -20,5 +20,5 @@
 #include "Database/DatabaseEnv.h"
 #include "WorldPacket.h"
-#include "WorldSocket.h"
+#include "SharedDefines.h"
 #include "WorldSession.h"
 #include "Opcodes.h"
@@ -367,5 +367,5 @@
     SendPacket( &data );
 
-    std::string IP_str = _socket ? _socket->GetRemoteAddress().c_str() : "-";
+    std::string IP_str = GetRemoteAddress().c_str();
     sLog.outBasic("Account: %d (IP: %s) Create Character:[%s]",GetAccountId(),IP_str.c_str(),name.c_str());
     sLog.outChar("Account: %d (IP: %s) Create Character:[%s]",GetAccountId(),IP_str.c_str(),name.c_str());
@@ -417,5 +417,5 @@
         return;
 
-    std::string IP_str = _socket ? _socket->GetRemoteAddress().c_str() : "-";
+    std::string IP_str = GetRemoteAddress();
     sLog.outBasic("Account: %d (IP: %s) Delete Character:[%s] (guid:%u)",GetAccountId(),IP_str.c_str(),name.c_str(),GUID_LOPART(guid));
     sLog.outChar("Account: %d (IP: %s) Delete Character:[%s] (guid: %u)",GetAccountId(),IP_str.c_str(),name.c_str(),GUID_LOPART(guid));
@@ -735,5 +735,5 @@
         SendNotification("GM mode is ON");
 
-    std::string IP_str = _socket ? _socket->GetRemoteAddress().c_str() : "-";
+    std::string IP_str = GetRemoteAddress();
     sLog.outChar("Account: %d (IP: %s) Login Character:[%s] (guid:%u)",GetAccountId(),IP_str.c_str(),pCurrChar->GetName() ,pCurrChar->GetGUID());
 
@@ -967,5 +967,5 @@
     CharacterDatabase.PExecute("DELETE FROM character_declinedname WHERE guid ='%u'", GUID_LOPART(guid));
 
-    std::string IP_str = _socket ? _socket->GetRemoteAddress().c_str() : "-";
+    std::string IP_str = GetRemoteAddress();
     sLog.outChar("Account: %d (IP: %s) Character:[%s] (guid:%u) Changed name to: %s",GetAccountId(),IP_str.c_str(),oldname.c_str(),GUID_LOPART(guid),newname.c_str());
 
Index: trunk/src/game/WorldSession.cpp
===================================================================
--- trunk/src/game/WorldSession.cpp (revision 2)
+++ trunk/src/game/WorldSession.cpp (revision 6)
@@ -21,4 +21,5 @@
 */
 
+#include "WorldSocket.h"
 #include "Common.h"
 #include "Database/DatabaseEnv.h"
@@ -43,8 +44,13 @@
 WorldSession::WorldSession(uint32 id, WorldSocket *sock, uint32 sec, bool tbc, time_t mute_time, LocaleConstant locale) :
 LookingForGroup_auto_join(false), LookingForGroup_auto_add(false), m_muteTime(mute_time),
-_player(NULL), _socket(sock),_security(sec), _accountId(id), m_isTBC(tbc),
+_player(NULL), m_Socket(sock),_security(sec), _accountId(id), m_isTBC(tbc),
 m_sessionDbcLocale(sWorld.GetAvailableDbcLocale(locale)), m_sessionDbLocaleIndex(objmgr.GetIndexForLocale(locale)),
 _logoutTime(0), m_playerLoading(false), m_playerLogout(false), m_playerRecentlyLogout(false), m_latency(0)
 {
+   if (sock)
+     {
+       m_Address = sock->GetRemoteAddress ();
+       sock->AddReference ();
+     }
 }
 
@@ -57,8 +63,10 @@
 
     /// - If have unclosed socket, close it
-    if(_socket)
-        _socket->CloseSocket();
-
-    _socket = NULL;
+  if (m_Socket)
+    {
+      m_Socket->CloseSocket ();   
+      m_Socket->RemoveReference ();
+      m_Socket = NULL;
+    }
 
     ///- empty incoming packet queue
@@ -68,4 +76,6 @@
         delete packet;
     }
+    
+    sWorld.RemoveQueuedPlayer(this);
 }
 
@@ -82,14 +92,8 @@
 }
 
-/// Set the WorldSocket associated with this session
-void WorldSession::SetSocket(WorldSocket *sock)
-{
-    _socket = sock;
-}
-
 /// Send a packet to the client
 void WorldSession::SendPacket(WorldPacket const* packet)
 {
-    if (!_socket)
+    if (!m_Socket)
         return;
     #ifdef MANGOS_DEBUG
@@ -125,14 +129,16 @@
         sendLastPacketBytes = packet->wpos();               // wpos is real written size
     }
-    #endif                                                  // !MANGOS_DEBUG
-
-    _socket->SendPacket(packet);
+#endif                                                  // !MANGOS_DEBUG
+
+  if (m_Socket->SendPacket (*packet) == -1)
+    {
+      m_Socket->CloseSocket ();
+    }
 }
 
 /// Add an incoming packet to the queue
-void WorldSession::QueuePacket(WorldPacket& packet)
-{
-    WorldPacket *pck = new WorldPacket(packet);
-    _recvQueue.add(pck);
+void WorldSession::QueuePacket(WorldPacket* new_packet)
+{
+    _recvQueue.add(new_packet);
 }
 
@@ -149,4 +155,11 @@
 bool WorldSession::Update(uint32 /*diff*/)
 {
+  if (m_Socket)
+    if (m_Socket->IsClosed ())
+      { 
+        m_Socket->RemoveReference ();
+        m_Socket = NULL;
+      }
+  
     WorldPacket *packet;
 
@@ -211,8 +224,8 @@
     ///- If necessary, log the player out
     time_t currTime = time(NULL);
-    if (!_socket || (ShouldLogOut(currTime) && !m_playerLoading))
+    if (!m_Socket || (ShouldLogOut(currTime) && !m_playerLoading))
         LogoutPlayer(true);
 
-    if (!_socket)
+    if (!m_Socket)
         return false;                                       //Will remove this session from the world session map
 
@@ -344,5 +357,5 @@
         // remove player from the group if he is:
         // a) in group; b) not in raid group; c) logging out normally (not being kicked or disconnected)
-        if(_player->GetGroup() && !_player->GetGroup()->isRaidGroup() && _socket)
+        if(_player->GetGroup() && !_player->GetGroup()->isRaidGroup() && m_Socket)
             _player->RemoveFromGroup();
 
@@ -386,10 +399,8 @@
 void WorldSession::KickPlayer()
 {
-    if(!_socket)
-        return;
-
-    // player will be logout and session will removed in next update tick
-    _socket->CloseSocket();
-    _socket = NULL;
+  if (m_Socket)
+    {
+      m_Socket->CloseSocket ();
+    }
 }
 
@@ -462,2 +473,21 @@
         recvPacket.GetOpcode());
 }
+
+void WorldSession::SendAuthWaitQue(uint32 position)
+ {
+     if(position == 0)
+     {
+         WorldPacket packet( SMSG_AUTH_RESPONSE, 1 );
+         packet << uint8( AUTH_OK );
+         SendPacket(&packet);
+     }
+     else
+     {
+         WorldPacket packet( SMSG_AUTH_RESPONSE, 5 );
+         packet << uint8( AUTH_WAIT_QUEUE );
+         packet << uint32 (position);
+         SendPacket(&packet);
+     }
+ }
+ 
+
Index: trunk/src/game/Player.cpp
===================================================================
--- trunk/src/game/Player.cpp (revision 2)
+++ trunk/src/game/Player.cpp (revision 6)
@@ -357,4 +357,5 @@
     m_ArmorProficiency = 0;
     m_canParry = false;
+    m_canBlock = false;
     m_canDualWield = false;
     m_ammoDPS = 0.0f;
@@ -617,6 +618,4 @@
             ++action_itr[i];
     }
-
-    UpdateBlockPercentage();
 
     for (PlayerCreateInfoItems::const_iterator item_id_itr = info->item.begin(); item_id_itr!=info->item.end(); ++item_id_itr++)
@@ -2249,10 +2248,6 @@
         SetFloatValue(PLAYER_SPELL_CRIT_PERCENTAGE1+i, 0.0f);
 
-    // Base parry percents
-    SetFloatValue(PLAYER_PARRY_PERCENTAGE, 5.0f);
-
-    //Base block percentage
-    SetFloatValue(PLAYER_BLOCK_PERCENTAGE, 5.0f);
-
+    SetFloatValue(PLAYER_PARRY_PERCENTAGE, 0.0f);
+    SetFloatValue(PLAYER_BLOCK_PERCENTAGE, 0.0f);
     SetUInt32Value(PLAYER_SHIELD_BLOCK, 0);
 
@@ -3287,9 +3282,4 @@
         updateVisualBits.SetBit(i);
 
-    for(uint16 i = 0; i < INVENTORY_SLOT_BAG_END; i++)
-    {
-        updateVisualBits.SetBit((uint16)(PLAYER_FIELD_INV_SLOT_HEAD + i*2));
-        updateVisualBits.SetBit((uint16)(PLAYER_FIELD_INV_SLOT_HEAD + (i*2) + 1));
-    }
     //Players visible items are not inventory stuff
     //431) = 884 (0x374) = main weapon
@@ -3406,16 +3396,16 @@
 
     // known spell
-    if(HasSpell(trainer_spell->spell->Id))
+    if(HasSpell(trainer_spell->spell))
         return TRAINER_SPELL_GRAY;
 
     // check race/class requirement
-    if(!IsSpellFitByClassAndRace(trainer_spell->spell->Id))
+    if(!IsSpellFitByClassAndRace(trainer_spell->spell))
         return TRAINER_SPELL_RED;
 
     // check level requirement
-    if(getLevel() < ( trainer_spell->reqlevel ? trainer_spell->reqlevel : trainer_spell->spell->spellLevel))
+    if(getLevel() < trainer_spell->reqlevel)
         return TRAINER_SPELL_RED;
 
-    if(SpellChainNode const* spell_chain = spellmgr.GetSpellChainNode(trainer_spell->spell->Id))
+    if(SpellChainNode const* spell_chain = spellmgr.GetSpellChainNode(trainer_spell->spell))
     {
         // check prev.rank requirement
@@ -3432,12 +3422,15 @@
         return TRAINER_SPELL_RED;
 
+    // exist, already checked at loading
+    SpellEntry const* spell = sSpellStore.LookupEntry(trainer_spell->spell);
+
     // secondary prof. or not prof. spell
-    uint32 skill = trainer_spell->spell->EffectMiscValue[1];
-
-    if(trainer_spell->spell->Effect[1] != SPELL_EFFECT_SKILL || !IsPrimaryProfessionSkill(skill))
+    uint32 skill = spell->EffectMiscValue[1];
+
+    if(spell->Effect[1] != SPELL_EFFECT_SKILL || !IsPrimaryProfessionSkill(skill))
         return TRAINER_SPELL_GREEN;
 
     // check primary prof. limit
-    if(spellmgr.IsPrimaryProfessionFirstRankSpell(trainer_spell->spell->Id) && GetFreePrimaryProffesionPoints() == 0)
+    if(spellmgr.IsPrimaryProfessionFirstRankSpell(spell->Id) && GetFreePrimaryProffesionPoints() == 0)
         return TRAINER_SPELL_RED;
 
@@ -4877,7 +4870,5 @@
 
         if(pskill == SKILL_DEFENSE)
-        {
-            UpdateBlockPercentage();
-        }
+            UpdateDefenseBonusesMod();
     }
 }
@@ -5791,5 +5782,5 @@
         FactionEntry const *factionEntry1 = sFactionStore.LookupEntry(Rep->repfaction1);
         uint32 current_reputation_rank1 = GetReputationRank(factionEntry1);
-        if(factionEntry1 && current_reputation_rank1 <= Rep->reputration_max_cap1)
+        if(factionEntry1 && current_reputation_rank1 <= Rep->reputation_max_cap1)
             ModifyFactionReputation(factionEntry1, donerep1);
 
@@ -5809,5 +5800,5 @@
         FactionEntry const *factionEntry2 = sFactionStore.LookupEntry(Rep->repfaction2);
         uint32 current_reputation_rank2 = GetReputationRank(factionEntry2);
-        if(factionEntry2 && current_reputation_rank2 <= Rep->reputration_max_cap2)
+        if(factionEntry2 && current_reputation_rank2 <= Rep->reputation_max_cap2)
             ModifyFactionReputation(factionEntry2, donerep2);
 
@@ -11553,6 +11544,6 @@
     }
 
-    QuestMenu *qm = PlayerTalkClass->GetQuestMenu();
-    qm->ClearMenu();
+    QuestMenu &qm = PlayerTalkClass->GetQuestMenu();
+    qm.ClearMenu();
 
     for(QuestRelations::const_iterator i = pObjectQIR->lower_bound(pObject->GetEntry()); i != pObjectQIR->upper_bound(pObject->GetEntry()); ++i)
@@ -11561,9 +11552,9 @@
         QuestStatus status = GetQuestStatus( quest_id );
         if ( status == QUEST_STATUS_COMPLETE && !GetQuestRewardStatus( quest_id ) )
-            qm->AddMenuItem(quest_id, DIALOG_STATUS_REWARD_REP);
+            qm.AddMenuItem(quest_id, DIALOG_STATUS_REWARD_REP);
         else if ( status == QUEST_STATUS_INCOMPLETE )
-            qm->AddMenuItem(quest_id, DIALOG_STATUS_INCOMPLETE);
+            qm.AddMenuItem(quest_id, DIALOG_STATUS_INCOMPLETE);
         else if (status == QUEST_STATUS_AVAILABLE )
-            qm->AddMenuItem(quest_id, DIALOG_STATUS_CHAT);
+            qm.AddMenuItem(quest_id, DIALOG_STATUS_CHAT);
     }
 
@@ -11577,7 +11568,7 @@
 
         if (pQuest->IsAutoComplete() && CanTakeQuest(pQuest, false))
-            qm->AddMenuItem(quest_id, DIALOG_STATUS_REWARD_REP);
+            qm.AddMenuItem(quest_id, DIALOG_STATUS_REWARD_REP);
         else if ( status == QUEST_STATUS_NONE && CanTakeQuest( pQuest, false ) )
-            qm->AddMenuItem(quest_id, DIALOG_STATUS_AVAILABLE);
+            qm.AddMenuItem(quest_id, DIALOG_STATUS_AVAILABLE);
     }
 }
@@ -11585,13 +11576,17 @@
 void Player::SendPreparedQuest( uint64 guid )
 {
-    QuestMenu* pQuestMenu = PlayerTalkClass->GetQuestMenu();
-    if( !pQuestMenu || pQuestMenu->MenuItemCount() < 1 )
+    QuestMenu& questMenu = PlayerTalkClass->GetQuestMenu();
+    if( questMenu.Empty() )
         return;
 
-    uint32 status = pQuestMenu->GetItem(0).m_qIcon;
-    if ( pQuestMenu->MenuItemCount() == 1 )
+    QuestMenuItem const& qmi0 = questMenu.GetItem( 0 );
+
+    uint32 status = qmi0.m_qIcon;
+
+    // single element case
+    if ( questMenu.MenuItemCount() == 1 )
     {
         // Auto open -- maybe also should verify there is no greeting
-        uint32 quest_id = pQuestMenu->GetItem(0).m_qId;
+        uint32 quest_id = qmi0.m_qId;
         Quest const* pQuest = objmgr.GetQuestTemplate(quest_id);
         if ( pQuest )
@@ -11608,4 +11603,5 @@
         }
     }
+    // multiply entries
     else
     {
@@ -13772,11 +13768,4 @@
                 break;
         }
-    }
-
-    //Unmount Player from previous mount, so speed bug with mount is no more...
-    if(IsMounted())
-    {
-        Unmount();
-        RemoveSpellsCausingAura(SPELL_AURA_MOUNTED);
     }
 
@@ -15627,6 +15616,4 @@
 void Player::BuildPlayerChat(WorldPacket *data, uint8 msgtype, std::string text, uint32 language) const
 {
-    bool pre = (msgtype==CHAT_MSG_EMOTE);
-
     *data << (uint8)msgtype;
     *data << (uint32)language;
@@ -15634,7 +15621,5 @@
     *data << (uint32)language;                               //language 2.1.0 ?
     *data << (uint64)GetGUID();
-    *data << (uint32)(text.length()+1+(pre?3:0));
-    if(pre)
-        data->append("%s ",3);
+    *data << (uint32)(text.length()+1);
     *data << text;
     *data << (uint8)chatTag();
@@ -17152,4 +17137,8 @@
     data << (float)0.01666667f;                             // game speed
     GetSession()->SendPacket( &data );
+
+    // set fly flag if in fly form or taxi flight to prevent visually drop at ground in showup moment
+    if(HasAuraType(SPELL_AURA_MOD_INCREASE_FLIGHT_SPEED) || isInFlight())
+        SetUnitMovementFlags(GetUnitMovementFlags() | MOVEMENTFLAG_FLYING2);
 }
 
@@ -17163,7 +17152,7 @@
     static const AuraType auratypes[] =
     {
-        SPELL_AURA_MOD_FEAR,     SPELL_AURA_TRANSFORM, SPELL_AURA_WATER_WALK,
-        SPELL_AURA_FEATHER_FALL, SPELL_AURA_HOVER,     SPELL_AURA_SAFE_FALL,
-        SPELL_AURA_FLY,          SPELL_AURA_NONE
+        SPELL_AURA_MOD_FEAR,     SPELL_AURA_TRANSFORM,                 SPELL_AURA_WATER_WALK,
+        SPELL_AURA_FEATHER_FALL, SPELL_AURA_HOVER,                     SPELL_AURA_SAFE_FALL,
+        SPELL_AURA_FLY,          SPELL_AURA_MOD_INCREASE_FLIGHT_SPEED, SPELL_AURA_NONE
     };
     for(AuraType const* itr = &auratypes[0]; itr && itr[0] != SPELL_AURA_NONE; ++itr)
@@ -18117,14 +18106,28 @@
 }
 
-bool ItemPosCount::isContainedIn(ItemPosCountVec &vec)
+void Player::SetCanParry( bool value )
+{
+    if(m_canParry==value)
+        return; 
+
+    m_canParry = value;
+    UpdateParryPercentage();
+}
+
+void Player::SetCanBlock( bool value )
+{
+    if(m_canBlock==value)
+        return; 
+
+    m_canBlock = value;
+    UpdateBlockPercentage();
+}
+
+bool ItemPosCount::isContainedIn(ItemPosCountVec const& vec) const
 {
     for(ItemPosCountVec::const_iterator itr = vec.begin(); itr != vec.end();++itr)
-    {
-        if(itr->pos == this->pos/* && itr->count == this.count*/)
-        {
+        if(itr->pos == this->pos)
             return true;
-        }
-    }
+
     return false;
 }
-
Index: trunk/src/game/Guild.h
===================================================================
--- trunk/src/game/Guild.h (revision 2)
+++ trunk/src/game/Guild.h (revision 6)
@@ -217,4 +217,6 @@
 {
     GuildItemPosCount(uint8 _slot, uint8 _count) : slot(_slot), count(_count) {}
+
+    bool isContainedIn(std::vector<GuildItemPosCount> const& vec) const;
 
     uint8 slot;
Index: trunk/src/game/NPCHandler.cpp
===================================================================
--- trunk/src/game/NPCHandler.cpp (revision 2)
+++ trunk/src/game/NPCHandler.cpp (revision 6)
@@ -130,7 +130,4 @@
         GetPlayer()->RemoveSpellsCausingAura(SPELL_AURA_FEIGN_DEATH);
 
-    // Lazy loading at first access
-    unit->LoadTrainerSpells();
-
     // trainer list loaded at check;
     if(!unit->isCanTrainingOf(_player,true))
@@ -145,12 +142,17 @@
     }
 
-    Creature::SpellsList const& trainer_spells = unit->GetTrainerSpells();
-
-    WorldPacket data( SMSG_TRAINER_LIST, 8+4+4+trainer_spells.size()*38 + strTitle.size()+1);
+    TrainerSpellData const* trainer_spells = unit->GetTrainerSpells();
+    if(!trainer_spells)
+    {
+        sLog.outDebug( "WORLD: SendTrainerList - Training spells not found for creature (GUID: %u Entry: %u)", guid, unit->GetEntry());
+        return;
+    }
+
+    WorldPacket data( SMSG_TRAINER_LIST, 8+4+4+trainer_spells->spellList.size()*38 + strTitle.size()+1);
     data << guid;
-    data << uint32(unit->GetTrainerType());
+    data << uint32(trainer_spells->trainerType);
 
     size_t count_pos = data.wpos();
-    data << uint32(trainer_spells.size());
+    data << uint32(trainer_spells->spellList.size());
 
     // reputation discount
@@ -158,24 +160,26 @@
 
     uint32 count = 0;
-    for(Creature::SpellsList::const_iterator itr = trainer_spells.begin(); itr != trainer_spells.end(); ++itr)
-    {
-        if(!_player->IsSpellFitByClassAndRace(itr->spell->Id))
+    for(TrainerSpellList::const_iterator itr = trainer_spells->spellList.begin(); itr != trainer_spells->spellList.end(); ++itr)
+    {
+        TrainerSpell const* tSpell = *itr;
+
+        if(!_player->IsSpellFitByClassAndRace(tSpell->spell))
             continue;
 
         ++count;
 
-        bool primary_prof_first_rank = spellmgr.IsPrimaryProfessionFirstRankSpell(itr->spell->Id);
-
-        SpellChainNode const* chain_node = spellmgr.GetSpellChainNode(itr->spell->Id);
-
-        data << uint32(itr->spell->Id);
-        data << uint8(_player->GetTrainerSpellState(&*itr));
-        data << uint32(floor(itr->spellcost * fDiscountMod));
+        bool primary_prof_first_rank = spellmgr.IsPrimaryProfessionFirstRankSpell(tSpell->spell);
+
+        SpellChainNode const* chain_node = spellmgr.GetSpellChainNode(tSpell->spell);
+
+        data << uint32(tSpell->spell);
+        data << uint8(_player->GetTrainerSpellState(tSpell));
+        data << uint32(floor(tSpell->spellcost * fDiscountMod));
 
         data << uint32(primary_prof_first_rank ? 1 : 0);    // primary prof. learn confirmation dialog
         data << uint32(primary_prof_first_rank ? 1 : 0);    // must be equal prev. field to have learn button in enabled state
-        data << uint8(itr->reqlevel ? itr->reqlevel : itr->spell->spellLevel);
-        data << uint32(itr->reqskill);
-        data << uint32(itr->reqskillvalue);
+        data << uint8(tSpell->reqlevel);
+        data << uint32(tSpell->reqskill);
+        data << uint32(tSpell->reqskillvalue);
         data << uint32(chain_node ? (chain_node->prev ? chain_node->prev : chain_node->req) : 0);
         data << uint32(chain_node && chain_node->prev ? chain_node->req : 0);
@@ -210,24 +214,14 @@
         GetPlayer()->RemoveSpellsCausingAura(SPELL_AURA_FEIGN_DEATH);
 
-    // Lazy loading at first access
-    unit->LoadTrainerSpells();
-
     if(!unit->isCanTrainingOf(_player,true))
         return;
 
-    TrainerSpell const* trainer_spell = NULL;
-
     // check present spell in trainer spell list
-    Creature::SpellsList const& trainer_spells = unit->GetTrainerSpells();
-    for(Creature::SpellsList::const_iterator itr = trainer_spells.begin(); itr != trainer_spells.end(); ++itr)
-    {
-        if(itr->spell->Id == spellId)
-        {
-            trainer_spell = &*itr;
-            break;
-        }
-    }
+    TrainerSpellData const* trainer_spells = unit->GetTrainerSpells();
+    if(!trainer_spells)
+        return; 
 
     // not found, cheat?
+    TrainerSpell const* trainer_spell = trainer_spells->Find(spellId);
     if(!trainer_spell)
         return;
@@ -255,5 +249,5 @@
 
     // learn explicitly to prevent lost money at lags, learning spell will be only show spell animation
-    _player->learnSpell(trainer_spell->spell->Id);
+    _player->learnSpell(trainer_spell->spell);
 
     data.Initialize(SMSG_TRAINER_BUY_SUCCEEDED, 12);
Index: trunk/src/game/Spell.cpp
===================================================================
--- trunk/src/game/Spell.cpp (revision 2)
+++ trunk/src/game/Spell.cpp (revision 6)
@@ -524,4 +524,5 @@
                 case SPELL_EFFECT_RESURRECT:
                 case SPELL_EFFECT_PARRY:
+                case SPELL_EFFECT_BLOCK:
                 case SPELL_EFFECT_CREATE_ITEM:
                 case SPELL_EFFECT_TRIGGER_SPELL:
@@ -3477,14 +3478,20 @@
             case SPELL_EFFECT_DUMMY:
             {
-                // Execute
-                if(m_spellInfo->SpellIconID == 1648)
+                if(m_spellInfo->SpellIconID == 1648)        // Execute
                 {
                     if(!m_targets.getUnitTarget() || m_targets.getUnitTarget()->GetHealth() > m_targets.getUnitTarget()->GetMaxHealth()*0.2)
                         return SPELL_FAILED_BAD_TARGETS;
                 }
-                else if (m_spellInfo->Id == 51582)
+                else if (m_spellInfo->Id == 51582)          // Rocket Boots Engaged
                 {
                     if(m_caster->IsInWater())
                         return SPELL_FAILED_ONLY_ABOVEWATER;
+                }
+                else if(m_spellInfo->SpellIconID==156)      // Holy Shock
+                {
+                    // spell different for friends and enemies
+                    // hart version required facing
+                    if(m_targets.getUnitTarget() && !m_caster->IsFriendlyTo(m_targets.getUnitTarget()) && !m_caster->HasInArc( M_PI, target ))
+                        return SPELL_FAILED_UNIT_NOT_INFRONT;
                 }
                 break;
@@ -4232,59 +4239,7 @@
         if(dist < min_range)
             return SPELL_FAILED_TOO_CLOSE;
-        if( !m_IsTriggeredSpell && m_caster->GetTypeId() == TYPEID_PLAYER &&
-            !IsPositiveSpell(m_spellInfo->Id) && !m_caster->HasInArc( M_PI, target ) )
-        {
-            // Spell-Family Related Checks
-            switch (m_spellInfo->SpellFamilyName)
-            {
-                case SPELLFAMILY_PRIEST:
-                {
-                    // Shadow Word: Death, castable without facing
-                    if (m_spellInfo->SpellFamilyFlags & 0x200000000LL)
-                        return 0;                           // this is not TARGET_FLAG_DEST_LOCATION so we can return safely
-                    break;
-                }
-                case SPELLFAMILY_PALADIN:
-                {
-                    // Holy Shock, require facing
-                    if (m_spellInfo->SpellFamilyFlags & 0x200000LL)
-                        return SPELL_FAILED_UNIT_NOT_INFRONT;
-                    break;
-                }
-                case SPELLFAMILY_WARRIOR:
-                {
-                    // Charge, require facing
-                    if (m_spellInfo->SpellFamilyFlags & 1)
-                        return SPELL_FAILED_UNIT_NOT_INFRONT;
-                    break;
-                }
-            }
-
-            // Ranged Weapon
-            if (IsRangedSpell())
-                return SPELL_FAILED_UNIT_NOT_INFRONT;
-
-            // Melee Combat
-            if (m_spellInfo->rangeIndex == 2)
-                return SPELL_FAILED_UNIT_NOT_INFRONT;
-
-            // Missile Effect
-            if (m_spellInfo->speed > 0)
-                return SPELL_FAILED_UNIT_NOT_INFRONT;
-
-            // Channeled Spells need facing
-            if (IsChanneledSpell(m_spellInfo))
-                return SPELL_FAILED_UNIT_NOT_INFRONT;
-
-            // Direct Damage and charge effects
-            for (uint8 i=0;i<3;++i)
-            {
-                if (m_spellInfo->Effect[i] == SPELL_EFFECT_SCHOOL_DAMAGE ||
-                    m_spellInfo->Effect[i] == SPELL_EFFECT_POWER_BURN ||
-                    m_spellInfo->Effect[i] == SPELL_EFFECT_HEALTH_LEECH ||
-                    m_spellInfo->Effect[i] == SPELL_EFFECT_CHARGE)
-                    return SPELL_FAILED_UNIT_NOT_INFRONT;
-            }
-        }
+        if( m_caster->GetTypeId() == TYPEID_PLAYER &&
+            (m_spellInfo->FacingCasterFlags & SPELL_FACING_FLAG_INFRONT) && !m_caster->HasInArc( M_PI, target ) )
+            return SPELL_FAILED_UNIT_NOT_INFRONT;
     }
 
Index: trunk/src/game/SharedDefines.h
===================================================================
--- trunk/src/game/SharedDefines.h (revision 2)
+++ trunk/src/game/SharedDefines.h (revision 6)
@@ -1995,3 +1995,107 @@
     SUMMON_TYPE_POSESSED2   = 428
 };
+
+enum ResponseCodes
+{
+    RESPONSE_SUCCESS                                       = 0x00,
+    RESPONSE_FAILURE                                       = 0x01,
+    RESPONSE_CANCELLED                                     = 0x02,
+    RESPONSE_DISCONNECTED                                  = 0x03,
+    RESPONSE_FAILED_TO_CONNECT                             = 0x04,
+    RESPONSE_CONNECTED                                     = 0x05,
+    RESPONSE_VERSION_MISMATCH                              = 0x06,
+
+    CSTATUS_CONNECTING                                     = 0x07,
+    CSTATUS_NEGOTIATING_SECURITY                           = 0x08,
+    CSTATUS_NEGOTIATION_COMPLETE                           = 0x09,
+    CSTATUS_NEGOTIATION_FAILED                             = 0x0A,
+    CSTATUS_AUTHENTICATING                                 = 0x0B,
+
+    AUTH_OK                                                = 0x0C,
+    AUTH_FAILED                                            = 0x0D,
+    AUTH_REJECT                                            = 0x0E,
+    AUTH_BAD_SERVER_PROOF                                  = 0x0F,
+    AUTH_UNAVAILABLE                                       = 0x10,
+    AUTH_SYSTEM_ERROR                                      = 0x11,
+    AUTH_BILLING_ERROR                                     = 0x12,
+    AUTH_BILLING_EXPIRED                                   = 0x13,
+    AUTH_VERSION_MISMATCH                                  = 0x14,
+    AUTH_UNKNOWN_ACCOUNT                                   = 0x15,
+    AUTH_INCORRECT_PASSWORD                                = 0x16,
+    AUTH_SESSION_EXPIRED                                   = 0x17,
+    AUTH_SERVER_SHUTTING_DOWN                              = 0x18,
+    AUTH_ALREADY_LOGGING_IN                                = 0x19,
+    AUTH_LOGIN_SERVER_NOT_FOUND                            = 0x1A,
+    AUTH_WAIT_QUEUE                                        = 0x1B,
+    AUTH_BANNED                                            = 0x1C,
+    AUTH_ALREADY_ONLINE                                    = 0x1D,
+    AUTH_NO_TIME                                           = 0x1E,
+    AUTH_DB_BUSY                                           = 0x1F,
+    AUTH_SUSPENDED                                         = 0x20,
+    AUTH_PARENTAL_CONTROL                                  = 0x21,
+    AUTH_LOCKED_ENFORCED                                   = 0x22,
+
+    REALM_LIST_IN_PROGRESS                                 = 0x23,
+    REALM_LIST_SUCCESS                                     = 0x24,
+    REALM_LIST_FAILED                                      = 0x25,
+    REALM_LIST_INVALID                                     = 0x26,
+    REALM_LIST_REALM_NOT_FOUND                             = 0x27,
+
+    ACCOUNT_CREATE_IN_PROGRESS                             = 0x28,
+    ACCOUNT_CREATE_SUCCESS                                 = 0x29,
+    ACCOUNT_CREATE_FAILED                                  = 0x2A,
+
+    CHAR_LIST_RETRIEVING                                   = 0x2B,
+    CHAR_LIST_RETRIEVED                                    = 0x2C,
+    CHAR_LIST_FAILED                                       = 0x2D,
+
+    CHAR_CREATE_IN_PROGRESS                                = 0x2E,
+    CHAR_CREATE_SUCCESS                                    = 0x2F,
+    CHAR_CREATE_ERROR                                      = 0x30,
+    CHAR_CREATE_FAILED                                     = 0x31,
+    CHAR_CREATE_NAME_IN_USE                                = 0x32,
+    CHAR_CREATE_DISABLED                                   = 0x33,
+    CHAR_CREATE_PVP_TEAMS_VIOLATION                        = 0x34,
+    CHAR_CREATE_SERVER_LIMIT                               = 0x35,
+    CHAR_CREATE_ACCOUNT_LIMIT                              = 0x36,
+    CHAR_CREATE_SERVER_QUEUE                               = 0x37,
+    CHAR_CREATE_ONLY_EXISTING                              = 0x38,
+    CHAR_CREATE_EXPANSION                                  = 0x39,
+
+    CHAR_DELETE_IN_PROGRESS                                = 0x3A,
+    CHAR_DELETE_SUCCESS                                    = 0x3B,
+    CHAR_DELETE_FAILED                                     = 0x3C,
+    CHAR_DELETE_FAILED_LOCKED_FOR_TRANSFER                 = 0x3D,
+    CHAR_DELETE_FAILED_GUILD_LEADER                        = 0x3E,
+    CHAR_DELETE_FAILED_ARENA_CAPTAIN                       = 0x3F,
+
+    CHAR_LOGIN_IN_PROGRESS                                 = 0x40,
+    CHAR_LOGIN_SUCCESS                                     = 0x41,
+    CHAR_LOGIN_NO_WORLD                                    = 0x42,
+    CHAR_LOGIN_DUPLICATE_CHARACTER                         = 0x43,
+    CHAR_LOGIN_NO_INSTANCES                                = 0x44,
+    CHAR_LOGIN_FAILED                                      = 0x45,
+    CHAR_LOGIN_DISABLED                                    = 0x46,
+    CHAR_LOGIN_NO_CHARACTER                                = 0x47,
+    CHAR_LOGIN_LOCKED_FOR_TRANSFER                         = 0x48,
+    CHAR_LOGIN_LOCKED_BY_BILLING                           = 0x49,
+
+    CHAR_NAME_SUCCESS                                      = 0x4A,
+    CHAR_NAME_FAILURE                                      = 0x4B,
+    CHAR_NAME_NO_NAME                                      = 0x4C,
+    CHAR_NAME_TOO_SHORT                                    = 0x4D,
+    CHAR_NAME_TOO_LONG                                     = 0x4E,
+    CHAR_NAME_INVALID_CHARACTER                            = 0x4F,
+    CHAR_NAME_MIXED_LANGUAGES                              = 0x50,
+    CHAR_NAME_PROFANE                                      = 0x51,
+    CHAR_NAME_RESERVED                                     = 0x52,
+    CHAR_NAME_INVALID_APOSTROPHE                           = 0x53,
+    CHAR_NAME_MULTIPLE_APOSTROPHES                         = 0x54,
+    CHAR_NAME_THREE_CONSECUTIVE                            = 0x55,
+    CHAR_NAME_INVALID_SPACE                                = 0x56,
+    CHAR_NAME_CONSECUTIVE_SPACES                           = 0x57,
+    CHAR_NAME_RUSSIAN_CONSECUTIVE_SILENT_CHARACTERS        = 0x58,
+    CHAR_NAME_RUSSIAN_SILENT_CHARACTER_AT_BEGINNING_OR_END = 0x59,
+    CHAR_NAME_DECLENSION_DOESNT_MATCH_BASE_NAME            = 0x5A,
+};
 #endif
Index: trunk/src/game/Creature.cpp
===================================================================
--- trunk/src/game/Creature.cpp (revision 2)
+++ trunk/src/game/Creature.cpp (revision 6)
@@ -47,10 +47,26 @@
 #include "Policies/SingletonImp.h"
 
+void TrainerSpellData::Clear()
+{
+    for (TrainerSpellList::iterator itr = spellList.begin(); itr != spellList.end(); ++itr)
+        delete (*itr);
+    spellList.empty();
+}
+
+TrainerSpell const* TrainerSpellData::Find(uint32 spell_id) const
+{
+    for(TrainerSpellList::const_iterator itr = spellList.begin(); itr != spellList.end(); ++itr)
+        if((*itr)->spell == spell_id)
+            return *itr;
+
+    return NULL;
+}
+
 Creature::Creature() :
 Unit(), i_AI(NULL),
 lootForPickPocketed(false), lootForBody(false), m_groupLootTimer(0), lootingGroupLeaderGUID(0),
-m_itemsLoaded(false), m_trainerSpellsLoaded(false), m_trainer_type(0), m_lootMoney(0), m_lootRecipient(0),
+m_itemsLoaded(false), m_lootMoney(0), m_lootRecipient(0),
 m_deathTimer(0), m_respawnTime(0), m_respawnDelay(25), m_corpseDelay(60), m_respawnradius(0.0f),
-m_gossipOptionLoaded(false),m_NPCTextId(0), m_emoteState(0), m_isPet(false), m_isTotem(false),
+m_gossipOptionLoaded(false),m_emoteState(0), m_isPet(false), m_isTotem(false),
 m_regenTimer(2000), m_defaultMovementType(IDLE_MOTION_TYPE), m_equipmentId(0),
 m_AlreadyCallAssistence(false), m_regenHealth(true), m_AI_locked(false), m_isDeadByDefault(false),
@@ -72,5 +88,4 @@
     CleanupsBeforeDelete();
 
-    m_trainer_spells.clear();
     m_vendor_items.clear();
 
@@ -91,56 +106,4 @@
     if(IsInWorld()) ObjectAccessor::Instance().RemoveObject(this);
     Unit::RemoveFromWorld();
-}
-
-void Creature::LoadTrainerSpells()
-{
-    if(m_trainerSpellsLoaded)
-        return;
-
-    m_trainer_spells.clear();
-    m_trainer_type = 0;
-
-    Field *fields;
-    QueryResult *result = WorldDatabase.PQuery("SELECT spell,spellcost,reqskill,reqskillvalue,reqlevel FROM npc_trainer WHERE entry = '%u'", GetEntry());
-
-    if(!result)
-        return;
-
-    do
-    {
-        fields = result->Fetch();
-
-        uint32 spellid = fields[0].GetUInt32();
-        SpellEntry const *spellinfo = sSpellStore.LookupEntry(spellid);
-
-        if(!spellinfo)
-        {
-            sLog.outErrorDb("Trainer (Entry: %u ) has non existing spell %u",GetEntry(),spellid);
-            continue;
-        }
-
-        if(!SpellMgr::IsSpellValid(spellinfo))
-        {
-            sLog.outErrorDb("LoadTrainerSpells: Trainer (Entry: %u) has broken learning spell %u.", GetEntry(), spellid);
-            continue;
-        }
-
-        if(SpellMgr::IsProfessionSpell(spellinfo->Id))
-            m_trainer_type = 2;
-
-        TrainerSpell tspell;
-        tspell.spell        = spellinfo;
-        tspell.spellcost    = fields[1].GetUInt32();
-        tspell.reqskill     = fields[2].GetUInt32();
-        tspell.reqskillvalue= fields[3].GetUInt32();
-        tspell.reqlevel     = fields[4].GetUInt32();
-
-        m_trainer_spells.push_back(tspell);
-
-    } while( result->NextRow() );
-
-    delete result;
-
-    m_trainerSpellsLoaded = true;
 }
 
@@ -551,5 +514,8 @@
         return false;
 
-    if(m_trainer_spells.empty())
+    TrainerSpellData const* trainer_spells = GetTrainerSpells();
+
+
+    if(!trainer_spells || trainer_spells->spellList.empty())
     {
         sLog.outErrorDb("Creature %u (Entry: %u) have UNIT_NPC_FLAG_TRAINER but have empty trainer spell list.",
@@ -719,7 +685,4 @@
                         break;
                     case GOSSIP_OPTION_TRAINER:
-                        // Lazy loading at first access
-                        LoadTrainerSpells();
-
                         if(!isCanTrainingOf(pPlayer,false))
                             cantalking=false;
@@ -757,5 +720,5 @@
             if(!gso->Option.empty() && cantalking )
             {                                               //note for future dev: should have database fields for BoxMessage & BoxMoney
-                pm->GetGossipMenu()->AddMenuItem((uint8)gso->Icon,gso->Option, gossipid,gso->Action,"",0,false);
+                pm->GetGossipMenu().AddMenuItem((uint8)gso->Icon,gso->Option, gossipid,gso->Action,"",0,false);
                 ingso=gso;
             }
@@ -764,9 +727,8 @@
 
     ///some gossips aren't handled in normal way ... so we need to do it this way .. TODO: handle it in normal way ;-)
-    if(pm->GetGossipMenu()->MenuItemCount()==0 && !pm->GetQuestMenu()->MenuItemCount())
+    if(pm->Empty())
     {
         if(HasFlag(UNIT_NPC_FLAGS,UNIT_NPC_FLAG_TRAINER))
         {
-            LoadTrainerSpells();                            // Lazy loading at first access
             isCanTrainingOf(pPlayer,true);                  // output error message if need
         }
@@ -783,8 +745,8 @@
         return;
 
-    GossipMenu* gossipmenu = player->PlayerTalkClass->GetGossipMenu();
+    GossipMenu& gossipmenu = player->PlayerTalkClass->GetGossipMenu();
 
     // in case empty gossip menu open quest menu if any
-    if (gossipmenu->MenuItemCount() == 0 && GetNpcTextId() == 0)
+    if (gossipmenu.Empty() && GetNpcTextId() == 0)
     {
         player->SendPreparedQuest(GetGUID());
@@ -799,6 +761,10 @@
 void Creature::OnGossipSelect(Player* player, uint32 option)
 {
-    GossipMenu* gossipmenu = player->PlayerTalkClass->GetGossipMenu();
-    uint32 action=gossipmenu->GetItem(option).m_gAction;
+    GossipMenu& gossipmenu = player->PlayerTalkClass->GetGossipMenu();
+
+    if(option >= gossipmenu.MenuItemCount())
+        return;
+
+    uint32 action=gossipmenu.GetItem(option).m_gAction;
     uint32 zoneid=GetZoneId();
     uint64 guid=GetGUID();
@@ -969,19 +935,8 @@
 uint32 Creature::GetNpcTextId()
 {
-    // already loaded and cached
-    if(m_NPCTextId)
-        return m_NPCTextId;
-
-    QueryResult* result = WorldDatabase.PQuery("SELECT textid FROM npc_gossip WHERE npc_guid= '%u'", m_DBTableGuid);
-    if(result)
-    {
-        Field *fields = result->Fetch();
-        m_NPCTextId = fields[0].GetUInt32();
-        delete result;
-    }
-    else
-        m_NPCTextId = DEFAULT_GOSSIP_MESSAGE;
-
-    return m_NPCTextId;
+    if(uint32 pos = objmgr.GetNpcGossip(m_DBTableGuid))
+        return pos;
+
+    return DEFAULT_GOSSIP_MESSAGE;
 }
 
@@ -1400,35 +1355,10 @@
     m_vendor_items.clear();
 
-    QueryResult *result = WorldDatabase.PQuery("SELECT item, maxcount, incrtime, ExtendedCost FROM npc_vendor WHERE entry = '%u'", GetEntry());
-
-    if(!result)
+    VendorItemList const* vList = objmgr.GetNpcVendorItemList(GetEntry());
+    if(!vList)
         return;
 
-    do
-    {
-        Field *fields = result->Fetch();
-
-        if (GetItemCount() >= MAX_VENDOR_ITEMS)
-        {
-            sLog.outErrorDb( "Vendor %u has too many items (%u >= %i). Check the DB!", GetEntry(), GetItemCount(), MAX_VENDOR_ITEMS );
-            break;
-        }
-
-        uint32 item_id = fields[0].GetUInt32();
-        if(!sItemStorage.LookupEntry<ItemPrototype>(item_id))
-        {
-            sLog.outErrorDb("Vendor %u have in item list non-existed item %u",GetEntry(),item_id);
-            continue;
-        }
-
-        uint32 ExtendedCost = fields[3].GetUInt32();
-        if(ExtendedCost && !sItemExtendedCostStore.LookupEntry(ExtendedCost))
-            sLog.outErrorDb("Item (Entry: %u) has wrong ExtendedCost (%u) for vendor (%u)",item_id,ExtendedCost,GetEntry());
-
-        AddItem( item_id, fields[1].GetUInt32(), fields[2].GetUInt32(), ExtendedCost);
-    }
-    while( result->NextRow() );
-
-    delete result;
+    for (VendorItemList::const_iterator _item_iter = vList->begin(); _item_iter != vList->end(); ++_item_iter)
+        AddItem( (*_item_iter)->item, (*_item_iter)->maxcount, (*_item_iter)->incrtime, (*_item_iter)->ExtendedCost);
 
     m_itemsLoaded = true;
@@ -1992,2 +1922,7 @@
     return ObjectMgr::GetCreatureTemplate(GetEntry())->ScriptName;
 }
+
+TrainerSpellData const* Creature::GetTrainerSpells() const
+{
+    return objmgr.GetNpcTrainerSpells(GetEntry());
+}
Index: trunk/src/game/ObjectMgr.cpp
===================================================================
--- trunk/src/game/ObjectMgr.cpp (revision 2)
+++ trunk/src/game/ObjectMgr.cpp (revision 6)
@@ -133,4 +133,11 @@
     for(ItemMap::iterator itr = mAitems.begin(); itr != mAitems.end(); ++itr)
         delete itr->second;
+
+    for (CacheVendorItemMap::iterator itr = m_mCacheVendorItemMap.begin(); itr != m_mCacheVendorItemMap.end(); ++itr)
+        for (VendorItemList::iterator itr2 = itr->second.begin(); itr2 != itr->second.end(); ++itr2)
+            delete (*itr2);
+
+    for (CacheTrainerSpellMap::iterator itr = m_mCacheTrainerSpellMap.begin(); itr != m_mCacheTrainerSpellMap.end(); ++itr)
+        itr->second.Clear();
 }
 
@@ -255,10 +262,10 @@
 void ObjectMgr::SendAuctionWonMail( AuctionEntry *auction )
 {
-    Item *pItem = objmgr.GetAItem(auction->item_guidlow);
+    Item *pItem = GetAItem(auction->item_guidlow);
     if(!pItem)
         return;
 
     uint64 bidder_guid = MAKE_NEW_GUID(auction->bidder, 0, HIGHGUID_PLAYER);
-    Player *bidder = objmgr.GetPlayer(bidder_guid);
+    Player *bidder = GetPlayer(bidder_guid);
 
     uint32 bidder_accId = 0;
@@ -328,5 +335,5 @@
             bidder->GetSession()->SendAuctionBidderNotification( auction->location, auction->Id, bidder_guid, 0, 0, auction->item_template);
         else
-            objmgr.RemoveAItem(pItem->GetGUIDLow());        // we have to remove the item, before we delete it !!
+            RemoveAItem(pItem->GetGUIDLow());               // we have to remove the item, before we delete it !!
 
         // will delete item or place to receiver mail list
@@ -337,5 +344,5 @@
     {
         CharacterDatabase.PExecute("DELETE FROM item_instance WHERE guid='%u'", pItem->GetGUIDLow());
-        objmgr.RemoveAItem(pItem->GetGUIDLow());            // we have to remove the item, before we delete it !!
+        RemoveAItem(pItem->GetGUIDLow());                   // we have to remove the item, before we delete it !!
         delete pItem;
     }
@@ -345,5 +352,5 @@
 {
     uint64 owner_guid = MAKE_NEW_GUID(auction->owner, 0, HIGHGUID_PLAYER);
-    Player *owner = objmgr.GetPlayer(owner_guid);
+    Player *owner = GetPlayer(owner_guid);
 
     // owner exist (online or offline)
@@ -376,5 +383,5 @@
 {
     uint64 owner_guid = MAKE_NEW_GUID(auction->owner, 0, HIGHGUID_PLAYER);
-    Player *owner = objmgr.GetPlayer(owner_guid);
+    Player *owner = GetPlayer(owner_guid);
 
     uint32 owner_accId = 0;
@@ -415,5 +422,5 @@
 void ObjectMgr::SendAuctionExpiredMail( AuctionEntry * auction )
 {                                                           //return an item in auction to its owner by mail
-    Item *pItem = objmgr.GetAItem(auction->item_guidlow);
+    Item *pItem = GetAItem(auction->item_guidlow);
     if(!pItem)
     {
@@ -423,5 +430,5 @@
 
     uint64 owner_guid = MAKE_NEW_GUID(auction->owner, 0, HIGHGUID_PLAYER);
-    Player *owner = objmgr.GetPlayer(owner_guid);
+    Player *owner = GetPlayer(owner_guid);
 
     uint32 owner_accId = 0;
@@ -438,5 +445,5 @@
             owner->GetSession()->SendAuctionOwnerNotification( auction );
         else
-            objmgr.RemoveAItem(pItem->GetGUIDLow());        // we have to remove the item, before we delete it !!
+            RemoveAItem(pItem->GetGUIDLow());               // we have to remove the item, before we delete it !!
 
         MailItemsInfo mi;
@@ -451,5 +458,5 @@
     {
         CharacterDatabase.PExecute("DELETE FROM item_instance WHERE guid='%u'",pItem->GetGUIDLow());
-        objmgr.RemoveAItem(pItem->GetGUIDLow());            // we have to remove the item, before we delete it !!
+        RemoveAItem(pItem->GetGUIDLow());                   // we have to remove the item, before we delete it !!
         delete pItem;
     }
@@ -1737,5 +1744,5 @@
         uint32 item_template    = fields[1].GetUInt32();
 
-        ItemPrototype const *proto = objmgr.GetItemPrototype(item_template);
+        ItemPrototype const *proto = GetItemPrototype(item_template);
 
         if(!proto)
@@ -3688,5 +3695,5 @@
             case SCRIPT_COMMAND_QUEST_EXPLORED:
             {
-                Quest const* quest = objmgr.GetQuestTemplate(tmp.datalong);
+                Quest const* quest = GetQuestTemplate(tmp.datalong);
                 if(!quest)
                 {
@@ -3768,5 +3775,5 @@
 void ObjectMgr::LoadQuestEndScripts()
 {
-    objmgr.LoadScripts(sQuestEndScripts,  "quest_end_scripts");
+    LoadScripts(sQuestEndScripts,  "quest_end_scripts");
 
     // check ids
@@ -3780,5 +3787,5 @@
 void ObjectMgr::LoadQuestStartScripts()
 {
-    objmgr.LoadScripts(sQuestStartScripts,"quest_start_scripts");
+    LoadScripts(sQuestStartScripts,"quest_start_scripts");
 
     // check ids
@@ -3792,5 +3799,5 @@
 void ObjectMgr::LoadSpellScripts()
 {
-    objmgr.LoadScripts(sSpellScripts, "spell_scripts");
+    LoadScripts(sSpellScripts, "spell_scripts");
 
     // check ids
@@ -3827,5 +3834,5 @@
 void ObjectMgr::LoadEventScripts()
 {
-    objmgr.LoadScripts(sEventScripts, "event_scripts");
+    LoadScripts(sEventScripts, "event_scripts");
 
     std::set<uint32> evt_scripts;
@@ -4231,5 +4238,5 @@
         Player *pl = 0;
         if (serverUp)
-            pl = objmgr.GetPlayer((uint64)m->receiver);
+            pl = GetPlayer((uint64)m->receiver);
         if (pl && pl->m_mailsLoaded)
         {                                                   //this code will run very improbably (the time is between 4 and 5 am, in game is online a player, who has old mail
@@ -4504,5 +4511,5 @@
         {
             mount_entry = node->alliance_mount_type;
-            CreatureInfo const *ci = objmgr.GetCreatureTemplate(mount_entry);
+            CreatureInfo const *ci = GetCreatureTemplate(mount_entry);
             if(ci)
                 mount_id = ci->DisplayID_A;
@@ -4511,5 +4518,5 @@
         {
             mount_entry = node->horde_mount_type;
-            CreatureInfo const *ci = objmgr.GetCreatureTemplate(mount_entry);
+            CreatureInfo const *ci = GetCreatureTemplate(mount_entry);
             if(ci)
                 mount_id = ci->DisplayID_H;
@@ -4517,5 +4524,5 @@
     }
 
-    CreatureModelInfo const *minfo = objmgr.GetCreatureModelInfo(mount_id);
+    CreatureModelInfo const *minfo = GetCreatureModelInfo(mount_id);
     if(!minfo)
     {
@@ -4809,5 +4816,5 @@
         if(at.requiredItem)
         {
-            ItemPrototype const *pProto = objmgr.GetItemPrototype(at.requiredItem);
+            ItemPrototype const *pProto = GetItemPrototype(at.requiredItem);
             if(!pProto)
             {
@@ -4818,5 +4825,5 @@
         if(at.requiredItem2)
         {
-            ItemPrototype const *pProto = objmgr.GetItemPrototype(at.requiredItem2);
+            ItemPrototype const *pProto = GetItemPrototype(at.requiredItem2);
             if(!pProto)
             {
@@ -4828,5 +4835,5 @@
         if(at.heroicKey)
         {
-            ItemPrototype const *pProto = objmgr.GetItemPrototype(at.heroicKey);
+            ItemPrototype const *pProto = GetItemPrototype(at.heroicKey);
             if(!pProto)
             {
@@ -4838,5 +4845,5 @@
         if(at.heroicKey2)
         {
-            ItemPrototype const *pProto = objmgr.GetItemPrototype(at.heroicKey2);
+            ItemPrototype const *pProto = GetItemPrototype(at.heroicKey2);
             if(!pProto)
             {
@@ -5446,5 +5453,5 @@
     if(list0.empty() || list1.empty())
     {
-        CreatureInfo const *cinfo = objmgr.GetCreatureTemplate(entry);
+        CreatureInfo const *cinfo = GetCreatureTemplate(entry);
         char* petname = GetPetName(cinfo->family, sWorld.GetDefaultDbcLocale());
         if(!petname)
@@ -5540,8 +5547,8 @@
         repOnKill.repfaction2          = fields[2].GetUInt32();
         repOnKill.is_teamaward1        = fields[3].GetBool();
-        repOnKill.reputration_max_cap1 = fields[4].GetUInt32();
+        repOnKill.reputation_max_cap1  = fields[4].GetUInt32();
         repOnKill.repvalue1            = fields[5].GetInt32();
         repOnKill.is_teamaward2        = fields[6].GetBool();
-        repOnKill.reputration_max_cap2 = fields[7].GetUInt32();
+        repOnKill.reputation_max_cap2  = fields[7].GetUInt32();
         repOnKill.repvalue2            = fields[8].GetInt32();
         repOnKill.team_dependent       = fields[9].GetUInt8();
@@ -6098,10 +6105,10 @@
 }
 
-bool ObjectMgr::LoadMangosStrings(DatabaseType& db, char const* table, bool positive_entries)
+bool ObjectMgr::LoadMangosStrings(DatabaseType& db, char const* table, int32 min_value, int32 max_value)
 {
     // cleanup affected map part for reloading case
     for(MangosStringLocaleMap::iterator itr = mMangosStringLocaleMap.begin(); itr != mMangosStringLocaleMap.end();)
     {
-        if(itr->first > 0 && positive_entries || itr->first < 0 && !positive_entries)
+        if(itr->first >= min_value && itr->first <= max_value)
         {
             MangosStringLocaleMap::iterator itr2 = itr;
@@ -6122,10 +6129,12 @@
 
         sLog.outString("");
-        if(positive_entries)                                // error only in case internal strings
+        if(min_value > 0)                                   // error only in case internal strings
             sLog.outErrorDb(">> Loaded 0 mangos strings. DB table `%s` is empty. Cannot continue.",table);
         else
-            sLog.outString(">> Loaded 0 mangos strings. DB table `%s` is empty.",table);
+            sLog.outString(">> Loaded 0 string templates. DB table `%s` is empty.",table);
         return false;
     }
+
+    uint32 count = 0;
 
     barGoLink bar(result->GetRowCount());
@@ -6143,25 +6152,22 @@
             continue;
         }
-        else if(entry < 0)
-        {
-            if(positive_entries)
-            {
-                sLog.outString("Table `%s` contain unexpected negative entry %i, ignored.",table,entry);
-                continue;
-            }
-        }
-        else
-        {
-            if(!positive_entries)
-            {
-                sLog.outString("Table `%s` contain unexpected positive entry %i, ignored.",table,entry);
-                continue;
-            }
+        else if(entry < min_value || entry > max_value)
+        {
+            int32 start = min_value > 0 ? min_value : max_value;
+            int32 end   = min_value > 0 ? max_value : min_value;
+            sLog.outString("Table `%s` contain entry %i out of allowed range (%d - %d), ignored.",table,entry,start,end);
+            continue;
         }
 
         MangosStringLocale& data = mMangosStringLocaleMap[entry];
 
-        if(data.Content.size() < 1)
-            data.Content.resize(1);
+        if(data.Content.size() > 0)
+        {
+            sLog.outString("Table `%s` contain data for already loaded entry  %i (from another table?), ignored.",table,entry);
+            continue;
+        }
+
+        data.Content.resize(1);
+        ++count;
 
         // 0 -> default, idx in to idx+1
@@ -6189,5 +6195,9 @@
 
     sLog.outString();
-    sLog.outString( ">> Loaded %u MaNGOS strings from table %s", mMangosStringLocaleMap.size(),table);
+    if(min_value > 0)                                       // internal mangos strings
+        sLog.outString( ">> Loaded %u MaNGOS strings from table %s", count,table);
+    else
+        sLog.outString( ">> Loaded %u string templates from %s", count,table);
+
     return true;
 }
@@ -6500,4 +6510,334 @@
 }
 
+void ObjectMgr::LoadGameTele()
+{
+    m_GameTeleMap.clear();                                  // for relaod case
+
+    uint32 count = 0;
+    QueryResult *result = WorldDatabase.Query("SELECT id, position_x, position_y, position_z, orientation, map, name FROM game_tele");
+
+    if( !result )
+    {
+        barGoLink bar( 1 );
+
+        bar.step();
+
+        sLog.outString();
+        sLog.outErrorDb(">> Loaded `game_tele`, table is empty!");
+        return;
+    }
+
+    barGoLink bar( result->GetRowCount() );
+
+    do
+    {
+        bar.step();
+
+        Field *fields = result->Fetch();
+
+        uint32 id         = fields[0].GetUInt32();
+
+        GameTele gt;
+
+        gt.position_x     = fields[1].GetFloat();
+        gt.position_y     = fields[2].GetFloat();
+        gt.position_z     = fields[3].GetFloat();
+        gt.orientation    = fields[4].GetFloat();
+        gt.mapId          = fields[5].GetUInt32();
+        gt.name           = fields[6].GetCppString();
+
+        if(!MapManager::IsValidMapCoord(gt.mapId,gt.position_x,gt.position_y,gt.position_z,gt.orientation))
+        {
+            sLog.outErrorDb("Wrong position for id %u (name: %s) in `game_tele` table, ignoring.",id,gt.name.c_str());
+            continue;
+        }
+
+        if(!Utf8toWStr(gt.name,gt.wnameLow))
+        {
+            sLog.outErrorDb("Wrong UTF8 name for id %u in `game_tele` table, ignoring.",id);
+            continue;
+        }
+
+        wstrToLower( gt.wnameLow );
+
+        m_GameTeleMap[id] = gt;
+
+        ++count;
+    }
+    while (result->NextRow());
+
+    delete result;
+
+    sLog.outString();
+    sLog.outString( ">> Loaded %u game tele's", count );
+}
+
+GameTele const* ObjectMgr::GetGameTele(std::string name) const
+{
+    // explicit name case
+    std::wstring wname;
+    if(!Utf8toWStr(name,wname))
+        return false;
+
+    // converting string that we try to find to lower case
+    wstrToLower( wname );
+
+    for(GameTeleMap::const_iterator itr = m_GameTeleMap.begin(); itr != m_GameTeleMap.end(); ++itr)
+        if(itr->second.wnameLow == wname)
+            return &itr->second;
+
+    return NULL;
+}
+
+bool ObjectMgr::AddGameTele(GameTele& tele)
+{
+    // find max id
+    uint32 new_id = 0;
+    for(GameTeleMap::const_iterator itr = m_GameTeleMap.begin(); itr != m_GameTeleMap.end(); ++itr)
+        if(itr->first > new_id)
+            new_id = itr->first;
+    
+    // use next
+    ++new_id;
+
+    if(!Utf8toWStr(tele.name,tele.wnameLow))
+        return false;
+
+    wstrToLower( tele.wnameLow );
+
+    m_GameTeleMap[new_id] = tele;
+
+    return WorldDatabase.PExecuteLog("INSERT INTO game_tele (id,position_x,position_y,position_z,orientation,map,name) VALUES (%u,%f,%f,%f,%f,%d,'%s')",
+        new_id,tele.position_x,tele.position_y,tele.position_z,tele.orientation,tele.mapId,tele.name.c_str());
+}
+
+bool ObjectMgr::DeleteGameTele(std::string name)
+{
+    // explicit name case
+    std::wstring wname;
+    if(!Utf8toWStr(name,wname))
+        return false;
+
+    // converting string that we try to find to lower case
+    wstrToLower( wname );
+
+    for(GameTeleMap::iterator itr = m_GameTeleMap.begin(); itr != m_GameTeleMap.end(); ++itr)
+    {
+        if(itr->second.wnameLow == wname)
+        {
+            WorldDatabase.PExecuteLog("DELETE FROM game_tele WHERE name = '%s'",itr->second.name.c_str());
+            m_GameTeleMap.erase(itr);
+            return true;
+        }
+    }
+
+    return false;
+}
+
+void ObjectMgr::LoadTrainerSpell()
+{
+    // For reload case 
+    for (CacheTrainerSpellMap::iterator itr = m_mCacheTrainerSpellMap.begin(); itr != m_mCacheTrainerSpellMap.end(); ++itr)
+        itr->second.Clear();
+    m_mCacheTrainerSpellMap.clear();
+
+    QueryResult *result = WorldDatabase.PQuery("SELECT entry, spell,spellcost,reqskill,reqskillvalue,reqlevel FROM npc_trainer");
+
+    if( !result )
+    {
+        barGoLink bar( 1 );
+
+        bar.step();
+
+        sLog.outString();
+        sLog.outErrorDb(">> Loaded `npc_trainer`, table is empty!");
+        return;
+    }
+
+    barGoLink bar( result->GetRowCount() );
+
+    uint32 count = 0,entry,spell;
+    do
+    {
+        bar.step();
+
+        Field* fields = result->Fetch();
+
+        entry  = fields[0].GetUInt32();
+        spell  = fields[1].GetUInt32();
+
+        if(!GetCreatureTemplate(entry))
+        {
+            sLog.outErrorDb("Table `npc_trainer` have entry for not existed creature template (Entry: %u), ignore", entry);
+            continue;
+        }
+
+        SpellEntry const *spellinfo = sSpellStore.LookupEntry(spell);
+        if(!spellinfo)
+        {
+            sLog.outErrorDb("Table `npc_trainer` for Trainer (Entry: %u ) has non existing spell %u, ignore", entry,spell);
+            continue;
+        }
+
+        if(!SpellMgr::IsSpellValid(spellinfo))
+        {
+            sLog.outErrorDb("Table `npc_trainer` for Trainer (Entry: %u) has broken learning spell %u, ignore", entry, spell);
+            continue;
+        }
+
+        TrainerSpell* pTrainerSpell = new TrainerSpell();
+        pTrainerSpell->spell         = spell;
+        pTrainerSpell->spellcost     = fields[2].GetUInt32();
+        pTrainerSpell->reqskill      = fields[3].GetUInt32();
+        pTrainerSpell->reqskillvalue = fields[4].GetUInt32();
+        pTrainerSpell->reqlevel      = fields[5].GetUInt32();
+
+        if(!pTrainerSpell->reqlevel)
+            pTrainerSpell->reqlevel = spellinfo->spellLevel;
+
+
+        TrainerSpellData& data = m_mCacheTrainerSpellMap[entry];
+
+        if(SpellMgr::IsProfessionSpell(spell))
+            data.trainerType = 2;
+
+        data.spellList.push_back(pTrainerSpell);
+        ++count;
+
+    } while (result->NextRow());
+    delete result;
+
+    sLog.outString();
+    sLog.outString( ">> Loaded Trainers %d", count );
+}
+
+void ObjectMgr::LoadVendors()
+{
+    // For reload case 
+    for (CacheVendorItemMap::iterator itr = m_mCacheVendorItemMap.begin(); itr != m_mCacheVendorItemMap.end(); ++itr)
+    {
+        for (VendorItemList::iterator itr2 = itr->second.begin(); itr2 != itr->second.end(); ++itr2)
+            delete (*itr2);
+    }
+    m_mCacheVendorItemMap.clear();
+
+    QueryResult *result = WorldDatabase.PQuery("SELECT entry, item, maxcount, incrtime, ExtendedCost FROM npc_vendor");
+    if( !result )
+    {
+        barGoLink bar( 1 );
+
+        bar.step();
+
+        sLog.outString();
+        sLog.outErrorDb(">> Loaded `npc_vendor`, table is empty!");
+        return;
+    }
+
+    barGoLink bar( result->GetRowCount() );
+
+    uint32 count = 0;
+    uint32 entry, item_id, ExtendedCost;
+    do
+    {
+        bar.step();
+        Field* fields = result->Fetch();
+
+        entry = fields[0].GetUInt32();
+        if(!GetCreatureTemplate(entry))
+        {
+            sLog.outErrorDb("Table `npc_vendor` have data for not existed creature template (Entry: %u), ignore", entry);
+            continue;
+        }
+
+        item_id  = fields[1].GetUInt32();
+        if(!GetItemPrototype(item_id))
+        {
+            sLog.outErrorDb("Table `npc_vendor` for Vendor (Entry: %u) have in item list non-existed item (%u), ignore",entry,item_id);
+            continue;
+        }
+
+        ExtendedCost = fields[4].GetUInt32();
+        if(ExtendedCost && !sItemExtendedCostStore.LookupEntry(ExtendedCost))
+        {
+            sLog.outErrorDb("Table `npc_vendor` have Item (Entry: %u) with wrong ExtendedCost (%u) for vendor (%u), ignore",item_id,ExtendedCost,entry);
+            continue;
+        }
+
+        VendorItemList& vList = m_mCacheVendorItemMap[entry];
+
+        if(vList.size() >= MAX_VENDOR_ITEMS)
+        {
+            sLog.outErrorDb( "Table `npc_vendor` has too many items (%u >= %i) for vendor (Entry: %u), ignore", vList.size(), MAX_VENDOR_ITEMS, entry);
+            continue;
+        }
+
+        VendorItem* pVendorItem = new VendorItem();
+        pVendorItem->item         = item_id;
+        pVendorItem->maxcount     = fields[2].GetUInt32();
+        pVendorItem->incrtime     = fields[3].GetUInt32();
+        pVendorItem->ExtendedCost = ExtendedCost;
+
+        vList.push_back(pVendorItem);
+        ++count;
+
+    } while (result->NextRow());
+    delete result;
+
+    sLog.outString();
+    sLog.outString( ">> Loaded %d Vendors ", count );
+}
+
+void ObjectMgr::LoadNpcTextId()
+{
+
+    m_mCacheNpcTextIdMap.clear();
+
+    QueryResult* result = WorldDatabase.PQuery("SELECT npc_guid, textid FROM npc_gossip");
+    if( !result )
+    {
+        barGoLink bar( 1 );
+
+        bar.step();
+
+        sLog.outString();
+        sLog.outErrorDb(">> Loaded `npc_gossip`, table is empty!");
+        return;
+    }
+
+    barGoLink bar( result->GetRowCount() );
+
+    uint32 count = 0;
+    uint32 guid,textid;
+    do
+    {
+        bar.step();
+
+        Field* fields = result->Fetch();
+
+        guid   = fields[0].GetUInt32();
+        textid = fields[1].GetUInt32();
+
+        if (!GetCreatureData(guid))
+        {
+            sLog.outErrorDb("Table `npc_gossip` have not existed creature (GUID: %u) entry, ignore. ",guid);
+            continue;
+        }
+        if (!GetGossipText(textid))
+        {
+            sLog.outErrorDb("Table `npc_gossip` for creature (GUID: %u) have wrong Textid (%u), ignore. ", guid, textid);
+            continue;
+        }
+
+        m_mCacheNpcTextIdMap[guid] = textid ;
+        ++count;
+
+    } while (result->NextRow());
+    delete result;
+
+    sLog.outString();
+    sLog.outString( ">> Loaded %d NpcTextId ", count );
+}
+
+// Functions for scripting access
 const char* GetAreaTriggerScriptNameById(uint32 id)
 {
@@ -6505,8 +6845,14 @@
 }
 
-
-bool LoadMangosStrings(DatabaseType& db, char const* table)
-{
+bool LoadMangosStrings(DatabaseType& db, char const* table,int32 start_value, int32 end_value)
+{
+    if(start_value >= 0 || start_value <= end_value)        // start/end reversed for negative values
+    {
+        sLog.outError("Table '%s' attempt loaded with invalid range (%d - %d), use (%d - %d) instead.",table,start_value,end_value,-1,std::numeric_limits<int32>::min());
+        start_value = -1;
+        end_value = std::numeric_limits<int32>::min();
+    }
+
     // for scripting localized strings allowed use _only_ negative entries
-    return objmgr.LoadMangosStrings(db,table,false);
-}
+    return objmgr.LoadMangosStrings(db,table,end_value,start_value);
+}
Index: trunk/src/game/Language.h
===================================================================
--- trunk/src/game/Language.h (revision 2)
+++ trunk/src/game/Language.h (revision 6)
@@ -154,6 +154,6 @@
     LANG_COMMAND_TELE_NOTFOUND          = 164,
     LANG_COMMAND_TELE_PARAMETER         = 165,
-    LANG_COMMAND_TELE_NOREQUEST         = 166,
-    LANG_COMMAND_TELE_NOLOCATION        = 167,
+    LANG_COMMAND_TELE_NOLOCATION        = 166,
+    //                                    167               // not used
     LANG_COMMAND_TELE_LOCATION          = 168,
 
@@ -301,4 +301,7 @@
     LANG_COMMAND_FACTION_NOREP_ERROR    = 326,
     LANG_FACTION_NOREPUTATION           = 327,
+    LANG_LOOKUP_PLAYER_ACCOUNT          = 328,
+    LANG_LOOKUP_PLAYER_CHARACTER        = 329,
+    LANG_NO_PLAYERS_FOUND               = 330,
 
     // Room for more level 2
@@ -376,5 +379,5 @@
     LANG_COMMAND_TP_ADDEDERR            = 464,
     LANG_COMMAND_TP_DELETED             = 465,
-    LANG_COMMAND_TP_DELETEERR           = 466,
+    //                                    466,              // not used
 
     LANG_COMMAND_TARGET_LISTAURAS       = 467,
Index: trunk/src/trinitycore/WorldRunnable.cpp
===================================================================
--- trunk/src/trinitycore/WorldRunnable.cpp (revision 2)
+++ trunk/src/trinitycore/WorldRunnable.cpp (revision 6)
@@ -21,4 +21,5 @@
 */
 
+#include "WorldSocketMgr.h"
 #include "Common.h"
 #include "World.h"
@@ -75,4 +76,6 @@
     sWorld.KickAll();                                       // save and kick all players
     sWorld.UpdateSessions( 1 );                             // real players unload required UpdateSessions call
+    
+    sWorldSocketMgr->StopNetwork();
 
     MapManager::Instance().UnloadAll();                     // unload all grids (including locked in memory)
Index: trunk/src/trinitycore/Makefile.am
===================================================================
--- trunk/src/trinitycore/Makefile.am (revision 2)
+++ trunk/src/trinitycore/Makefile.am (revision 6)
@@ -25,4 +25,6 @@
 $(POSTGRE_INCLUDES) \
 -I$(top_srcdir)/dep/include \
+-I$(top_srcdir)/dep/ACE_wrappers \
+-I$(top_builddir)/dep/ACE_wrappers \
 -I$(top_srcdir)/src/shared \
 -I$(top_srcdir)/src/framework \
@@ -50,4 +52,5 @@
 $(top_builddir)/dep/src/sockets/libmangossockets.a \
 $(top_builddir)/dep/src/zthread/libZThread.la \
+$(top_builddir)/dep/ACE_wrappers/ace/libACE.la \
 $(top_builddir)/dep/src/g3dlite/libg3dlite.a
 
Index: trunk/src/trinitycore/Master.cpp
===================================================================
--- trunk/src/trinitycore/Master.cpp (revision 2)
+++ trunk/src/trinitycore/Master.cpp (revision 6)
@@ -21,14 +21,14 @@
 */
 
+#include <ace/OS_NS_signal.h>
+
+#include "WorldSocketMgr.h"
+#include "Common.h"
 #include "Master.h"
-#include "sockets/SocketHandler.h"
-#include "sockets/ListenSocket.h"
 #include "WorldSocket.h"
-#include "WorldSocketMgr.h"
 #include "WorldRunnable.h"
 #include "World.h"
 #include "Log.h"
 #include "Timer.h"
-#include <signal.h>
 #include "Policies/SingletonImp.h"
 #include "SystemConfig.h"
@@ -44,4 +44,6 @@
 #include "sockets/Parse.h"
 #include "sockets/Socket.h"
+#include "sockets/SocketHandler.h"
+#include "sockets/ListenSocket.h"
 
 #ifdef WIN32
@@ -80,16 +82,18 @@
             //DEBUG_LOG("anti-freeze: time=%u, counters=[%u; %u]",curtime,Master::m_masterLoopCounter,World::m_worldLoopCounter);
 
-            // normal work
-            if(m_loops != Master::m_masterLoopCounter)
-            {
-                m_lastchange = curtime;
-                m_loops = Master::m_masterLoopCounter;
-            }
-            // possible freeze 
-            else if(getMSTimeDiff(m_lastchange,curtime) > _delaytime)
-            {
-                sLog.outError("Main/Sockets Thread hangs, kicking out server!");
-                *((uint32 volatile*)NULL) = 0;                       // bang crash
-            }
+            // There is no Master anymore 
+            // TODO: clear the rest of the code 
+//            // normal work
+//            if(m_loops != Master::m_masterLoopCounter)
+//            {
+//                m_lastchange = curtime;
+//                m_loops = Master::m_masterLoopCounter;
+//            }
+//            // possible freeze 
+//            else if(getMSTimeDiff(m_lastchange,curtime) > _delaytime)
+//            {
+//                sLog.outError("Main/Sockets Thread hangs, kicking out server!");
+//                *((uint32 volatile*)NULL) = 0;                       // bang crash
+//            }
 
             // normal work
@@ -110,4 +114,75 @@
 };
 
+class RARunnable : public ZThread::Runnable
+{
+public:
+  uint32 numLoops, loopCounter;
+
+  RARunnable ()
+  {
+    uint32 socketSelecttime = sWorld.getConfig (CONFIG_SOCKET_SELECTTIME);
+    numLoops = (sConfig.GetIntDefault ("MaxPingTime", 30) * (MINUTE * 1000000 / socketSelecttime));
+    loopCounter = 0;
+  }
+
+  void
+  checkping ()
+  {
+    // ping if need
+    if ((++loopCounter) == numLoops)
+      {
+        loopCounter = 0;
+        sLog.outDetail ("Ping MySQL to keep connection alive");
+        delete WorldDatabase.Query ("SELECT 1 FROM command LIMIT 1");
+        delete loginDatabase.Query ("SELECT 1 FROM realmlist LIMIT 1");
+        delete CharacterDatabase.Query ("SELECT 1 FROM bugreport LIMIT 1");
+      }
+  }
+
+  void
+  run (void)
+  {
+    SocketHandler h;
+
+    // Launch the RA listener socket
+    ListenSocket<RASocket> RAListenSocket (h);
+    bool usera = sConfig.GetBoolDefault ("Ra.Enable", false);
+
+    if (usera)
+      {
+        port_t raport = sConfig.GetIntDefault ("Ra.Port", 3443);
+        std::string stringip = sConfig.GetStringDefault ("Ra.IP", "0.0.0.0");
+        ipaddr_t raip;
+        if (!Utility::u2ip (stringip, raip))
+          sLog.outError ("MaNGOS RA can not bind to ip %s", stringip.c_str ());
+        else if (RAListenSocket.Bind (raip, raport))
+          sLog.outError ("MaNGOS RA can not bind to port %d on %s", raport, stringip.c_str ());
+        else
+          {
+            h.Add (&RAListenSocket);
+
+            sLog.outString ("Starting Remote access listner on port %d on %s", raport, stringip.c_str ());
+          }
+      }
+
+    // Socket Selet time is in microseconds , not miliseconds!!
+    uint32 socketSelecttime = sWorld.getConfig (CONFIG_SOCKET_SELECTTIME);
+
+    // if use ra spend time waiting for io, if not use ra ,just sleep
+    if (usera)
+      while (!World::m_stopEvent)
+        {
+          h.Select (0, socketSelecttime);
+          checkping ();
+        }
+    else
+      while (!World::m_stopEvent)
+        {
+          ZThread::Thread::sleep (static_cast<unsigned long> (socketSelecttime / 1000));
+          checkping ();
+        }
+  }
+};
+
 Master::Master()
 {
@@ -155,19 +230,4 @@
     sWorld.SetInitialWorldSettings();
 
-    ///- Launch the world listener socket
-    port_t wsport = sWorld.getConfig(CONFIG_PORT_WORLD);
-    std::string bind_ip = sConfig.GetStringDefault("BindIP", "0.0.0.0");
-
-    SocketHandler h;
-    ListenSocket<WorldSocket> worldListenSocket(h);
-    if (worldListenSocket.Bind(bind_ip.c_str(),wsport))
-    {
-        clearOnlineAccounts();
-        sLog.outError("MaNGOS cannot bind to %s:%d",bind_ip.c_str(), wsport);
-        return 1;
-    }
-
-    h.Add(&worldListenSocket);
-
     ///- Catch termination signals
     _HookSignals();
@@ -189,23 +249,6 @@
         ZThread::Thread td1(new CliRunnable);
     }
-
-    ///- Launch the RA listener socket
-    ListenSocket<RASocket> RAListenSocket(h);
-    if (sConfig.GetBoolDefault("Ra.Enable", false))
-    {
-        port_t raport = sConfig.GetIntDefault( "Ra.Port", 3443 );
-        std::string stringip = sConfig.GetStringDefault( "Ra.IP", "0.0.0.0" );
-        ipaddr_t raip;
-        if(!Utility::u2ip(stringip, raip))
-            sLog.outError( "MaNGOS RA can not bind to ip %s", stringip.c_str());
-        else if (RAListenSocket.Bind(raip, raport))
-            sLog.outError( "MaNGOS RA can not bind to port %d on %s", raport, stringip.c_str());
-        else
-        {
-            h.Add(&RAListenSocket);
-
-            sLog.outString("Starting Remote access listner on port %d on %s", raport, stringip.c_str());
-        }
-    }
+    
+    ZThread::Thread td2(new RARunnable);
 
     ///- Handle affinity for multiple processors and process priority on Windows
@@ -272,32 +315,17 @@
     }
 
-    ///- Wait for termination signal
-    while (!World::m_stopEvent)
-    {
-        ++Master::m_masterLoopCounter;
-#ifdef WIN32
-        if (m_ServiceStatus == 0) World::m_stopEvent = true;
-        while (m_ServiceStatus == 2) Sleep(1000);
-#endif
-        if (realPrevTime > realCurrTime)
-            realPrevTime = 0;
-
-        realCurrTime = getMSTime();
-        sWorldSocketMgr.Update( getMSTimeDiff(realPrevTime,realCurrTime) );
-        realPrevTime = realCurrTime;
-
-        h.Select(0, socketSelecttime);
-
-        // ping if need
-        if( (++loopCounter) == numLoops )
-        {
-            loopCounter = 0;
-            sLog.outDetail("Ping MySQL to keep connection alive");
-            delete WorldDatabase.Query("SELECT 1 FROM command LIMIT 1");
-            delete loginDatabase.Query("SELECT 1 FROM realmlist LIMIT 1");
-            delete CharacterDatabase.Query("SELECT 1 FROM bugreport LIMIT 1");
-        }
-    }
-
+    ///- Launch the world listener socket
+  port_t wsport = sWorld.getConfig (CONFIG_PORT_WORLD);
+  std::string bind_ip = sConfig.GetStringDefault ("BindIP", "0.0.0.0");
+
+  if (sWorldSocketMgr->StartNetwork (wsport, bind_ip.c_str ()) == -1)
+    {
+      sLog.outError ("Failed to start network");
+      World::m_stopEvent = true;
+      // go down and shutdown the server
+    }
+
+    sWorldSocketMgr->Wait ();
+    
     // set server offline
     loginDatabase.PExecute("UPDATE realmlist SET color = 2 WHERE id = '%d'",realmID);
@@ -309,5 +337,6 @@
     // since worldrunnable uses them, it will crash if unloaded after master
     t.wait();
-
+    td2.wait ();
+    
     ///- Clean database before leaving
     clearOnlineAccounts();
Index: trunk/src/trinitycore/TrinityCore.rc
===================================================================
--- trunk/src/trinitycore/TrinityCore.rc (revision 2)
+++ trunk/src/trinitycore/TrinityCore.rc (revision 6)
@@ -53,6 +53,6 @@
 
 VS_VERSION_INFO VERSIONINFO
- FILEVERSION 0,1,6700,670
- PRODUCTVERSION 0,1,6700,670
+ FILEVERSION 0,2,6721,676
+ PRODUCTVERSION 0,2,6721,676
  FILEFLAGSMASK 0x17L
 #ifdef _DEBUG
@@ -70,10 +70,10 @@
         BEGIN
             VALUE "FileDescription", "TrinityCore"
-            VALUE "FileVersion", "0, 1, 6700, 670"
+            VALUE "FileVersion", "0, 2, 6721, 676"
             VALUE "InternalName", "TrinityCore"
             VALUE "LegalCopyright", "Copyright (C) 2008"
             VALUE "OriginalFilename", "TrinityCore.exe"
             VALUE "ProductName", "TrinityCore"
-            VALUE "ProductVersion", "0, 1, 6700, 670"
+            VALUE "ProductVersion", "0, 2, 6721, 676"
         END
     END
Index: trunk/src/bindings/scripts/VC71/71ScriptDev2.vcproj
===================================================================
--- trunk/src/bindings/scripts/VC71/71ScriptDev2.vcproj (revision 2)
+++ trunk/src/bindings/scripts/VC71/71ScriptDev2.vcproj (revision 6)
@@ -21,5 +21,5 @@
 				Name="VCCLCompilerTool"
 				Optimization="0"
-				AdditionalIncludeDirectories="..\..\..\..\dep\include\;..\..\..\shared\;..\..\..\framework\;..\..\..\game\;..\include\"
+				AdditionalIncludeDirectories="..\..\..\..\dep\include\;..\..\..\shared\;..\..\..\framework\;..\..\..\game\;..\include\;..\..\..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="WIN32;_DEBUG;MANGOS_DEBUG;_WINDOWS;_USRDLL;SCRIPT"
 				MinimalRebuild="TRUE"
@@ -74,5 +74,5 @@
 			<Tool
 				Name="VCCLCompilerTool"
-				AdditionalIncludeDirectories="..\..\..\..\dep\include\;..\..\..\shared\;..\..\..\framework\;..\..\..\game\;..\include\"
+				AdditionalIncludeDirectories="..\..\..\..\dep\include\;..\..\..\shared\;..\..\..\framework\;..\..\..\game\;..\include\;..\..\..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;SCRIPT"
 				RuntimeLibrary="0"
Index: trunk/src/bindings/scripts/VC80/80ScriptDev2.vcproj
===================================================================
--- trunk/src/bindings/scripts/VC80/80ScriptDev2.vcproj (revision 2)
+++ trunk/src/bindings/scripts/VC80/80ScriptDev2.vcproj (revision 6)
@@ -46,5 +46,5 @@
 				Name="VCCLCompilerTool"
 				Optimization="0"
-				AdditionalIncludeDirectories="..\..\..\..\dep\include\;..\..\..\shared\;..\..\..\framework\;..\..\..\game\;..\include\"
+				AdditionalIncludeDirectories="..\..\..\..\dep\include\;..\..\..\shared\;..\..\..\framework\;..\..\..\game\;..\include\;..\..\..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="WIN32;_DEBUG;MANGOS_DEBUG;_WINDOWS;_USRDLL;SCRIPT"
 				MinimalRebuild="true"
@@ -132,5 +132,5 @@
 				Name="VCCLCompilerTool"
 				Optimization="0"
-				AdditionalIncludeDirectories="..\..\..\..\dep\include\;..\..\..\shared\;..\..\..\framework\;..\..\..\game\;..\include\"
+				AdditionalIncludeDirectories="..\..\..\..\dep\include\;..\..\..\shared\;..\..\..\framework\;..\..\..\game\;..\include\;..\..\..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="WIN32;_DEBUG;MANGOS_DEBUG;_WINDOWS;_USRDLL;SCRIPT"
 				MinimalRebuild="true"
@@ -217,5 +217,5 @@
 				Name="VCCLCompilerTool"
 				AdditionalOptions="/MP"
-				AdditionalIncludeDirectories="..\..\..\..\dep\include\;..\..\..\shared\;..\..\..\framework\;..\..\..\game\;..\include\"
+				AdditionalIncludeDirectories="..\..\..\..\dep\include\;..\..\..\shared\;..\..\..\framework\;..\..\..\game\;..\include\;..\..\..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;SCRIPT"
 				RuntimeLibrary="0"
@@ -304,5 +304,5 @@
 				Name="VCCLCompilerTool"
 				AdditionalOptions="/MP"
-				AdditionalIncludeDirectories="..\..\..\..\dep\include\;..\..\..\shared\;..\..\..\framework\;..\..\..\game\;..\include\"
+				AdditionalIncludeDirectories="..\..\..\..\dep\include\;..\..\..\shared\;..\..\..\framework\;..\..\..\game\;..\include\;..\..\..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;SCRIPT"
 				RuntimeLibrary="0"
Index: trunk/src/bindings/scripts/VC90/90ScriptDev2.vcproj
===================================================================
--- trunk/src/bindings/scripts/VC90/90ScriptDev2.vcproj (revision 2)
+++ trunk/src/bindings/scripts/VC90/90ScriptDev2.vcproj (revision 6)
@@ -47,5 +47,5 @@
 				Name="VCCLCompilerTool"
 				Optimization="0"
-				AdditionalIncludeDirectories="..\..\..\..\dep\include\;..\..\..\shared\;..\..\..\framework\;..\..\..\game\;..\include\"
+				AdditionalIncludeDirectories="..\..\..\..\dep\include\;..\..\..\shared\;..\..\..\framework\;..\..\..\game\;..\include\;..\..\..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="WIN32;_DEBUG;MANGOS_DEBUG;_WINDOWS;_USRDLL;SCRIPT"
 				MinimalRebuild="true"
@@ -132,5 +132,5 @@
 				Name="VCCLCompilerTool"
 				Optimization="0"
-				AdditionalIncludeDirectories="..\..\..\..\dep\include\;..\..\..\shared\;..\..\..\framework\;..\..\..\game\;..\include\"
+				AdditionalIncludeDirectories="..\..\..\..\dep\include\;..\..\..\shared\;..\..\..\framework\;..\..\..\game\;..\include\;..\..\..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="WIN32;_DEBUG;MANGOS_DEBUG;_WINDOWS;_USRDLL;SCRIPT"
 				MinimalRebuild="true"
@@ -216,5 +216,5 @@
 				Name="VCCLCompilerTool"
 				AdditionalOptions="/MP"
-				AdditionalIncludeDirectories="..\..\..\..\dep\include\;..\..\..\shared\;..\..\..\framework\;..\..\..\game\;..\include\"
+				AdditionalIncludeDirectories="..\..\..\..\dep\include\;..\..\..\shared\;..\..\..\framework\;..\..\..\game\;..\include\;..\..\..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;SCRIPT"
 				MinimalRebuild="false"
@@ -303,5 +303,5 @@
 				Name="VCCLCompilerTool"
 				AdditionalOptions="/MP"
-				AdditionalIncludeDirectories="..\..\..\..\dep\include\;..\..\..\shared\;..\..\..\framework\;..\..\..\game\;..\include\"
+				AdditionalIncludeDirectories="..\..\..\..\dep\include\;..\..\..\shared\;..\..\..\framework\;..\..\..\game\;..\include\;..\..\..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;SCRIPT"
 				MinimalRebuild="false"
Index: trunk/src/bindings/scripts/include/sc_gossip.h
===================================================================
--- trunk/src/bindings/scripts/include/sc_gossip.h (revision 2)
+++ trunk/src/bindings/scripts/include/sc_gossip.h (revision 6)
@@ -1,5 +1,5 @@
 /* Copyright (C) 2006 - 2008 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/>
-* This program is free software licensed under GPL version 2
-* Please see the included DOCS/LICENSE.TXT for more information */
+ * This program is free software licensed under GPL version 2
+ * Please see the included DOCS/LICENSE.TXT for more information */
 
 #ifndef SC_PLAYER_H
@@ -32,10 +32,10 @@
 
 #define GOSSIP_TEXT_ALTERACVALLEY       "Alterac Valley"
-#define GOSSIP_TEXT_ARATHIBASIN         "Arathi Basin" 
+#define GOSSIP_TEXT_ARATHIBASIN         "Arathi Basin"
 #define GOSSIP_TEXT_WARSONGULCH         "Warsong Gulch"
 #define GOSSIP_TEXT_ARENA               "Arena"
 #define GOSSIP_TEXT_EYEOFTHESTORM       "Eye of The Storm"
 
-#define GOSSIP_TEXT_DRUID               "Druid" 
+#define GOSSIP_TEXT_DRUID               "Druid"
 #define GOSSIP_TEXT_HUNTER              "Hunter"
 #define GOSSIP_TEXT_PRIEST              "Priest"
@@ -132,6 +132,6 @@
 // e - Text to be displayed in pop up box
 // f - Money value in pop up box
-#define ADD_GOSSIP_ITEM(a,b,c,d)   PlayerTalkClass->GetGossipMenu()->AddMenuItem(a,b,c,d,"",0)
-#define ADD_GOSSIP_ITEM_EXTENDED(a,b,c,d,e,f)   PlayerTalkClass->GetGossipMenu()->AddMenuItem(a,b,c,d,e,f)
+#define ADD_GOSSIP_ITEM(a,b,c,d)   PlayerTalkClass->GetGossipMenu().AddMenuItem(a,b,c,d,"",0)
+#define ADD_GOSSIP_ITEM_EXTENDED(a,b,c,d,e,f,g)   PlayerTalkClass->GetGossipMenu().AddMenuItem(a,b,c,d,e,f,g)
 
 // This fuction Sends the current menu to show to client, a - NPCTEXTID(uint32) , b - npc guid(uint64)
Index: trunk/src/bindings/scripts/include/sc_creature.cpp
===================================================================
--- trunk/src/bindings/scripts/include/sc_creature.cpp (revision 2)
+++ trunk/src/bindings/scripts/include/sc_creature.cpp (revision 6)
@@ -26,5 +26,5 @@
     if( !m_creature->getVictim() && who->isTargetableForAttack() && ( m_creature->IsHostileTo( who )) && who->isInAccessablePlaceFor(m_creature) )
     {
-        if (m_creature->GetDistanceZ(who) > CREATURE_Z_ATTACK_RANGE)
+        if (!m_creature->canFly() && m_creature->GetDistanceZ(who) > CREATURE_Z_ATTACK_RANGE)
             return;
 
@@ -576,5 +576,5 @@
     if( !m_creature->getVictim() && who->isTargetableForAttack() && ( m_creature->IsHostileTo( who )) && who->isInAccessablePlaceFor(m_creature) )
     {
-        if (m_creature->GetDistanceZ(who) > CREATURE_Z_ATTACK_RANGE)
+        if (!m_creature->canFly() && m_creature->GetDistanceZ(who) > CREATURE_Z_ATTACK_RANGE)
             return;
 
Index: trunk/src/bindings/scripts/scripts/npc/npc_escortAI.h
===================================================================
--- trunk/src/bindings/scripts/scripts/npc/npc_escortAI.h (revision 2)
+++ trunk/src/bindings/scripts/scripts/npc/npc_escortAI.h (revision 6)
Index: trunk/src/bindings/scripts/scripts/npc/npc_innkeeper.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/npc/npc_innkeeper.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/npc/npc_innkeeper.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/npc/npcs_special.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/npc/npcs_special.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/npc/npcs_special.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/npc/npc_escortAI.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/npc/npc_escortAI.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/npc/npc_escortAI.cpp (revision 6)
@@ -63,5 +63,5 @@
     if( !m_creature->getVictim() && who->isTargetableForAttack() && ( m_creature->IsHostileTo( who )) && who->isInAccessablePlaceFor(m_creature) )
     {
-        if (m_creature->GetDistanceZ(who) > CREATURE_Z_ATTACK_RANGE)
+        if (!m_creature->canFly() && m_creature->GetDistanceZ(who) > CREATURE_Z_ATTACK_RANGE)
             return;
 
Index: trunk/src/bindings/scripts/scripts/npc/npc_professions.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/npc/npc_professions.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/npc/npc_professions.cpp (revision 6)
@@ -497,15 +497,15 @@
         {
             case 22427:                                     //Zarevhi
-                player->ADD_GOSSIP_ITEM_EXTENDED( 0, GOSSIP_UNLEARN_TRANSMUTE, GOSSIP_SENDER_CHECK, action, BOX_UNLEARN_ALCHEMY_SPEC, DoHighUnlearnCost(player));
+                player->ADD_GOSSIP_ITEM_EXTENDED( 0, GOSSIP_UNLEARN_TRANSMUTE, GOSSIP_SENDER_CHECK, action, BOX_UNLEARN_ALCHEMY_SPEC, DoHighUnlearnCost(player),false);
                                                             //unknown textID ()
                 player->SEND_GOSSIP_MENU(_Creature->GetNpcTextId(), _Creature->GetGUID());
                 break;
             case 19052:                                     //Lorokeem
-                player->ADD_GOSSIP_ITEM_EXTENDED( 0, GOSSIP_UNLEARN_ELIXIR, GOSSIP_SENDER_CHECK, action,    BOX_UNLEARN_ALCHEMY_SPEC, DoHighUnlearnCost(player));
+                player->ADD_GOSSIP_ITEM_EXTENDED( 0, GOSSIP_UNLEARN_ELIXIR, GOSSIP_SENDER_CHECK, action,    BOX_UNLEARN_ALCHEMY_SPEC, DoHighUnlearnCost(player),false);
                                                             //unknown textID ()
                 player->SEND_GOSSIP_MENU(_Creature->GetNpcTextId(), _Creature->GetGUID());
                 break;
             case 17909:                                     //Lauranna Thar'well
-                player->ADD_GOSSIP_ITEM_EXTENDED( 0, GOSSIP_UNLEARN_POTION, GOSSIP_SENDER_CHECK, action,    BOX_UNLEARN_ALCHEMY_SPEC, DoHighUnlearnCost(player));
+                player->ADD_GOSSIP_ITEM_EXTENDED( 0, GOSSIP_UNLEARN_POTION, GOSSIP_SENDER_CHECK, action,    BOX_UNLEARN_ALCHEMY_SPEC, DoHighUnlearnCost(player),false);
                                                             //unknown textID ()
                 player->SEND_GOSSIP_MENU(_Creature->GetNpcTextId(), _Creature->GetGUID());
@@ -767,5 +767,5 @@
             case 5164:                                      //Grumnus Steelshaper
             case 11177:                                     //Okothos Ironrager
-                player->ADD_GOSSIP_ITEM_EXTENDED( 0, GOSSIP_UNLEARN_SMITH_SPEC, GOSSIP_SENDER_CHECK, action, BOX_UNLEARN_ARMORORWEAPON, DoLowUnlearnCost(player));
+                player->ADD_GOSSIP_ITEM_EXTENDED( 0, GOSSIP_UNLEARN_SMITH_SPEC, GOSSIP_SENDER_CHECK, action, BOX_UNLEARN_ARMORORWEAPON, DoLowUnlearnCost(player),false);
                                                             //unknown textID (TALK_UNLEARN_AXEORWEAPON)
                 player->SEND_GOSSIP_MENU(_Creature->GetNpcTextId(), _Creature->GetGUID());
@@ -773,15 +773,15 @@
 
             case 11191:
-                player->ADD_GOSSIP_ITEM_EXTENDED( 0, GOSSIP_UNLEARN_HAMMER, GOSSIP_SENDER_CHECK, action,    BOX_UNLEARN_WEAPON_SPEC, DoMedUnlearnCost(player));
+                player->ADD_GOSSIP_ITEM_EXTENDED( 0, GOSSIP_UNLEARN_HAMMER, GOSSIP_SENDER_CHECK, action,    BOX_UNLEARN_WEAPON_SPEC, DoMedUnlearnCost(player),false);
                                                             //unknown textID (TALK_HAMMER_UNLEARN)
                 player->SEND_GOSSIP_MENU(_Creature->GetNpcTextId(), _Creature->GetGUID());
                 break;
             case 11192:
-                player->ADD_GOSSIP_ITEM_EXTENDED( 0, GOSSIP_UNLEARN_AXE, GOSSIP_SENDER_CHECK, action,       BOX_UNLEARN_WEAPON_SPEC, DoMedUnlearnCost(player));
+                player->ADD_GOSSIP_ITEM_EXTENDED( 0, GOSSIP_UNLEARN_AXE, GOSSIP_SENDER_CHECK, action,       BOX_UNLEARN_WEAPON_SPEC, DoMedUnlearnCost(player),false);
                                                             //unknown textID (TALK_AXE_UNLEARN)
                 player->SEND_GOSSIP_MENU(_Creature->GetNpcTextId(), _Creature->GetGUID());
                 break;
             case 11193:
-                player->ADD_GOSSIP_ITEM_EXTENDED( 0, GOSSIP_UNLEARN_SWORD, GOSSIP_SENDER_CHECK, action,     BOX_UNLEARN_WEAPON_SPEC, DoMedUnlearnCost(player));
+                player->ADD_GOSSIP_ITEM_EXTENDED( 0, GOSSIP_UNLEARN_SWORD, GOSSIP_SENDER_CHECK, action,     BOX_UNLEARN_WEAPON_SPEC, DoMedUnlearnCost(player),false);
                                                             //unknown textID (TALK_SWORD_UNLEARN)
                 player->SEND_GOSSIP_MENU(_Creature->GetNpcTextId(), _Creature->GetGUID());
@@ -920,5 +920,5 @@
             case 7866:                                      //Peter Galen
             case 7867:                                      //Thorkaf Dragoneye
-                player->ADD_GOSSIP_ITEM_EXTENDED( 0, GOSSIP_UNLEARN_DRAGON, GOSSIP_SENDER_CHECK, action,    BOX_UNLEARN_LEATHER_SPEC, DoMedUnlearnCost(player));
+                player->ADD_GOSSIP_ITEM_EXTENDED( 0, GOSSIP_UNLEARN_DRAGON, GOSSIP_SENDER_CHECK, action,    BOX_UNLEARN_LEATHER_SPEC, DoMedUnlearnCost(player),false);
                                                             //unknown textID ()
                 player->SEND_GOSSIP_MENU(_Creature->GetNpcTextId(), _Creature->GetGUID());
@@ -926,5 +926,5 @@
             case 7868:                                      //Sarah Tanner
             case 7869:                                      //Brumn Winterhoof
-                player->ADD_GOSSIP_ITEM_EXTENDED( 0, GOSSIP_UNLEARN_ELEMENTAL, GOSSIP_SENDER_CHECK, action, BOX_UNLEARN_LEATHER_SPEC, DoMedUnlearnCost(player));
+                player->ADD_GOSSIP_ITEM_EXTENDED( 0, GOSSIP_UNLEARN_ELEMENTAL, GOSSIP_SENDER_CHECK, action, BOX_UNLEARN_LEATHER_SPEC, DoMedUnlearnCost(player),false);
                                                             //unknown textID ()
                 player->SEND_GOSSIP_MENU(_Creature->GetNpcTextId(), _Creature->GetGUID());
@@ -932,5 +932,5 @@
             case 7870:                                      //Caryssia Moonhunter
             case 7871:                                      //Se'Jib
-                player->ADD_GOSSIP_ITEM_EXTENDED( 0, GOSSIP_UNLEARN_TRIBAL, GOSSIP_SENDER_CHECK, action,    BOX_UNLEARN_LEATHER_SPEC, DoMedUnlearnCost(player));
+                player->ADD_GOSSIP_ITEM_EXTENDED( 0, GOSSIP_UNLEARN_TRIBAL, GOSSIP_SENDER_CHECK, action,    BOX_UNLEARN_LEATHER_SPEC, DoMedUnlearnCost(player),false);
                                                             //unknown textID ()
                 player->SEND_GOSSIP_MENU(_Creature->GetNpcTextId(), _Creature->GetGUID());
@@ -1123,15 +1123,15 @@
         {
             case 22213:                                     //Gidge Spellweaver
-                player->ADD_GOSSIP_ITEM_EXTENDED( 0, GOSSIP_UNLEARN_SPELLFIRE, GOSSIP_SENDER_CHECK, action, BOX_UNLEARN_TAILOR_SPEC, DoHighUnlearnCost(player));
+                player->ADD_GOSSIP_ITEM_EXTENDED( 0, GOSSIP_UNLEARN_SPELLFIRE, GOSSIP_SENDER_CHECK, action, BOX_UNLEARN_TAILOR_SPEC, DoHighUnlearnCost(player),false);
                                                             //unknown textID ()
                 player->SEND_GOSSIP_MENU(_Creature->GetNpcTextId(), _Creature->GetGUID());
                 break;
             case 22208:                                     //Nasmara Moonsong
-                player->ADD_GOSSIP_ITEM_EXTENDED( 0, GOSSIP_UNLEARN_MOONCLOTH, GOSSIP_SENDER_CHECK, action, BOX_UNLEARN_TAILOR_SPEC, DoHighUnlearnCost(player));
+                player->ADD_GOSSIP_ITEM_EXTENDED( 0, GOSSIP_UNLEARN_MOONCLOTH, GOSSIP_SENDER_CHECK, action, BOX_UNLEARN_TAILOR_SPEC, DoHighUnlearnCost(player),false);
                                                             //unknown textID ()
                 player->SEND_GOSSIP_MENU(_Creature->GetNpcTextId(), _Creature->GetGUID());
                 break;
             case 22212:                                     //Andrion Darkspinner
-                player->ADD_GOSSIP_ITEM_EXTENDED( 0, GOSSIP_UNLEARN_SHADOWEAVE, GOSSIP_SENDER_CHECK, action,BOX_UNLEARN_TAILOR_SPEC, DoHighUnlearnCost(player));
+                player->ADD_GOSSIP_ITEM_EXTENDED( 0, GOSSIP_UNLEARN_SHADOWEAVE, GOSSIP_SENDER_CHECK, action,BOX_UNLEARN_TAILOR_SPEC, DoHighUnlearnCost(player),false);
                                                             //unknown textID ()
                 player->SEND_GOSSIP_MENU(_Creature->GetNpcTextId(), _Creature->GetGUID());
Index: trunk/src/bindings/scripts/scripts/guard/guard_ai.h
===================================================================
--- trunk/src/bindings/scripts/scripts/guard/guard_ai.h (revision 2)
+++ trunk/src/bindings/scripts/scripts/guard/guard_ai.h (revision 6)
Index: trunk/src/bindings/scripts/scripts/guard/guards.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/guard/guards.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/guard/guards.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/guard/guard_ai.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/guard/guard_ai.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/guard/guard_ai.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/go/go_scripts.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/go/go_scripts.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/go/go_scripts.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/boss/boss_lethon.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/boss/boss_lethon.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/boss/boss_lethon.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/boss/boss_taerar.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/boss/boss_taerar.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/boss/boss_taerar.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/boss/boss_ysondre.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/boss/boss_ysondre.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/boss/boss_ysondre.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/boss/boss_emeriss.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/boss/boss_emeriss.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/boss/boss_emeriss.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/creature/simple_ai.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/creature/simple_ai.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/creature/simple_ai.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/creature/mob_generic_creature.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/creature/mob_generic_creature.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/creature/mob_generic_creature.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/creature/mob_event_ai.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/creature/mob_event_ai.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/creature/mob_event_ai.cpp (revision 6)
@@ -53,7 +53,9 @@
             switch ((*i).Event.event_type)
             {
-            case EVENT_T_SPAWNED:
-                ProcessEvent(*i);
-                break;
+                case EVENT_T_SPAWNED:
+                    ProcessEvent(*i);
+                    break;
+                default:
+                    break;
             }
         }
@@ -391,5 +393,4 @@
             }
             break;
-
         case EVENT_T_FRIENDLY_IS_CC:
             {
@@ -421,5 +422,4 @@
             }
             break;
-
         case EVENT_T_FRIENDLY_MISSING_BUFF:
             {
@@ -448,5 +448,4 @@
             }
             break;
-
         case EVENT_T_SUMMONED_UNIT:
             {
@@ -498,9 +497,7 @@
             return param1;
             break;
-
         case 1:
             return param2;
             break;
-
         case 2:
             return param3;
@@ -548,21 +545,16 @@
             DoSay(GetEventAIText(param1), LANG_UNIVERSAL, pActionInvoker ? pActionInvoker : m_creature->getVictim());
             break;
-
         case ACTION_T_YELL:
             DoYell(GetEventAIText(param1), LANG_UNIVERSAL, pActionInvoker ? pActionInvoker : m_creature->getVictim());
             break;
-
         case ACTION_T_TEXTEMOTE:
             DoTextEmote(GetEventAIText(param1), pActionInvoker ? pActionInvoker : m_creature->getVictim());
             break;
-
         case ACTION_T_SOUND:
             DoPlaySoundToSet(m_creature, param1);
             break;
-
         case ACTION_T_EMOTE:
             m_creature->HandleEmoteCommand(param1);
             break;
-
         case ACTION_T_RANDOM_SAY:
             {
@@ -573,5 +565,4 @@
             }
             break;
-
         case ACTION_T_RANDOM_YELL:
             {
@@ -582,5 +573,4 @@
             }
             break;
-
         case ACTION_T_RANDOM_TEXTEMOTE:
             {
@@ -591,5 +581,4 @@
             }
             break;
-
         case ACTION_T_RANDOM_SOUND:
             {
@@ -600,5 +589,4 @@
             }
             break;
-
         case ACTION_T_RANDOM_EMOTE:
             {
@@ -609,5 +597,4 @@
             }
             break;
-
         case ACTION_T_CAST:
             {
@@ -658,5 +645,4 @@
             }
             break;
-
         case ACTION_T_SUMMON:
             {
@@ -678,5 +664,4 @@
             }
             break;
-
         case ACTION_T_THREAT_SINGLE_PCT:
             {
@@ -687,5 +672,4 @@
             }
             break;
-
         case ACTION_T_THREAT_ALL_PCT:
             {
@@ -701,5 +685,4 @@
             }
             break;
-
         case ACTION_T_QUEST_EVENT:
             {
@@ -710,5 +693,4 @@
             }
             break;
-
         case ACTION_T_CASTCREATUREGO:
             {
@@ -719,5 +701,4 @@
             }
             break;
-
         case ACTION_T_SET_UNIT_FIELD:
             {
@@ -728,5 +709,4 @@
             }
             break;
-
         case ACTION_T_SET_UNIT_FLAG:
             {
@@ -737,5 +717,4 @@
             }
             break;
-
         case ACTION_T_REMOVE_UNIT_FLAG:
             {
@@ -746,5 +725,4 @@
             }
             break;
-
         case ACTION_T_AUTO_ATTACK:
             {
@@ -754,5 +732,4 @@
             }
             break;
-
         case ACTION_T_COMBAT_MOVEMENT:
             {
@@ -791,5 +768,4 @@
             }
             break;
-
         case ACTION_T_EVADE:
             {
@@ -814,5 +790,4 @@
             }
             break;
-
         case ACTION_T_CASTCREATUREGO_ALL:
             {
@@ -828,5 +803,4 @@
             }
             break;
-
         case ACTION_T_REMOVEAURASFROMSPELL:
             {
@@ -837,5 +811,4 @@
             }
             break;
-
         case ACTION_T_RANGED_MOVEMENT:
             {
@@ -851,5 +824,4 @@
             }
             break;
-
         case ACTION_T_RANDOM_PHASE:
             {
@@ -859,5 +831,4 @@
             }
             break;
-
         case ACTION_T_RANDOM_PHASE_RANGE:
             {
@@ -899,5 +870,4 @@
             }
             break;
-
         case ACTION_T_KILLED_MONSTER:
             {
@@ -908,5 +878,4 @@
             }
             break;
-
         case ACTION_T_SET_INST_DATA:
             {
@@ -922,5 +891,4 @@
             }
             break;
-
         case ACTION_T_SET_INST_DATA64:
             {
@@ -946,5 +914,4 @@
             }
             break;
-
         case ACTION_T_UPDATE_TEMPLATE:
             {
@@ -959,5 +926,4 @@
             }
             break;
-
         case ACTION_T_DIE:
             {
@@ -971,5 +937,4 @@
             }
             break;
-
         case ACTION_T_ZONE_COMBAT_PULSE:
             {
@@ -984,5 +949,5 @@
             }
             break;
-        };
+        }
     }
 
@@ -1015,19 +980,23 @@
             {
                 //Reset all out of combat timers
-            case EVENT_T_TIMER_OOC:
-                {
-                    if ((*i).Event.event_param2 == (*i).Event.event_param1)
+                case EVENT_T_TIMER_OOC:
                     {
-                        (*i).Time = (*i).Event.event_param1;
-                        (*i).Enabled = true;
-
-                    }else if ((*i).Event.event_param2 > (*i).Event.event_param1)
-                    {
-                        (*i).Time = urand((*i).Event.event_param1, (*i).Event.event_param2);
-                        (*i).Enabled = true;
-                    }else if (EAI_ErrorLevel > 0)
-                        error_db_log("SD2: Creature %u using Event %u (Type = %u) has InitialMax < InitialMin. Event disabled.", m_creature->GetEntry(), (*i).Event.event_id, (*i).Event.event_type);
-
-                }break;
+                        if ((*i).Event.event_param2 == (*i).Event.event_param1)
+                        {
+                            (*i).Time = (*i).Event.event_param1;
+                            (*i).Enabled = true;
+                        }else if ((*i).Event.event_param2 > (*i).Event.event_param1)
+                        {
+                            (*i).Time = urand((*i).Event.event_param1, (*i).Event.event_param2);
+                            (*i).Enabled = true;
+                        }else if (EAI_ErrorLevel > 0)
+                            error_db_log("SD2: Creature %u using Event %u (Type = %u) has InitialMax < InitialMin. Event disabled.", m_creature->GetEntry(), (*i).Event.event_id, (*i).Event.event_type);
+                    }
+                    break;
+                default:
+                    //TODO: enable below code line / verify this is correct to enable events previously disabled (ex. aggro yell), instead of enable this in void Aggro()
+                    //(*i).Enabled = true;
+                    //(*i).Time = 0;
+                    break;
             }
         }
@@ -1054,7 +1023,9 @@
             {
                 //Evade
-            case EVENT_T_EVADE:
-                ProcessEvent(*i);
-                break;
+                case EVENT_T_EVADE:
+                    ProcessEvent(*i);
+                    break;
+                default:
+                    break;
             }
         }
@@ -1072,7 +1043,9 @@
             {
                 //Evade
-            case EVENT_T_DEATH:
-                ProcessEvent(*i, killer);
-                break;
+                case EVENT_T_DEATH:
+                    ProcessEvent(*i, killer);
+                    break;
+                default:
+                    break;
             }
         }
@@ -1089,7 +1062,9 @@
             {
                 //Kill
-            case EVENT_T_KILL:
-                ProcessEvent(*i, victim);
-                break;
+                case EVENT_T_KILL:
+                    ProcessEvent(*i, victim);
+                    break;
+                default:
+                    break;
             }
         }
@@ -1107,7 +1082,9 @@
             {
                 //Summoned
-            case EVENT_T_SUMMONED_UNIT:
-                ProcessEvent(*i, pUnit);
-                break;
+                case EVENT_T_SUMMONED_UNIT:
+                    ProcessEvent(*i, pUnit);
+                    break;
+                default:
+                    break;
             }
         }
@@ -1121,30 +1098,26 @@
             switch ((*i).Event.event_type)
             {
-            case EVENT_T_AGGRO:
-                ProcessEvent(*i, who);
-                break;
-
+                case EVENT_T_AGGRO:
+                    (*i).Enabled = true;
+                    ProcessEvent(*i, who);
+                    break;
                 //Reset all in combat timers
-            case EVENT_T_TIMER:
-
-                if ((*i).Event.event_param2 == (*i).Event.event_param1)
-                {
-                    (*i).Time = (*i).Event.event_param1;
+                case EVENT_T_TIMER:
+                    if ((*i).Event.event_param2 == (*i).Event.event_param1)
+                    {
+                        (*i).Time = (*i).Event.event_param1;
+                        (*i).Enabled = true;
+                    }else if ((*i).Event.event_param2 > (*i).Event.event_param1)
+                    {
+                        (*i).Time = urand((*i).Event.event_param1, (*i).Event.event_param2); 
+                        (*i).Enabled = true;
+                    }else if (EAI_ErrorLevel > 0)
+                        error_db_log("SD2: Creature %u using Event %u (Type = %u) has InitialMax < InitialMin. Event disabled.", m_creature->GetEntry(), (*i).Event.event_id, (*i).Event.event_type);
+                    break;
+                //All normal events need to be re-enabled and their time set to 0
+                default:
                     (*i).Enabled = true;
-
-                }else if ((*i).Event.event_param2 > (*i).Event.event_param1)
-                {
-                    (*i).Time = urand((*i).Event.event_param1, (*i).Event.event_param2); 
-                    (*i).Enabled = true;
-                }else if (EAI_ErrorLevel > 0)
-                    error_db_log("SD2: Creature %u using Event %u (Type = %u) has InitialMax < InitialMin. Event disabled.", m_creature->GetEntry(), (*i).Event.event_id, (*i).Event.event_type);
-
-                break;
-
-                //All normal events need to be re-enabled and their time set to 0
-            default:
-                (*i).Enabled = true;
-                (*i).Time = 0;
-                break;
+                    (*i).Time = 0;
+                    break;
             }
         }
@@ -1200,6 +1173,9 @@
         if (who->isTargetableForAttack() && who->isInAccessablePlaceFor(m_creature) && m_creature->IsHostileTo(who))
         {
+            if (!m_creature->canFly() && m_creature->GetDistanceZ(who) > CREATURE_Z_ATTACK_RANGE)
+                return;
+
             float attackRadius = m_creature->GetAttackDistance(who);
-            if (m_creature->IsWithinDistInMap(who, attackRadius) && m_creature->GetDistanceZ(who) <= CREATURE_Z_ATTACK_RANGE && m_creature->IsWithinLOSInMap(who))
+            if (m_creature->IsWithinDistInMap(who, attackRadius) && m_creature->IsWithinLOSInMap(who))
             {
                 if(who->HasStealthAura())
@@ -1226,13 +1202,15 @@
             switch ((*i).Event.event_type)
             {
-            //Spell hit
-            case EVENT_T_SPELLHIT:
-                {
-                    //If spell id matches (or no spell id) & if spell school matches (or no spell school)
-                    if (!(*i).Event.event_param1 || pSpell->Id == (*i).Event.event_param1)
-                        if ((*i).Event.event_param2_s == -1 || pSpell->SchoolMask == (*i).Event.event_param2)
-                            ProcessEvent(*i, pUnit);
-                }
-                break;
+                //Spell hit
+                case EVENT_T_SPELLHIT:
+                    {
+                        //If spell id matches (or no spell id) & if spell school matches (or no spell school)
+                        if (!(*i).Event.event_param1 || pSpell->Id == (*i).Event.event_param1)
+                            if ((*i).Event.event_param2_s == -1 || pSpell->SchoolMask == (*i).Event.event_param2)
+                                ProcessEvent(*i, pUnit);
+                    }
+                    break;
+                default:
+                    break;
             }
         }
@@ -1326,42 +1304,36 @@
         if ((*i).creature_id == ID)
         {
-            //Debug check
+//Debug check
 #ifndef _DEBUG
             if ((*i).event_flags & EFLAG_DEBUG_ONLY)
                 continue;
 #endif
-
-            //Heroic Instance Difficulty check
-            if ((*i).event_flags & EFLAG_HEROIC)
-            {
-                //Creature isn't even in a dungeon
-                if (!_Creature->GetMap() || !_Creature->GetMap()->IsDungeon())
-                {
-                    if (EAI_ErrorLevel > 1)
-                        error_db_log("SD2: Creature %u, Event %u using EFLAG_HEROIC but creature is not inside of an instance. Event skipped.", _Creature->GetEntry(), (*i).event_id);
-                    continue;
-                }
-
-                if (!_Creature->GetMap()->IsHeroic())
-                    continue;
-            } else
-
-                //Normal Instance Difficulty check
-                if ((*i).event_flags & EFLAG_NORMAL)
-                {
-                    //Creature isn't even in a dungeon
-                    if (!_Creature->GetMap() || !_Creature->GetMap()->IsDungeon())
+            if( _Creature->GetMap()->IsDungeon() )
+            {
+                if( _Creature->GetMap()->IsHeroic() )
+                {
+                    if( (*i).event_flags & EFLAG_HEROIC )
                     {
-                        if (EAI_ErrorLevel > 1)
-                            error_db_log("SD2: Creature %u, Event %u using EFLAG_NORMAL but creature is not inside of an instance. Event skipped.", _Creature->GetEntry(), (*i).event_id);
+                        EventList.push_back(EventHolder(*i));
                         continue;
-                    }
-
-                    if (_Creature->GetMap()->IsHeroic())
+                    }else if( (*i).event_flags & EFLAG_NORMAL )
                         continue;
-                } else if (_Creature->GetMap() && _Creature->GetMap()->IsDungeon() && EAI_ErrorLevel > 1)
-                        error_db_log("SD2: Creature %u, Event %u. Creature is in instance but neither EFLAG_NORMAL or EFLAG_HEROIC are set.", _Creature->GetEntry(), (*i).event_id);
-
-            //Push back event
+                }
+                else
+                {
+                    if( (*i).event_flags & EFLAG_NORMAL )
+                    {
+                        EventList.push_back(EventHolder(*i));
+                        continue;
+                    }else if( (*i).event_flags & EFLAG_HEROIC )
+                        continue;
+                }
+
+                if (EAI_ErrorLevel > 1)
+                    error_db_log("SD2: Creature %u Event %u. Creature are in instance but neither EFLAG_NORMAL or EFLAG_HEROIC are set. Event Disabled.", _Creature->GetEntry(), (*i).event_id);
+
+                continue;
+            }
+
             EventList.push_back(EventHolder(*i));
         }
Index: trunk/src/bindings/scripts/scripts/creature/simple_ai.h
===================================================================
--- trunk/src/bindings/scripts/scripts/creature/simple_ai.h (revision 2)
+++ trunk/src/bindings/scripts/scripts/creature/simple_ai.h (revision 6)
Index: trunk/src/bindings/scripts/scripts/creature/mob_event_ai.h
===================================================================
--- trunk/src/bindings/scripts/scripts/creature/mob_event_ai.h (revision 2)
+++ trunk/src/bindings/scripts/scripts/creature/mob_event_ai.h (revision 6)
Index: trunk/src/bindings/scripts/scripts/custom/test.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/custom/test.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/custom/test.cpp (revision 6)
@@ -153,9 +153,7 @@
     _Creature->prepareGossipMenu(player,0);
 
-    player->PlayerTalkClass->GetGossipMenu()->AddMenuItem(0, "Click to Test Escort(Attack, Defend, Run)", GOSSIP_SENDER_MAIN, GOSSIP_ACTION_INFO_DEF+1,"",0);
-
-    player->PlayerTalkClass->GetGossipMenu()->AddMenuItem(0, "Click to Test Escort(NoAttack, NoDefend, Walk)", GOSSIP_SENDER_MAIN, GOSSIP_ACTION_INFO_DEF+2,"",0);
-
-    player->PlayerTalkClass->GetGossipMenu()->AddMenuItem(0, "Click to Test Escort(NoAttack, Defend, Walk)", GOSSIP_SENDER_MAIN, GOSSIP_ACTION_INFO_DEF+3,"",0);
+    player->ADD_GOSSIP_ITEM(0, "Click to Test Escort(Attack, Defend, Run)", GOSSIP_SENDER_MAIN, GOSSIP_ACTION_INFO_DEF+1);
+    player->ADD_GOSSIP_ITEM(0, "Click to Test Escort(NoAttack, NoDefend, Walk)", GOSSIP_SENDER_MAIN, GOSSIP_ACTION_INFO_DEF+2);
+    player->ADD_GOSSIP_ITEM(0, "Click to Test Escort(NoAttack, Defend, Walk)", GOSSIP_SENDER_MAIN, GOSSIP_ACTION_INFO_DEF+3);
 
     _Creature->sendPreparedGossip( player );
Index: trunk/src/bindings/scripts/scripts/custom/custom_gossip_codebox.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/custom/custom_gossip_codebox.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/custom/custom_gossip_codebox.cpp (revision 6)
@@ -28,5 +28,5 @@
 bool GossipHello_custom_gossip_codebox(Player *player, Creature *_Creature)
 {
-    player->PlayerTalkClass->GetGossipMenu()->AddMenuItem(0, "A quiz: what's your name?", GOSSIP_SENDER_MAIN, GOSSIP_ACTION_INFO_DEF+1, "", 0, true);
+    player->ADD_GOSSIP_ITEM_EXTENDED(0, "A quiz: what's your name?", GOSSIP_SENDER_MAIN, GOSSIP_ACTION_INFO_DEF+1, "", 0, true);
     player->ADD_GOSSIP_ITEM(0, "I'm not interested", GOSSIP_SENDER_MAIN, GOSSIP_ACTION_INFO_DEF+2);
 
Index: trunk/src/bindings/scripts/scripts/custom/custom_example.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/custom/custom_example.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/custom/custom_example.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_hazzarah.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_hazzarah.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_hazzarah.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_thekal.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_thekal.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_thekal.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_jeklik.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_jeklik.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_jeklik.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_wushoolay.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_wushoolay.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_wushoolay.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_venoxis.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_venoxis.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_venoxis.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/zulgurub/def_zulgurub.h
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/zulgurub/def_zulgurub.h (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/zulgurub/def_zulgurub.h (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_grilek.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_grilek.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_grilek.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/zulgurub/instance_zulgurub.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/zulgurub/instance_zulgurub.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/zulgurub/instance_zulgurub.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_renataki.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_renataki.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_renataki.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_hakkar.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_hakkar.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_hakkar.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_arlokk.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_arlokk.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_arlokk.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_jindo.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_jindo.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_jindo.cpp (revision 6)
@@ -183,22 +183,4 @@
     }
 
-    void MoveInLineOfSight(Unit *who)
-    {
-        if (!who || m_creature->getVictim())
-            return;
-
-        if (who->isTargetableForAttack() && who->isInAccessablePlaceFor(m_creature) && m_creature->IsHostileTo(who))
-        {
-            float attackRadius = m_creature->GetAttackDistance(who);
-            if (m_creature->IsWithinDistInMap(who, attackRadius) && m_creature->GetDistanceZ(who) <= CREATURE_Z_ATTACK_RANGE && m_creature->IsWithinLOSInMap(who))
-            {
-                if(who->HasStealthAura())
-                    who->RemoveSpellsCausingAura(SPELL_AURA_MOD_STEALTH);
-
-                DoStartAttackAndMovement(who);
-            }
-        }
-    }
-
     void UpdateAI (const uint32 diff)
     {
@@ -241,22 +223,4 @@
     }
 
-    void MoveInLineOfSight(Unit *who)
-    {
-        if (!who || m_creature->getVictim())
-            return;
-
-        if (who->isTargetableForAttack() && who->isInAccessablePlaceFor(m_creature) && m_creature->IsHostileTo(who))
-        {
-            float attackRadius = m_creature->GetAttackDistance(who);
-            if (m_creature->IsWithinDistInMap(who, attackRadius) && m_creature->GetDistanceZ(who) <= CREATURE_Z_ATTACK_RANGE && m_creature->IsWithinLOSInMap(who))
-            {
-                if(who->HasStealthAura())
-                    who->RemoveSpellsCausingAura(SPELL_AURA_MOD_STEALTH);
-
-                DoStartAttackAndMovement(who);
-            }
-        }
-    }
-
     void UpdateAI (const uint32 diff)
     {
Index: trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_mandokir.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_mandokir.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_mandokir.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_marli.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_marli.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_marli.cpp (revision 6)
@@ -209,22 +209,4 @@
     }
 
-    void MoveInLineOfSight(Unit *who)
-    {
-        if (!who || m_creature->getVictim())
-            return;
-
-        if (who->isTargetableForAttack() && who->isInAccessablePlaceFor(m_creature) && m_creature->IsHostileTo(who))
-        {
-            float attackRadius = m_creature->GetAttackDistance(who);
-            if (m_creature->IsWithinDistInMap(who, attackRadius) && m_creature->GetDistanceZ(who) <= CREATURE_Z_ATTACK_RANGE && m_creature->IsWithinLOSInMap(who))
-            {
-                if(who->HasStealthAura())
-                    who->RemoveSpellsCausingAura(SPELL_AURA_MOD_STEALTH);
-
-                DoStartAttackAndMovement(who);
-            }
-        }
-    }
-
     void UpdateAI (const uint32 diff)
     {
Index: trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_gahzranka.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_gahzranka.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/zulgurub/boss_gahzranka.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/blood_furnace/boss_broggok.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/blood_furnace/boss_broggok.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/blood_furnace/boss_broggok.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/blood_furnace/boss_the_maker.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/blood_furnace/boss_the_maker.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/blood_furnace/boss_the_maker.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/blood_furnace/boss_kelidan_the_breaker.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/blood_furnace/boss_kelidan_the_breaker.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/blood_furnace/boss_kelidan_the_breaker.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/hellfire_ramparts/boss_watchkeeper_gargolmar.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/hellfire_ramparts/boss_watchkeeper_gargolmar.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/hellfire_ramparts/boss_watchkeeper_gargolmar.cpp (revision 6)
@@ -98,5 +98,5 @@
         if( !m_creature->getVictim() && who->isTargetableForAttack() && ( m_creature->IsHostileTo( who )) && who->isInAccessablePlaceFor(m_creature) )
         {
-            if (m_creature->GetDistanceZ(who) > CREATURE_Z_ATTACK_RANGE)
+            if (!m_creature->canFly() && m_creature->GetDistanceZ(who) > CREATURE_Z_ATTACK_RANGE)
                 return;
 
Index: trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/hellfire_ramparts/boss_omor_the_unscarred.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/hellfire_ramparts/boss_omor_the_unscarred.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/hellfire_ramparts/boss_omor_the_unscarred.cpp (revision 6)
@@ -128,5 +128,5 @@
         if( !m_creature->getVictim() && who->isTargetableForAttack() && ( m_creature->IsHostileTo( who )) && who->isInAccessablePlaceFor(m_creature) )
         {
-            if (m_creature->GetDistanceZ(who) > CREATURE_Z_ATTACK_RANGE)
+            if (!m_creature->canFly() && m_creature->GetDistanceZ(who) > CREATURE_Z_ATTACK_RANGE)
                 return;
 
@@ -259,4 +259,6 @@
             }
         }else Shadowbolt_Timer -= diff;
+
+        DoMeleeAttackIfReady();
     }
 };
Index: trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/shattered_halls/boss_warbringer_omrogg.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/shattered_halls/boss_warbringer_omrogg.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/shattered_halls/boss_warbringer_omrogg.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/shattered_halls/boss_nethekurse.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/shattered_halls/boss_nethekurse.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/shattered_halls/boss_nethekurse.cpp (revision 6)
@@ -222,5 +222,5 @@
             }
 
-            if( m_creature->GetDistanceZ(who) > CREATURE_Z_ATTACK_RANGE )
+            if(!m_creature->canFly() && m_creature->GetDistanceZ(who) > CREATURE_Z_ATTACK_RANGE )
                 return;
 
Index: trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/shattered_halls/def_shattered_halls.h
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/shattered_halls/def_shattered_halls.h (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/shattered_halls/def_shattered_halls.h (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/shattered_halls/instance_shattered_halls.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/shattered_halls/instance_shattered_halls.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/shattered_halls/instance_shattered_halls.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/magtheridons_lair/def_magtheridons_lair.h
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/magtheridons_lair/def_magtheridons_lair.h (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/magtheridons_lair/def_magtheridons_lair.h (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/magtheridons_lair/instance_magtheridons_lair.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/magtheridons_lair/instance_magtheridons_lair.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/magtheridons_lair/instance_magtheridons_lair.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/magtheridons_lair/boss_magtheridon.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/magtheridons_lair/boss_magtheridon.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/hellfire_citadel/magtheridons_lair/boss_magtheridon.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/black_temple/boss_teron_gorefiend.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/black_temple/boss_teron_gorefiend.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/black_temple/boss_teron_gorefiend.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/black_temple/black_temple.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/black_temple/black_temple.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/black_temple/black_temple.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/black_temple/boss_illidan.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/black_temple/boss_illidan.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/black_temple/boss_illidan.cpp (revision 6)
@@ -996,6 +996,9 @@
         if (who->isTargetableForAttack() && who->isInAccessablePlaceFor(m_creature) && m_creature->IsHostileTo(who))
         {
+            if (!m_creature->canFly() && m_creature->GetDistanceZ(who) > CREATURE_Z_ATTACK_RANGE)
+                return;
+
             float attackRadius = m_creature->GetAttackDistance(who);
-            if (m_creature->IsWithinDistInMap(who, attackRadius) && m_creature->GetDistanceZ(who) <= CREATURE_Z_ATTACK_RANGE && m_creature->IsWithinLOSInMap(who))
+            if (m_creature->IsWithinDistInMap(who, attackRadius) && m_creature->IsWithinLOSInMap(who))
             {
                 if(who->HasStealthAura())
Index: trunk/src/bindings/scripts/scripts/zone/black_temple/boss_mother_shahraz.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/black_temple/boss_mother_shahraz.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/black_temple/boss_mother_shahraz.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/black_temple/def_black_temple.h
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/black_temple/def_black_temple.h (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/black_temple/def_black_temple.h (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/black_temple/illidari_council.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/black_temple/illidari_council.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/black_temple/illidari_council.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/black_temple/instance_black_temple.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/black_temple/instance_black_temple.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/black_temple/instance_black_temple.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/black_temple/boss_warlord_najentus.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/black_temple/boss_warlord_najentus.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/black_temple/boss_warlord_najentus.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/black_temple/boss_shade_of_akama.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/black_temple/boss_shade_of_akama.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/black_temple/boss_shade_of_akama.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/black_temple/boss_supremus.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/black_temple/boss_supremus.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/black_temple/boss_supremus.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/black_temple/boss_bloodboil.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/black_temple/boss_bloodboil.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/black_temple/boss_bloodboil.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/black_temple/boss_reliquary_of_souls.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/black_temple/boss_reliquary_of_souls.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/black_temple/boss_reliquary_of_souls.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/darkshore/darkshore.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/darkshore/darkshore.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/darkshore/darkshore.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/stonetalon_mountains/stonetalon_mountains.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/stonetalon_mountains/stonetalon_mountains.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/stonetalon_mountains/stonetalon_mountains.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/tempest_keep/botanica/boss_warp_splinter.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/tempest_keep/botanica/boss_warp_splinter.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/tempest_keep/botanica/boss_warp_splinter.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/tempest_keep/botanica/boss_high_botanist_freywinn.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/tempest_keep/botanica/boss_high_botanist_freywinn.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/tempest_keep/botanica/boss_high_botanist_freywinn.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/tempest_keep/botanica/boss_laj.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/tempest_keep/botanica/boss_laj.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/tempest_keep/botanica/boss_laj.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/tempest_keep/the_eye/boss_kaelthas.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/tempest_keep/the_eye/boss_kaelthas.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/tempest_keep/the_eye/boss_kaelthas.cpp (revision 6)
@@ -205,5 +205,5 @@
         if( !m_creature->getVictim() && who->isTargetableForAttack() && ( m_creature->IsHostileTo( who )) && who->isInAccessablePlaceFor(m_creature) )
         {
-            if (m_creature->GetDistanceZ(who) > CREATURE_Z_ATTACK_RANGE)
+            if (!m_creature->canFly() && m_creature->GetDistanceZ(who) > CREATURE_Z_ATTACK_RANGE)
                 return;
 
@@ -499,11 +499,11 @@
     void MoveInLineOfSight(Unit *who)
     {
-        if (!who || m_creature->getVictim())
-            return;
-
-        if (who->isTargetableForAttack() && who->isInAccessablePlaceFor(m_creature) && m_creature->IsHostileTo(who))
-        {
+        if (!m_creature->getVictim() && who->isTargetableForAttack() && who->isInAccessablePlaceFor(m_creature) && m_creature->IsHostileTo(who))
+        {
+            if (!m_creature->canFly() && m_creature->GetDistanceZ(who) > CREATURE_Z_ATTACK_RANGE)
+                return;
+
             float attackRadius = m_creature->GetAttackDistance(who);
-            if (Phase >= 4 && m_creature->IsWithinDistInMap(who, attackRadius) && m_creature->GetDistanceZ(who) <= CREATURE_Z_ATTACK_RANGE && m_creature->IsWithinLOSInMap(who))
+            if (Phase >= 4 && m_creature->IsWithinDistInMap(who, attackRadius) && m_creature->IsWithinLOSInMap(who))
             {
                 if(who->HasStealthAura())
@@ -1512,22 +1512,4 @@
     }
 
-    void MoveInLineOfSight(Unit *who)
-    {
-        if (!who || m_creature->getVictim())
-            return;
-
-        if (who->isTargetableForAttack() && who->isInAccessablePlaceFor(m_creature) && m_creature->IsHostileTo(who))
-        {
-            float attackRadius = m_creature->GetAttackDistance(who);
-            if (m_creature->IsWithinDistInMap(who, attackRadius) && m_creature->GetDistanceZ(who) <= CREATURE_Z_ATTACK_RANGE && m_creature->IsWithinLOSInMap(who))
-            {
-                if(who->HasStealthAura())
-                    who->RemoveSpellsCausingAura(SPELL_AURA_MOD_STEALTH);
-
-                AttackStart(who);
-            }
-        }
-    }
-
     void UpdateAI(const uint32 diff)
     {
Index: trunk/src/bindings/scripts/scripts/zone/tempest_keep/the_eye/the_eye.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/tempest_keep/the_eye/the_eye.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/tempest_keep/the_eye/the_eye.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/tempest_keep/the_eye/boss_astromancer.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/tempest_keep/the_eye/boss_astromancer.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/tempest_keep/the_eye/boss_astromancer.cpp (revision 6)
@@ -478,22 +478,4 @@
     }
 
-    void MoveInLineOfSight(Unit *who)
-    {
-        if (!who || m_creature->getVictim())
-            return;
-
-        if (who->isTargetableForAttack() && who->isInAccessablePlaceFor(m_creature) && m_creature->IsHostileTo(who))
-        {
-            float attackRadius = m_creature->GetAttackDistance(who);
-            if (m_creature->IsWithinDistInMap(who, attackRadius) && m_creature->GetDistanceZ(who) <= CREATURE_Z_ATTACK_RANGE && m_creature->IsWithinLOSInMap(who))
-            {
-                if(who->HasStealthAura())
-                    who->RemoveSpellsCausingAura(SPELL_AURA_MOD_STEALTH);
-
-                DoStartAttackAndMovement(who);
-            }
-        }
-    }
-
     void UpdateAI(const uint32 diff)
     {
Index: trunk/src/bindings/scripts/scripts/zone/tempest_keep/the_eye/def_the_eye.h
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/tempest_keep/the_eye/def_the_eye.h (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/tempest_keep/the_eye/def_the_eye.h (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/tempest_keep/the_eye/instance_the_eye.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/tempest_keep/the_eye/instance_the_eye.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/tempest_keep/the_eye/instance_the_eye.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/tempest_keep/the_eye/boss_void_reaver.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/tempest_keep/the_eye/boss_void_reaver.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/tempest_keep/the_eye/boss_void_reaver.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/tempest_keep/arcatraz/boss_harbinger_skyriss.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/tempest_keep/arcatraz/boss_harbinger_skyriss.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/tempest_keep/arcatraz/boss_harbinger_skyriss.cpp (revision 6)
@@ -120,5 +120,5 @@
         if( !m_creature->getVictim() && who->isTargetableForAttack() && ( m_creature->IsHostileTo( who )) && who->isInAccessablePlaceFor(m_creature) )
         {
-            if (m_creature->GetDistanceZ(who) > CREATURE_Z_ATTACK_RANGE)
+            if (!m_creature->canFly() && m_creature->GetDistanceZ(who) > CREATURE_Z_ATTACK_RANGE)
                 return;
 
Index: trunk/src/bindings/scripts/scripts/zone/tempest_keep/arcatraz/arcatraz.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/tempest_keep/arcatraz/arcatraz.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/tempest_keep/arcatraz/arcatraz.cpp (revision 6)
@@ -128,5 +128,5 @@
         if( !m_creature->getVictim() && who->isTargetableForAttack() && ( m_creature->IsHostileTo( who )) && who->isInAccessablePlaceFor(m_creature) )
         {
-            if (m_creature->GetDistanceZ(who) > CREATURE_Z_ATTACK_RANGE)
+            if (!m_creature->canFly() && m_creature->GetDistanceZ(who) > CREATURE_Z_ATTACK_RANGE)
                 return;
 
@@ -369,5 +369,5 @@
         if( !m_creature->getVictim() && who->isTargetableForAttack() && ( m_creature->IsHostileTo( who )) && who->isInAccessablePlaceFor(m_creature) )
         {
-            if (m_creature->GetDistanceZ(who) > CREATURE_Z_ATTACK_RANGE)
+            if (!m_creature->canFly() && m_creature->GetDistanceZ(who) > CREATURE_Z_ATTACK_RANGE)
                 return;
             if (who->GetTypeId() != TYPEID_PLAYER)
Index: trunk/src/bindings/scripts/scripts/zone/tempest_keep/arcatraz/def_arcatraz.h
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/tempest_keep/arcatraz/def_arcatraz.h (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/tempest_keep/arcatraz/def_arcatraz.h (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/tempest_keep/arcatraz/instance_arcatraz.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/tempest_keep/arcatraz/instance_arcatraz.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/tempest_keep/arcatraz/instance_arcatraz.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/tempest_keep/the_mechanar/boss_gatewatcher_gyrokill.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/tempest_keep/the_mechanar/boss_gatewatcher_gyrokill.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/tempest_keep/the_mechanar/boss_gatewatcher_gyrokill.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/tempest_keep/the_mechanar/boss_nethermancer_sepethrea.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/tempest_keep/the_mechanar/boss_nethermancer_sepethrea.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/tempest_keep/the_mechanar/boss_nethermancer_sepethrea.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/tempest_keep/the_mechanar/boss_gatewatcher_ironhand.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/tempest_keep/the_mechanar/boss_gatewatcher_ironhand.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/tempest_keep/the_mechanar/boss_gatewatcher_ironhand.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/stormwind/stormwind_city.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/stormwind/stormwind_city.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/stormwind/stormwind_city.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/boss_viscidus.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/boss_viscidus.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/boss_viscidus.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/boss_bug_trio.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/boss_bug_trio.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/boss_bug_trio.cpp (revision 6)
@@ -163,22 +163,4 @@
     }
 
-    void MoveInLineOfSight(Unit *who)
-    {
-        if (!who || m_creature->getVictim())
-            return;
-
-        if (who->isTargetableForAttack() && IsVisible(who) && who->isInAccessablePlaceFor(m_creature) && m_creature->IsHostileTo(who))
-        {
-            float attackRadius = m_creature->GetAttackDistance(who);
-            if (m_creature->IsWithinDistInMap(who, attackRadius) && m_creature->GetDistanceZ(who) <= CREATURE_Z_ATTACK_RANGE && m_creature->IsWithinLOSInMap(who))
-            {
-                if(who->HasStealthAura())
-                    who->RemoveSpellsCausingAura(SPELL_AURA_MOD_STEALTH);
-                //Begin melee attack if we are within range
-                DoStartAttackAndMovement(who);
-            }
-        }
-    }
-
     void UpdateAI(const uint32 diff)
     {
@@ -268,22 +250,4 @@
     void Aggro(Unit *who)
     {
-    }
-
-    void MoveInLineOfSight(Unit *who)
-    {
-        if (!who || m_creature->getVictim())
-            return;
-
-        if (who->isTargetableForAttack() && IsVisible(who) && who->isInAccessablePlaceFor(m_creature) && m_creature->IsHostileTo(who))
-        {
-            float attackRadius = m_creature->GetAttackDistance(who);
-            if (m_creature->IsWithinDistInMap(who, attackRadius) && m_creature->GetDistanceZ(who) <= CREATURE_Z_ATTACK_RANGE && m_creature->IsWithinLOSInMap(who))
-            {
-                if(who->HasStealthAura())
-                    who->RemoveSpellsCausingAura(SPELL_AURA_MOD_STEALTH);
-                //Begin melee attack if we are within range
-                DoStartAttackAndMovement(who);
-            }
-        }
     }
 
Index: trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/boss_huhuran.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/boss_huhuran.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/boss_huhuran.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/boss_twinemperors.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/boss_twinemperors.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/boss_twinemperors.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/boss_fankriss.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/boss_fankriss.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/boss_fankriss.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/boss_cthun.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/boss_cthun.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/boss_cthun.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/boss_sartura.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/boss_sartura.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/boss_sartura.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/boss_skeram.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/boss_skeram.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/boss_skeram.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/boss_ouro.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/boss_ouro.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/boss_ouro.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/def_temple_of_ahnqiraj.h
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/def_temple_of_ahnqiraj.h (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/def_temple_of_ahnqiraj.h (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/instance_temple_of_ahnqiraj.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/instance_temple_of_ahnqiraj.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/instance_temple_of_ahnqiraj.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/mob_anubisath_sentinel.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/mob_anubisath_sentinel.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/temple_of_ahnqiraj/mob_anubisath_sentinel.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/ironforge/ironforge.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/ironforge/ironforge.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/ironforge/ironforge.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/shadowmoon_valley/boss_doomwalker.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/shadowmoon_valley/boss_doomwalker.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/shadowmoon_valley/boss_doomwalker.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/shadowmoon_valley/shadowmoon_valley.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/shadowmoon_valley/shadowmoon_valley.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/shadowmoon_valley/shadowmoon_valley.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_gyth.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_gyth.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_gyth.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_warmaster_voone.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_warmaster_voone.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_warmaster_voone.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_halycon.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_halycon.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_halycon.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_the_beast.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_the_beast.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_the_beast.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_overlord_wyrmthalak.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_overlord_wyrmthalak.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_overlord_wyrmthalak.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_rend_blackhand.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_rend_blackhand.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_rend_blackhand.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_highlord_omokk.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_highlord_omokk.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_highlord_omokk.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_mother_smolderweb.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_mother_smolderweb.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_mother_smolderweb.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_shadow_hunter_voshgajin.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_shadow_hunter_voshgajin.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_shadow_hunter_voshgajin.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_drakkisath.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_drakkisath.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_drakkisath.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_pyroguard_emberseer.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_pyroguard_emberseer.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_pyroguard_emberseer.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_quartermaster_zigris.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_quartermaster_zigris.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/blackrock_spire/boss_quartermaster_zigris.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/elwynn_forest/elwynn_forest.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/elwynn_forest/elwynn_forest.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/elwynn_forest/elwynn_forest.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/blasted_lands/blasted_lands.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/blasted_lands/blasted_lands.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/blasted_lands/blasted_lands.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/blasted_lands/boss_kruul.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/blasted_lands/boss_kruul.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/blasted_lands/boss_kruul.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/tanaris/tanaris.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/tanaris/tanaris.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/tanaris/tanaris.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/shattrath/shattrath_city.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/shattrath/shattrath_city.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/shattrath/shattrath_city.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/eversong_woods/eversong_woods.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/eversong_woods/eversong_woods.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/eversong_woods/eversong_woods.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/sunwell_plateau/boss_kalecgos.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/sunwell_plateau/boss_kalecgos.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/sunwell_plateau/boss_kalecgos.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/sunwell_plateau/boss_brutallus.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/sunwell_plateau/boss_brutallus.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/sunwell_plateau/boss_brutallus.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/sunwell_plateau/def_sunwell_plateau.h
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/sunwell_plateau/def_sunwell_plateau.h (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/sunwell_plateau/def_sunwell_plateau.h (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/sunwell_plateau/instance_sunwell_plateau.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/sunwell_plateau/instance_sunwell_plateau.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/sunwell_plateau/instance_sunwell_plateau.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/moonglade/moonglade.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/moonglade/moonglade.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/moonglade/moonglade.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/undercity/undercity.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/undercity/undercity.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/undercity/undercity.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/blackwing_lair/boss_broodlord_lashlayer.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/blackwing_lair/boss_broodlord_lashlayer.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/blackwing_lair/boss_broodlord_lashlayer.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/blackwing_lair/boss_firemaw.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/blackwing_lair/boss_firemaw.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/blackwing_lair/boss_firemaw.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/blackwing_lair/boss_razorgore.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/blackwing_lair/boss_razorgore.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/blackwing_lair/boss_razorgore.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/blackwing_lair/boss_flamegor.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/blackwing_lair/boss_flamegor.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/blackwing_lair/boss_flamegor.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/blackwing_lair/boss_chromaggus.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/blackwing_lair/boss_chromaggus.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/blackwing_lair/boss_chromaggus.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/blackwing_lair/boss_vaelastrasz.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/blackwing_lair/boss_vaelastrasz.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/blackwing_lair/boss_vaelastrasz.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/blackwing_lair/boss_victor_nefarius.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/blackwing_lair/boss_victor_nefarius.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/blackwing_lair/boss_victor_nefarius.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/blackwing_lair/boss_nefarian.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/blackwing_lair/boss_nefarian.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/blackwing_lair/boss_nefarian.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/blackwing_lair/instance_blackwing_lair.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/blackwing_lair/instance_blackwing_lair.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/blackwing_lair/instance_blackwing_lair.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/blackwing_lair/boss_ebonroc.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/blackwing_lair/boss_ebonroc.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/blackwing_lair/boss_ebonroc.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/searing_gorge/searing_gorge.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/searing_gorge/searing_gorge.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/searing_gorge/searing_gorge.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/blades_edge_mountains/blades_edge_mountains.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/blades_edge_mountains/blades_edge_mountains.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/blades_edge_mountains/blades_edge_mountains.cpp (revision 6)
@@ -276,7 +276,4 @@
     void MoveInLineOfSight(Unit *who)
     {
-        if (!who || m_creature->getVictim())
-            return;
-
         if (who->GetTypeId() == TYPEID_PLAYER)
         {
@@ -290,8 +287,11 @@
         }
 
-        if (who->isTargetableForAttack() && who->isInAccessablePlaceFor(m_creature) && m_creature->IsHostileTo(who))
-        {
+        if (!m_creature->getVictim() && who->isTargetableForAttack() && who->isInAccessablePlaceFor(m_creature) && m_creature->IsHostileTo(who))
+        {
+            if (!m_creature->canFly() && m_creature->GetDistanceZ(who) > CREATURE_Z_ATTACK_RANGE)
+                return;
+
             float attackRadius = m_creature->GetAttackDistance(who);
-            if (m_creature->IsWithinDistInMap(who, attackRadius) && m_creature->GetDistanceZ(who) <= CREATURE_Z_ATTACK_RANGE && m_creature->IsWithinLOSInMap(who))
+            if (m_creature->IsWithinDistInMap(who, attackRadius) && m_creature->IsWithinLOSInMap(who))
             {
                 if(who->HasStealthAura())
Index: trunk/src/bindings/scripts/scripts/zone/aunchindoun/mana_tombs/boss_nexusprince_shaffar.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/aunchindoun/mana_tombs/boss_nexusprince_shaffar.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/aunchindoun/mana_tombs/boss_nexusprince_shaffar.cpp (revision 6)
@@ -96,5 +96,5 @@
             }
 
-            if (m_creature->GetDistanceZ(who) > CREATURE_Z_ATTACK_RANGE)
+            if (!m_creature->canFly() && m_creature->GetDistanceZ(who) > CREATURE_Z_ATTACK_RANGE)
                 return;
 
Index: trunk/src/bindings/scripts/scripts/zone/aunchindoun/mana_tombs/boss_pandemonius.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/aunchindoun/mana_tombs/boss_pandemonius.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/aunchindoun/mana_tombs/boss_pandemonius.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/aunchindoun/auchenai_crypts/boss_exarch_maladaar.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/aunchindoun/auchenai_crypts/boss_exarch_maladaar.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/aunchindoun/auchenai_crypts/boss_exarch_maladaar.cpp (revision 6)
@@ -194,5 +194,5 @@
             }
 
-            if (m_creature->GetDistanceZ(who) > CREATURE_Z_ATTACK_RANGE)
+            if (!m_creature->canFly() && m_creature->GetDistanceZ(who) > CREATURE_Z_ATTACK_RANGE)
                 return;
 
Index: trunk/src/bindings/scripts/scripts/zone/aunchindoun/sethekk_halls/def_sethekk_halls.h
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/aunchindoun/sethekk_halls/def_sethekk_halls.h (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/aunchindoun/sethekk_halls/def_sethekk_halls.h (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/aunchindoun/sethekk_halls/instance_sethekk_halls.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/aunchindoun/sethekk_halls/instance_sethekk_halls.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/aunchindoun/sethekk_halls/instance_sethekk_halls.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/aunchindoun/sethekk_halls/boss_tailonking_ikiss.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/aunchindoun/sethekk_halls/boss_tailonking_ikiss.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/aunchindoun/sethekk_halls/boss_tailonking_ikiss.cpp (revision 6)
@@ -105,5 +105,5 @@
             }
 
-            if (m_creature->GetDistanceZ(who) > CREATURE_Z_ATTACK_RANGE)
+            if (!m_creature->canFly() && m_creature->GetDistanceZ(who) > CREATURE_Z_ATTACK_RANGE)
                 return;
 
Index: trunk/src/bindings/scripts/scripts/zone/aunchindoun/sethekk_halls/boss_darkweaver_syth.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/aunchindoun/sethekk_halls/boss_darkweaver_syth.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/aunchindoun/sethekk_halls/boss_darkweaver_syth.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/aunchindoun/shadow_labyrinth/boss_blackheart_the_inciter.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/aunchindoun/shadow_labyrinth/boss_blackheart_the_inciter.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/aunchindoun/shadow_labyrinth/boss_blackheart_the_inciter.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/aunchindoun/shadow_labyrinth/def_shadow_labyrinth.h
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/aunchindoun/shadow_labyrinth/def_shadow_labyrinth.h (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/aunchindoun/shadow_labyrinth/def_shadow_labyrinth.h (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/aunchindoun/shadow_labyrinth/instance_shadow_labyrinth.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/aunchindoun/shadow_labyrinth/instance_shadow_labyrinth.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/aunchindoun/shadow_labyrinth/instance_shadow_labyrinth.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/aunchindoun/shadow_labyrinth/boss_grandmaster_vorpil.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/aunchindoun/shadow_labyrinth/boss_grandmaster_vorpil.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/aunchindoun/shadow_labyrinth/boss_grandmaster_vorpil.cpp (revision 6)
@@ -115,5 +115,5 @@
             }
 
-            if (m_creature->GetDistanceZ(who) > CREATURE_Z_ATTACK_RANGE)
+            if (!m_creature->canFly() && m_creature->GetDistanceZ(who) > CREATURE_Z_ATTACK_RANGE)
                 return;
 
Index: trunk/src/bindings/scripts/scripts/zone/aunchindoun/shadow_labyrinth/boss_ambassador_hellmaw.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/aunchindoun/shadow_labyrinth/boss_ambassador_hellmaw.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/aunchindoun/shadow_labyrinth/boss_ambassador_hellmaw.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/aunchindoun/shadow_labyrinth/boss_murmur.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/aunchindoun/shadow_labyrinth/boss_murmur.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/aunchindoun/shadow_labyrinth/boss_murmur.cpp (revision 6)
@@ -85,5 +85,5 @@
         if( !m_creature->getVictim() && who->isTargetableForAttack() && ( m_creature->IsHostileTo( who )) && who->isInAccessablePlaceFor(m_creature) )
         {
-            if (m_creature->GetDistanceZ(who) > CREATURE_Z_ATTACK_RANGE)
+            if (!m_creature->canFly() && m_creature->GetDistanceZ(who) > CREATURE_Z_ATTACK_RANGE)
                 return;
 
Index: trunk/src/bindings/scripts/scripts/zone/zangarmarsh/zangarmarsh.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/zangarmarsh/zangarmarsh.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/zangarmarsh/zangarmarsh.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/thunder_bluff/thunder_bluff.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/thunder_bluff/thunder_bluff.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/thunder_bluff/thunder_bluff.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/slave_pens/boss_rokmar.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/slave_pens/boss_rokmar.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/slave_pens/boss_rokmar.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/steam_vault/boss_hydromancer_thespia.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/steam_vault/boss_hydromancer_thespia.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/steam_vault/boss_hydromancer_thespia.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/steam_vault/boss_warlord_kalithresh.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/steam_vault/boss_warlord_kalithresh.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/steam_vault/boss_warlord_kalithresh.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/steam_vault/boss_mekgineer_steamrigger.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/steam_vault/boss_mekgineer_steamrigger.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/steam_vault/boss_mekgineer_steamrigger.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/steam_vault/def_steam_vault.h
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/steam_vault/def_steam_vault.h (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/steam_vault/def_steam_vault.h (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/steam_vault/instance_steam_vault.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/steam_vault/instance_steam_vault.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/steam_vault/instance_steam_vault.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/underbog/boss_ghazan.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/underbog/boss_ghazan.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/underbog/boss_ghazan.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/underbog/boss_hungarfen.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/underbog/boss_hungarfen.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/underbog/boss_hungarfen.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/boss_hydross_the_unstable.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/boss_hydross_the_unstable.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/boss_hydross_the_unstable.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/boss_leotheras_the_blind.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/boss_leotheras_the_blind.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/boss_leotheras_the_blind.cpp (revision 6)
@@ -296,25 +296,4 @@
     }
 
-    void MoveInLineOfSight(Unit *who)
-    {
-        if (!who || m_creature->getVictim())
-            return;
-
-        if (who->isTargetableForAttack() && who->isInAccessablePlaceFor(m_creature) && m_creature->IsHostileTo(who))
-        {
-            float attackRadius = m_creature->GetAttackDistance(who);
-            if (m_creature->IsWithinDistInMap(who, attackRadius) && m_creature->GetDistanceZ(who) <= CREATURE_Z_ATTACK_RANGE && m_creature->IsWithinLOSInMap(who))
-            {
-                if(who->HasStealthAura())
-                    who->RemoveSpellsCausingAura(SPELL_AURA_MOD_STEALTH);
-
-                DoStartAttackAndMovement(who);
-
-                if(!InCombat)
-                    StartEvent();
-            }
-        }
-    }
-
     void UpdateAI(const uint32 diff)
     {
Index: trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/boss_lady_vashj.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/boss_lady_vashj.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/boss_lady_vashj.cpp (revision 6)
@@ -617,22 +617,4 @@
     void Aggro(Unit *who)
     {
-    }
-
-    void MoveInLineOfSight(Unit *who)
-    {
-        if (!who || m_creature->getVictim())
-            return;
-
-        if (who->isTargetableForAttack() && who->isInAccessablePlaceFor(m_creature) && m_creature->IsHostileTo(who))
-        {
-            float attackRadius = m_creature->GetAttackDistance(who);
-            if (m_creature->IsWithinDistInMap(who, attackRadius) && m_creature->GetDistanceZ(who) <= CREATURE_Z_ATTACK_RANGE && m_creature->IsWithinLOSInMap(who))
-            {
-                if(who->HasStealthAura())
-                    who->RemoveSpellsCausingAura(SPELL_AURA_MOD_STEALTH);
-
-                m_creature->AddThreat(who, 0.1f);
-            }
-        }
     }
 
Index: trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/def_serpent_shrine.h
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/def_serpent_shrine.h (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/def_serpent_shrine.h (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/boss_fathomlord_karathress.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/boss_fathomlord_karathress.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/boss_fathomlord_karathress.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/boss_morogrim_tidewalker.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/boss_morogrim_tidewalker.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/boss_morogrim_tidewalker.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/instance_serpent_shrine.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/instance_serpent_shrine.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/coilfang_resevoir/serpent_shrine/instance_serpent_shrine.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/ruins_of_ahnqiraj/boss_moam.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/ruins_of_ahnqiraj/boss_moam.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/ruins_of_ahnqiraj/boss_moam.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/ruins_of_ahnqiraj/boss_buru.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/ruins_of_ahnqiraj/boss_buru.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/ruins_of_ahnqiraj/boss_buru.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/ruins_of_ahnqiraj/boss_rajaxx.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/ruins_of_ahnqiraj/boss_rajaxx.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/ruins_of_ahnqiraj/boss_rajaxx.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/ruins_of_ahnqiraj/instance_ruins_of_ahnqiraj.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/ruins_of_ahnqiraj/instance_ruins_of_ahnqiraj.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/ruins_of_ahnqiraj/instance_ruins_of_ahnqiraj.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/ruins_of_ahnqiraj/boss_ayamiss.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/ruins_of_ahnqiraj/boss_ayamiss.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/ruins_of_ahnqiraj/boss_ayamiss.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/ruins_of_ahnqiraj/boss_kurinnaxx.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/ruins_of_ahnqiraj/boss_kurinnaxx.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/ruins_of_ahnqiraj/boss_kurinnaxx.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/ruins_of_ahnqiraj/boss_ossirian.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/ruins_of_ahnqiraj/boss_ossirian.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/ruins_of_ahnqiraj/boss_ossirian.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/onyxias_lair/boss_onyxia.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/onyxias_lair/boss_onyxia.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/onyxias_lair/boss_onyxia.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/dun_morogh/dun_morogh.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/dun_morogh/dun_morogh.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/dun_morogh/dun_morogh.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/caverns_of_time/dark_portal/boss_aeonus.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/caverns_of_time/dark_portal/boss_aeonus.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/caverns_of_time/dark_portal/boss_aeonus.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/caverns_of_time/dark_portal/boss_chrono_lord_deja.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/caverns_of_time/dark_portal/boss_chrono_lord_deja.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/caverns_of_time/dark_portal/boss_chrono_lord_deja.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/caverns_of_time/dark_portal/boss_temporus.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/caverns_of_time/dark_portal/boss_temporus.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/caverns_of_time/dark_portal/boss_temporus.cpp (revision 6)
@@ -101,8 +101,11 @@
         }
 
-        if (who->isTargetableForAttack() && who->isInAccessablePlaceFor(m_creature) && m_creature->IsHostileTo(who))
+        if (!m_creature->getVictim() && who->isTargetableForAttack() && who->isInAccessablePlaceFor(m_creature) && m_creature->IsHostileTo(who))
         {
+            if (!m_creature->canFly() && m_creature->GetDistanceZ(who) > CREATURE_Z_ATTACK_RANGE)
+                return;
+
             float attackRadius = m_creature->GetAttackDistance(who);
-            if (m_creature->IsWithinDistInMap(who, attackRadius) && m_creature->GetDistanceZ(who) <= CREATURE_Z_ATTACK_RANGE && m_creature->IsWithinLOSInMap(who))
+            if (m_creature->IsWithinDistInMap(who, attackRadius) && m_creature->IsWithinLOSInMap(who))
             {
                 if(who->HasStealthAura())
Index: trunk/src/bindings/scripts/scripts/zone/caverns_of_time/old_hillsbrad/old_hillsbrad.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/caverns_of_time/old_hillsbrad/old_hillsbrad.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/caverns_of_time/old_hillsbrad/old_hillsbrad.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/caverns_of_time/old_hillsbrad/boss_captain_skarloc.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/caverns_of_time/old_hillsbrad/boss_captain_skarloc.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/caverns_of_time/old_hillsbrad/boss_captain_skarloc.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/caverns_of_time/old_hillsbrad/def_old_hillsbrad.h
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/caverns_of_time/old_hillsbrad/def_old_hillsbrad.h (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/caverns_of_time/old_hillsbrad/def_old_hillsbrad.h (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/caverns_of_time/old_hillsbrad/instance_old_hillsbrad.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/caverns_of_time/old_hillsbrad/instance_old_hillsbrad.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/caverns_of_time/old_hillsbrad/instance_old_hillsbrad.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/caverns_of_time/old_hillsbrad/boss_epoch_hunter.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/caverns_of_time/old_hillsbrad/boss_epoch_hunter.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/caverns_of_time/old_hillsbrad/boss_epoch_hunter.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/caverns_of_time/old_hillsbrad/boss_leutenant_drake.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/caverns_of_time/old_hillsbrad/boss_leutenant_drake.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/caverns_of_time/old_hillsbrad/boss_leutenant_drake.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/caverns_of_time/hyjal/boss_archimonde.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/caverns_of_time/hyjal/boss_archimonde.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/caverns_of_time/hyjal/boss_archimonde.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/caverns_of_time/hyjal/hyjalAI.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/caverns_of_time/hyjal/hyjalAI.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/caverns_of_time/hyjal/hyjalAI.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/caverns_of_time/hyjal/hyjalAI.h
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/caverns_of_time/hyjal/hyjalAI.h (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/caverns_of_time/hyjal/hyjalAI.h (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/caverns_of_time/hyjal/hyjal.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/caverns_of_time/hyjal/hyjal.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/caverns_of_time/hyjal/hyjal.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/caverns_of_time/hyjal/def_hyjal.h
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/caverns_of_time/hyjal/def_hyjal.h (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/caverns_of_time/hyjal/def_hyjal.h (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/caverns_of_time/hyjal/instance_hyjal.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/caverns_of_time/hyjal/instance_hyjal.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/caverns_of_time/hyjal/instance_hyjal.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/burning_steppes/burning_steppes.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/burning_steppes/burning_steppes.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/burning_steppes/burning_steppes.cpp (revision 6)
@@ -51,5 +51,5 @@
         if( !m_creature->getVictim() && who->isTargetableForAttack() && ( m_creature->IsHostileTo( who )) && who->isInAccessablePlaceFor(m_creature) )
         {
-            if (m_creature->GetDistanceZ(who) > CREATURE_Z_ATTACK_RANGE)
+            if (!m_creature->canFly() && m_creature->GetDistanceZ(who) > CREATURE_Z_ATTACK_RANGE)
                 return;
 
Index: trunk/src/bindings/scripts/scripts/zone/alterac_mountains/alterac_mountains.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/alterac_mountains/alterac_mountains.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/alterac_mountains/alterac_mountains.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/nagrand/nagrand.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/nagrand/nagrand.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/nagrand/nagrand.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/wailing_caverns/instance_wailing_caverns.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/wailing_caverns/instance_wailing_caverns.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/wailing_caverns/instance_wailing_caverns.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/eastern_plaguelands/eastern_plaguelands.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/eastern_plaguelands/eastern_plaguelands.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/eastern_plaguelands/eastern_plaguelands.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/shadowfang_keep/shadowfang_keep.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/shadowfang_keep/shadowfang_keep.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/shadowfang_keep/shadowfang_keep.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/shadowfang_keep/def_shadowfang_keep.h
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/shadowfang_keep/def_shadowfang_keep.h (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/shadowfang_keep/def_shadowfang_keep.h (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/shadowfang_keep/instance_shadowfang_keep.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/shadowfang_keep/instance_shadowfang_keep.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/shadowfang_keep/instance_shadowfang_keep.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/gruuls_lair/boss_gruul.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/gruuls_lair/boss_gruul.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/gruuls_lair/boss_gruul.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/gruuls_lair/boss_high_king_maulgar.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/gruuls_lair/boss_high_king_maulgar.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/gruuls_lair/boss_high_king_maulgar.cpp (revision 6)
@@ -345,11 +345,11 @@
     void MoveInLineOfSight(Unit *who)
     {
-        if (!who || m_creature->getVictim())
-            return;
-
-        if (who->isTargetableForAttack() && who->isInAccessablePlaceFor(m_creature) && m_creature->IsHostileTo(who))
-        {
+        if (!m_creature->getVictim() && who->isTargetableForAttack() && who->isInAccessablePlaceFor(m_creature) && m_creature->IsHostileTo(who))
+        {
+            if (!m_creature->canFly() && m_creature->GetDistanceZ(who) > CREATURE_Z_ATTACK_RANGE)
+                return;
+
             float attackRadius = m_creature->GetAttackDistance(who);
-            if (m_creature->IsWithinDistInMap(who, attackRadius) && m_creature->GetDistanceZ(who) <= CREATURE_Z_ATTACK_RANGE && m_creature->IsWithinLOSInMap(who))
+            if (m_creature->IsWithinDistInMap(who, attackRadius) && m_creature->IsWithinLOSInMap(who))
             {
                 if(who->HasStealthAura())
@@ -460,11 +460,11 @@
     void MoveInLineOfSight(Unit *who)
     {
-        if (!who || m_creature->getVictim())
-            return;
-
-        if (who->isTargetableForAttack() && who->isInAccessablePlaceFor(m_creature) && m_creature->IsHostileTo(who))
-        {
+        if (!m_creature->getVictim() && who->isTargetableForAttack() && who->isInAccessablePlaceFor(m_creature) && m_creature->IsHostileTo(who))
+        {
+            if (!m_creature->canFly() && m_creature->GetDistanceZ(who) > CREATURE_Z_ATTACK_RANGE)
+                return;
+
             float attackRadius = m_creature->GetAttackDistance(who);
-            if (m_creature->IsWithinDistInMap(who, attackRadius) && m_creature->GetDistanceZ(who) <= CREATURE_Z_ATTACK_RANGE && m_creature->IsWithinLOSInMap(who))
+            if (m_creature->IsWithinDistInMap(who, attackRadius) && m_creature->IsWithinLOSInMap(who))
             {
                 if(who->HasStealthAura())
@@ -560,11 +560,11 @@
     void MoveInLineOfSight(Unit *who)
     {
-        if (!who || m_creature->getVictim())
-            return;
-
-        if (who->isTargetableForAttack() && who->isInAccessablePlaceFor(m_creature) && m_creature->IsHostileTo(who))
-        {
+        if (!m_creature->getVictim() && who->isTargetableForAttack() && who->isInAccessablePlaceFor(m_creature) && m_creature->IsHostileTo(who))
+        {
+            if (!m_creature->canFly() && m_creature->GetDistanceZ(who) > CREATURE_Z_ATTACK_RANGE)
+                return;
+
             float attackRadius = m_creature->GetAttackDistance(who);
-            if (m_creature->IsWithinDistInMap(who, attackRadius) && m_creature->GetDistanceZ(who) <= CREATURE_Z_ATTACK_RANGE && m_creature->IsWithinLOSInMap(who))
+            if (m_creature->IsWithinDistInMap(who, attackRadius) && m_creature->IsWithinLOSInMap(who))
             {
                 if(who->HasStealthAura())
Index: trunk/src/bindings/scripts/scripts/zone/gruuls_lair/def_gruuls_lair.h
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/gruuls_lair/def_gruuls_lair.h (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/gruuls_lair/def_gruuls_lair.h (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/gruuls_lair/instance_gruuls_lair.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/gruuls_lair/instance_gruuls_lair.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/gruuls_lair/instance_gruuls_lair.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/bloodmyst_isle/bloodmyst_isle.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/bloodmyst_isle/bloodmyst_isle.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/bloodmyst_isle/bloodmyst_isle.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/deadmines/deadmines.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/deadmines/deadmines.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/deadmines/deadmines.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/deadmines/instance_deadmines.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/deadmines/instance_deadmines.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/deadmines/instance_deadmines.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/winterspring/winterspring.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/winterspring/winterspring.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/winterspring/winterspring.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/barrens/the_barrens.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/barrens/the_barrens.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/barrens/the_barrens.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/tirisfal_glades/tirisfal_glades.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/tirisfal_glades/tirisfal_glades.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/tirisfal_glades/tirisfal_glades.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/silvermoon/silvermoon_city.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/silvermoon/silvermoon_city.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/silvermoon/silvermoon_city.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/scarlet_monastery/boss_interrogator_vishas.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/scarlet_monastery/boss_interrogator_vishas.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/scarlet_monastery/boss_interrogator_vishas.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/scarlet_monastery/boss_azshir_the_sleepless.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/scarlet_monastery/boss_azshir_the_sleepless.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/scarlet_monastery/boss_azshir_the_sleepless.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/scarlet_monastery/boss_houndmaster_loksey.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/scarlet_monastery/boss_houndmaster_loksey.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/scarlet_monastery/boss_houndmaster_loksey.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/scarlet_monastery/boss_bloodmage_thalnos.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/scarlet_monastery/boss_bloodmage_thalnos.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/scarlet_monastery/boss_bloodmage_thalnos.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/scarlet_monastery/boss_herod.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/scarlet_monastery/boss_herod.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/scarlet_monastery/boss_herod.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/scarlet_monastery/boss_scarlet_commander_mograine.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/scarlet_monastery/boss_scarlet_commander_mograine.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/scarlet_monastery/boss_scarlet_commander_mograine.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/scarlet_monastery/boss_scorn.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/scarlet_monastery/boss_scorn.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/scarlet_monastery/boss_scorn.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/scarlet_monastery/boss_arcanist_doan.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/scarlet_monastery/boss_arcanist_doan.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/scarlet_monastery/boss_arcanist_doan.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/scarlet_monastery/boss_high_inquisitor_fairbanks.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/scarlet_monastery/boss_high_inquisitor_fairbanks.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/scarlet_monastery/boss_high_inquisitor_fairbanks.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/scarlet_monastery/boss_high_inquisitor_whitemane.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/scarlet_monastery/boss_high_inquisitor_whitemane.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/scarlet_monastery/boss_high_inquisitor_whitemane.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/karazhan/boss_shade_of_aran.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/karazhan/boss_shade_of_aran.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/karazhan/boss_shade_of_aran.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/karazhan/karazhan.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/karazhan/karazhan.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/karazhan/karazhan.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/karazhan/boss_netherspite.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/karazhan/boss_netherspite.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/karazhan/boss_netherspite.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/karazhan/boss_terestian_illhoof.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/karazhan/boss_terestian_illhoof.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/karazhan/boss_terestian_illhoof.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/karazhan/def_karazhan.h
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/karazhan/def_karazhan.h (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/karazhan/def_karazhan.h (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/karazhan/instance_karazhan.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/karazhan/instance_karazhan.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/karazhan/instance_karazhan.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/karazhan/bosses_opera.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/karazhan/bosses_opera.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/karazhan/bosses_opera.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/karazhan/boss_curator.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/karazhan/boss_curator.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/karazhan/boss_curator.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/karazhan/boss_maiden_of_virtue.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/karazhan/boss_maiden_of_virtue.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/karazhan/boss_maiden_of_virtue.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/karazhan/boss_nightbane.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/karazhan/boss_nightbane.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/karazhan/boss_nightbane.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/karazhan/boss_midnight.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/karazhan/boss_midnight.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/karazhan/boss_midnight.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/karazhan/boss_moroes.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/karazhan/boss_moroes.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/karazhan/boss_moroes.cpp (revision 6)
@@ -194,16 +194,16 @@
                 AddList.erase((AddList.begin())+(rand()%AddList.size()));
 
-            uint8 j = 0;
+            uint8 i = 0;
             for(std::vector<uint32>::iterator itr = AddList.begin(); itr != AddList.end(); ++itr)
             {
                 uint32 entry = *itr;
 
-                pCreature = m_creature->SummonCreature(entry, Locations[j][0], Locations[j][1], POS_Z, ORIENT, TEMPSUMMON_CORPSE_TIMED_DESPAWN, 10000);
+                pCreature = m_creature->SummonCreature(entry, Locations[i][0], Locations[i][1], POS_Z, ORIENT, TEMPSUMMON_CORPSE_TIMED_DESPAWN, 10000);
                 if(pCreature)
                 {
-                    AddGUID[j] = pCreature->GetGUID();
-                    AddId[j] = entry;
+                    AddGUID[i] = pCreature->GetGUID();
+                    AddId[i] = entry;
                 }
-                ++j;
+                ++i;
             }
 
Index: trunk/src/bindings/scripts/scripts/zone/karazhan/boss_prince_malchezaar.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/karazhan/boss_prince_malchezaar.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/karazhan/boss_prince_malchezaar.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/felwood/felwood.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/felwood/felwood.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/felwood/felwood.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/dustwallow_marsh/dustwallow_marsh.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/dustwallow_marsh/dustwallow_marsh.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/dustwallow_marsh/dustwallow_marsh.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/orgrimmar/orgrimmar.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/orgrimmar/orgrimmar.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/orgrimmar/orgrimmar.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/razorfen_downs/boss_amnennar_the_coldbringer.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/razorfen_downs/boss_amnennar_the_coldbringer.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/razorfen_downs/boss_amnennar_the_coldbringer.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/zulfarrak/zulfarrak.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/zulfarrak/zulfarrak.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/zulfarrak/zulfarrak.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/stranglethorn_vale/stranglethorn_vale.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/stranglethorn_vale/stranglethorn_vale.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/stranglethorn_vale/stranglethorn_vale.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_high_interrogator_gerstahn.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_high_interrogator_gerstahn.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_high_interrogator_gerstahn.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_seethrel.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_seethrel.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_seethrel.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/blackrock_depths/blackrock_depths.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/blackrock_depths/blackrock_depths.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/blackrock_depths/blackrock_depths.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_general_angerforge.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_general_angerforge.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_general_angerforge.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_gloomrel.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_gloomrel.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_gloomrel.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_haterel.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_haterel.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_haterel.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_moira_bronzebeard.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_moira_bronzebeard.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_moira_bronzebeard.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_gorosh_the_dervish.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_gorosh_the_dervish.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_gorosh_the_dervish.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_emperor_dagran_thaurissan.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_emperor_dagran_thaurissan.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_emperor_dagran_thaurissan.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_grizzle.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_grizzle.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_grizzle.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_ambassador_flamelash.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_ambassador_flamelash.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_ambassador_flamelash.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_magmus.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_magmus.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_magmus.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_doperel.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_doperel.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_doperel.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_angerrel.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_angerrel.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_angerrel.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_doomrel.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_doomrel.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_doomrel.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_anubshiah.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_anubshiah.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_anubshiah.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_vilerel.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_vilerel.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/blackrock_depths/boss_vilerel.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/loch_modan/loch_modan.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/loch_modan/loch_modan.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/loch_modan/loch_modan.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/terokkar_forest/terokkar_forest.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/terokkar_forest/terokkar_forest.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/terokkar_forest/terokkar_forest.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/western_plaguelands/western_plaguelands.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/western_plaguelands/western_plaguelands.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/western_plaguelands/western_plaguelands.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/ghostlands/ghostlands.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/ghostlands/ghostlands.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/ghostlands/ghostlands.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/molten_core/boss_gehennas.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/molten_core/boss_gehennas.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/molten_core/boss_gehennas.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/molten_core/boss_magmadar.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/molten_core/boss_magmadar.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/molten_core/boss_magmadar.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/molten_core/boss_shazzrah.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/molten_core/boss_shazzrah.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/molten_core/boss_shazzrah.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/molten_core/boss_garr.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/molten_core/boss_garr.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/molten_core/boss_garr.cpp (revision 6)
@@ -97,23 +97,4 @@
     }
 
-    void MoveInLineOfSight(Unit *who)
-    {
-        if (!who || m_creature->getVictim())
-            return;
-
-        if (who->isTargetableForAttack() && who->isInAccessablePlaceFor(m_creature) && m_creature->IsHostileTo(who))
-        {
-            float attackRadius = m_creature->GetAttackDistance(who);
-            if (m_creature->IsWithinDistInMap(who, attackRadius) && m_creature->GetDistanceZ(who) <= CREATURE_Z_ATTACK_RANGE && m_creature->IsWithinLOSInMap(who))
-            {
-                if(who->HasStealthAura())
-                    who->RemoveSpellsCausingAura(SPELL_AURA_MOD_STEALTH);
-
-                DoStartAttackAndMovement(who);
-
-            }
-        }
-    }
-
     void UpdateAI(const uint32 diff)
     {
Index: trunk/src/bindings/scripts/scripts/zone/molten_core/boss_majordomo_executus.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/molten_core/boss_majordomo_executus.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/molten_core/boss_majordomo_executus.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/molten_core/boss_ragnaros.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/molten_core/boss_ragnaros.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/molten_core/boss_ragnaros.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/molten_core/boss_sulfuron_harbinger.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/molten_core/boss_sulfuron_harbinger.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/molten_core/boss_sulfuron_harbinger.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/molten_core/molten_core.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/molten_core/molten_core.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/molten_core/molten_core.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/molten_core/boss_baron_geddon.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/molten_core/boss_baron_geddon.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/molten_core/boss_baron_geddon.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/molten_core/boss_lucifron.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/molten_core/boss_lucifron.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/molten_core/boss_lucifron.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/molten_core/boss_golemagg.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/molten_core/boss_golemagg.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/molten_core/boss_golemagg.cpp (revision 6)
@@ -139,22 +139,4 @@
     }
 
-    void MoveInLineOfSight(Unit *who)
-    {
-        if (!who || m_creature->getVictim())
-            return;
-
-        if (who->isTargetableForAttack() && who->isInAccessablePlaceFor(m_creature) && m_creature->IsHostileTo(who))
-        {
-            float attackRadius = m_creature->GetAttackDistance(who);
-            if (m_creature->IsWithinDistInMap(who, attackRadius) && m_creature->GetDistanceZ(who) <= CREATURE_Z_ATTACK_RANGE && m_creature->IsWithinLOSInMap(who))
-            {
-                if(who->HasStealthAura())
-                    who->RemoveSpellsCausingAura(SPELL_AURA_MOD_STEALTH);
-
-                DoStartAttackAndMovement(who);
-            }
-        }
-    }
-
     void UpdateAI(const uint32 diff)
     {
Index: trunk/src/bindings/scripts/scripts/zone/molten_core/def_molten_core.h
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/molten_core/def_molten_core.h (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/molten_core/def_molten_core.h (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/molten_core/instance_molten_core.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/molten_core/instance_molten_core.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/molten_core/instance_molten_core.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/zulaman/boss_janalai.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/zulaman/boss_janalai.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/zulaman/boss_janalai.cpp (revision 6)
@@ -695,21 +695,4 @@
     }
 
-    void MoveInLineOfSight(Unit *who)
-    {
-        if (!who || m_creature->getVictim())
-            return;
-
-        if (who->isTargetableForAttack() && who->isInAccessablePlaceFor(m_creature) && m_creature->IsHostileTo(who))
-        {
-            float attackRadius = m_creature->GetAttackDistance(who);
-            if (m_creature->IsWithinDistInMap(who, attackRadius) && m_creature->GetDistanceZ(who) <= CREATURE_Z_ATTACK_RANGE && m_creature->IsWithinLOSInMap(who))
-            {
-                if(who->HasStealthAura())
-                    who->RemoveSpellsCausingAura(SPELL_AURA_MOD_STEALTH);
-                DoStartAttackAndMovement(who);
-            }
-        }
-    }
-
     void UpdateAI(const uint32 diff)
     {
Index: trunk/src/bindings/scripts/scripts/zone/zulaman/zulaman.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/zulaman/zulaman.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/zulaman/zulaman.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/zulaman/boss_nalorakk.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/zulaman/boss_nalorakk.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/zulaman/boss_nalorakk.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/zulaman/def_zulaman.h
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/zulaman/def_zulaman.h (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/zulaman/def_zulaman.h (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/zulaman/instance_zulaman.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/zulaman/instance_zulaman.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/zulaman/instance_zulaman.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/netherstorm/netherstorm.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/netherstorm/netherstorm.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/netherstorm/netherstorm.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/isle_of_queldanas/isle_of_queldanas.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/isle_of_queldanas/isle_of_queldanas.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/isle_of_queldanas/isle_of_queldanas.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/azuremyst_isle/azuremyst_isle.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/azuremyst_isle/azuremyst_isle.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/azuremyst_isle/azuremyst_isle.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/uldaman/uldaman.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/uldaman/uldaman.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/uldaman/uldaman.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/uldaman/boss_ironaya.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/uldaman/boss_ironaya.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/uldaman/boss_ironaya.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/stratholme/boss_nerubenkan.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/stratholme/boss_nerubenkan.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/stratholme/boss_nerubenkan.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/stratholme/boss_magistrate_barthilas.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/stratholme/boss_magistrate_barthilas.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/stratholme/boss_magistrate_barthilas.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/stratholme/boss_timmy_the_cruel.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/stratholme/boss_timmy_the_cruel.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/stratholme/boss_timmy_the_cruel.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/stratholme/boss_cannon_master_willey.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/stratholme/boss_cannon_master_willey.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/stratholme/boss_cannon_master_willey.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/stratholme/boss_dathrohan_balnazzar.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/stratholme/boss_dathrohan_balnazzar.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/stratholme/boss_dathrohan_balnazzar.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/stratholme/stratholme.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/stratholme/stratholme.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/stratholme/stratholme.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/stratholme/boss_order_of_silver_hand.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/stratholme/boss_order_of_silver_hand.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/stratholme/boss_order_of_silver_hand.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/stratholme/boss_baroness_anastari.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/stratholme/boss_baroness_anastari.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/stratholme/boss_baroness_anastari.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/stratholme/boss_postmaster_malown.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/stratholme/boss_postmaster_malown.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/stratholme/boss_postmaster_malown.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/stratholme/def_stratholme.h
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/stratholme/def_stratholme.h (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/stratholme/def_stratholme.h (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/stratholme/boss_baron_rivendare.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/stratholme/boss_baron_rivendare.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/stratholme/boss_baron_rivendare.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/stratholme/instance_stratholme.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/stratholme/instance_stratholme.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/stratholme/instance_stratholme.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/stratholme/boss_maleki_the_pallid.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/stratholme/boss_maleki_the_pallid.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/stratholme/boss_maleki_the_pallid.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/stratholme/boss_ramstein_the_gorger.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/stratholme/boss_ramstein_the_gorger.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/stratholme/boss_ramstein_the_gorger.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/azshara/boss_azuregos.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/azshara/boss_azuregos.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/azshara/boss_azuregos.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/azshara/azshara.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/azshara/azshara.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/azshara/azshara.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/scholomance/boss_doctor_theolen_krastinov.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/scholomance/boss_doctor_theolen_krastinov.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/scholomance/boss_doctor_theolen_krastinov.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/scholomance/def_scholomance.h
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/scholomance/def_scholomance.h (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/scholomance/def_scholomance.h (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/scholomance/boss_vectus.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/scholomance/boss_vectus.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/scholomance/boss_vectus.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/scholomance/instance_scholomance.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/scholomance/instance_scholomance.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/scholomance/instance_scholomance.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/scholomance/boss_illucia_barov.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/scholomance/boss_illucia_barov.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/scholomance/boss_illucia_barov.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/scholomance/boss_instructor_malicia.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/scholomance/boss_instructor_malicia.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/scholomance/boss_instructor_malicia.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/scholomance/boss_death_knight_darkreaver.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/scholomance/boss_death_knight_darkreaver.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/scholomance/boss_death_knight_darkreaver.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/scholomance/boss_darkmaster_gandling.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/scholomance/boss_darkmaster_gandling.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/scholomance/boss_darkmaster_gandling.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/scholomance/boss_lord_alexei_barov.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/scholomance/boss_lord_alexei_barov.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/scholomance/boss_lord_alexei_barov.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/scholomance/boss_kormok.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/scholomance/boss_kormok.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/scholomance/boss_kormok.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/scholomance/boss_the_ravenian.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/scholomance/boss_the_ravenian.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/scholomance/boss_the_ravenian.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/scholomance/boss_ras_frostwhisper.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/scholomance/boss_ras_frostwhisper.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/scholomance/boss_ras_frostwhisper.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/scholomance/boss_jandice_barov.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/scholomance/boss_jandice_barov.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/scholomance/boss_jandice_barov.cpp (revision 6)
@@ -168,22 +168,4 @@
     }
 
-    void MoveInLineOfSight(Unit *who)
-    {
-        if (!who || m_creature->getVictim())
-            return;
-
-        if (who->isTargetableForAttack() && who->isInAccessablePlaceFor(m_creature) && m_creature->IsHostileTo(who))
-        {
-            float attackRadius = m_creature->GetAttackDistance(who);
-            if (m_creature->IsWithinDistInMap(who, attackRadius) && m_creature->GetDistanceZ(who) <= CREATURE_Z_ATTACK_RANGE && m_creature->IsWithinLOSInMap(who))
-            {
-                if(who->HasStealthAura())
-                    who->RemoveSpellsCausingAura(SPELL_AURA_MOD_STEALTH);
-
-                DoStartAttackAndMovement(who);
-            }
-        }
-    }
-
     void UpdateAI(const uint32 diff)
     {
Index: trunk/src/bindings/scripts/scripts/zone/scholomance/boss_lorekeeper_polkelt.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/scholomance/boss_lorekeeper_polkelt.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/scholomance/boss_lorekeeper_polkelt.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/silverpine_forest/silverpine_forest.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/silverpine_forest/silverpine_forest.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/silverpine_forest/silverpine_forest.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_noth.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_noth.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_noth.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_feugen.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_feugen.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_feugen.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_anubrekhan.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_anubrekhan.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_anubrekhan.cpp (revision 6)
@@ -100,11 +100,11 @@
     void MoveInLineOfSight(Unit *who)
     {
-        if (!who || m_creature->getVictim())
-            return;
-
-        if (who->isTargetableForAttack() && who->isInAccessablePlaceFor(m_creature) && m_creature->IsHostileTo(who))
-        {
+        if (!m_creature->getVictim() && who->isTargetableForAttack() && who->isInAccessablePlaceFor(m_creature) && m_creature->IsHostileTo(who))
+        {
+            if (!m_creature->canFly() && m_creature->GetDistanceZ(who) > CREATURE_Z_ATTACK_RANGE)
+                return;
+
             float attackRadius = m_creature->GetAttackDistance(who);
-            if (m_creature->IsWithinDistInMap(who, attackRadius) && m_creature->GetDistanceZ(who) <= CREATURE_Z_ATTACK_RANGE && m_creature->IsWithinLOSInMap(who))
+            if (m_creature->IsWithinDistInMap(who, attackRadius) && m_creature->IsWithinLOSInMap(who))
             {
                 if(who->HasStealthAura())
Index: trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_loatheb.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_loatheb.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_loatheb.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_faerlina.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_faerlina.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_faerlina.cpp (revision 6)
@@ -90,11 +90,11 @@
     void MoveInLineOfSight(Unit *who)
     {
-        if (!who || m_creature->getVictim())
-            return;
-
-        if (who->isTargetableForAttack() && who->isInAccessablePlaceFor(m_creature) && m_creature->IsHostileTo(who))
-        {
+        if (!m_creature->getVictim() && who->isTargetableForAttack() && who->isInAccessablePlaceFor(m_creature) && m_creature->IsHostileTo(who))
+        {
+            if (!m_creature->canFly() && m_creature->GetDistanceZ(who) > CREATURE_Z_ATTACK_RANGE)
+                return;
+
             float attackRadius = m_creature->GetAttackDistance(who);
-            if (m_creature->IsWithinDistInMap(who, attackRadius) && m_creature->GetDistanceZ(who) <= CREATURE_Z_ATTACK_RANGE)
+            if (m_creature->IsWithinDistInMap(who, attackRadius) && m_creature->IsWithinLOSInMap(who))
             {
                 if(who->HasStealthAura())
Index: trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_highlord_mograine.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_highlord_mograine.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_highlord_mograine.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_stalagg.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_stalagg.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_stalagg.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_gluth.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_gluth.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_gluth.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_gothik.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_gothik.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_gothik.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_patchwerk.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_patchwerk.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_patchwerk.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_thane_korthazz.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_thane_korthazz.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_thane_korthazz.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_heigan.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_heigan.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_heigan.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_kelthuzad.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_kelthuzad.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_kelthuzad.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_lady_blaumeux.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_lady_blaumeux.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_lady_blaumeux.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/naxxramas/instance_naxxramas.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/naxxramas/instance_naxxramas.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/naxxramas/instance_naxxramas.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_sir_zeliek.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_sir_zeliek.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_sir_zeliek.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_maexxna.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_maexxna.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_maexxna.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_sapphiron.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_sapphiron.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_sapphiron.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_grobbulus.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_grobbulus.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_grobbulus.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_thaddius.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_thaddius.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_thaddius.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_razuvious.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_razuvious.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/naxxramas/boss_razuvious.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/magisters_terrace/def_magisters_terrace.h
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/magisters_terrace/def_magisters_terrace.h (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/magisters_terrace/def_magisters_terrace.h (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/magisters_terrace/instance_magisters_terrace.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/magisters_terrace/instance_magisters_terrace.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/magisters_terrace/instance_magisters_terrace.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/magisters_terrace/boss_felblood_kaelthas.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/magisters_terrace/boss_felblood_kaelthas.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/magisters_terrace/boss_felblood_kaelthas.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/magisters_terrace/boss_selin_fireheart.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/magisters_terrace/boss_selin_fireheart.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/magisters_terrace/boss_selin_fireheart.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/magisters_terrace/boss_vexallus.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/magisters_terrace/boss_vexallus.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/magisters_terrace/boss_vexallus.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/magisters_terrace/boss_priestess_delrissa.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/magisters_terrace/boss_priestess_delrissa.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/magisters_terrace/boss_priestess_delrissa.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/silithus/silithus.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/silithus/silithus.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/silithus/silithus.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/maraudon/boss_landslide.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/maraudon/boss_landslide.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/maraudon/boss_landslide.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/maraudon/boss_noxxion.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/maraudon/boss_noxxion.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/maraudon/boss_noxxion.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/maraudon/boss_princess_theradras.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/maraudon/boss_princess_theradras.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/maraudon/boss_princess_theradras.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/maraudon/boss_celebras_the_cursed.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/maraudon/boss_celebras_the_cursed.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/maraudon/boss_celebras_the_cursed.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/hellfire_peninsula/boss_doomlord_kazzak.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/hellfire_peninsula/boss_doomlord_kazzak.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/hellfire_peninsula/boss_doomlord_kazzak.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/hellfire_peninsula/hellfire_peninsula.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/hellfire_peninsula/hellfire_peninsula.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/hellfire_peninsula/hellfire_peninsula.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/mulgore/mulgore.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/mulgore/mulgore.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/mulgore/mulgore.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/zone/feralas/feralas.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/zone/feralas/feralas.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/zone/feralas/feralas.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/areatrigger/areatrigger_scripts.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/areatrigger/areatrigger_scripts.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/areatrigger/areatrigger_scripts.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/item/item_scripts.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/item/item_scripts.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/item/item_scripts.cpp (revision 6)
Index: trunk/src/bindings/scripts/scripts/item/item_test.cpp
===================================================================
--- trunk/src/bindings/scripts/scripts/item/item_test.cpp (revision 2)
+++ trunk/src/bindings/scripts/scripts/item/item_test.cpp (revision 6)
Index: trunk/src/bindings/scripts/ScriptMgr.cpp
===================================================================
--- trunk/src/bindings/scripts/ScriptMgr.cpp (revision 5)
+++ trunk/src/bindings/scripts/ScriptMgr.cpp (revision 6)
@@ -1120,7 +1120,8 @@
 void ScriptsInit()
 {
-    //Trinity Script startup 
+    //Trinity Script startup
+    outstring_log(" _____     _       _ _         ____            _       _");
     outstring_log("|_   _| __(_)_ __ (_) |_ _   _/ ___|  ___ _ __(_)_ __ | |_ ");
-    outstring_log("  | || '__| | '_ \\| | __| | | \\___ \\ / __| \\'__| | \\'_ \\| __|");
+    outstring_log("  | || '__| | '_ \\| | __| | | \\___ \\ / __| \'__| | \'_ \\| __|");
     outstring_log("  | || |  | | | | | | |_| |_| |___) | (__| |  | | |_) | |_ ");
     outstring_log("  |_||_|  |_|_| |_|_|\\__|\\__, |____/ \\___|_|  |_| .__/ \\__|");
Index: trunk/win/VC71/TrinityRealm.vcproj
===================================================================
--- trunk/win/VC71/TrinityRealm.vcproj (revision 2)
+++ trunk/win/VC71/TrinityRealm.vcproj (revision 6)
@@ -24,5 +24,5 @@
 				Name="VCCLCompilerTool"
 				InlineFunctionExpansion="1"
-				AdditionalIncludeDirectories="..\..\dep\include;..\..\src\framework;..\..\src\shared;..\..\src\realmd"
+				AdditionalIncludeDirectories="..\..\dep\include;..\..\src\framework;..\..\src\shared;..\..\src\realmd;..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="VERSION=&quot;0.12.0-SVN&quot;,WIN32,NDEBUG,_CONSOLE"
 				StringPooling="TRUE"
@@ -92,5 +92,5 @@
 				Name="VCCLCompilerTool"
 				Optimization="0"
-				AdditionalIncludeDirectories="..\..\dep\include;..\..\src\framework;..\..\src\shared;..\..\src\realmd"
+				AdditionalIncludeDirectories="..\..\dep\include;..\..\src\framework;..\..\src\shared;..\..\src\realmd;..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="VERSION=&quot;0.12.0-SVN&quot;;WIN32;_DEBUG;MANGOS_DEBUG;_CONSOLE"
 				IgnoreStandardIncludePath="FALSE"
Index: trunk/win/VC71/shared.vcproj
===================================================================
--- trunk/win/VC71/shared.vcproj (revision 2)
+++ trunk/win/VC71/shared.vcproj (revision 6)
@@ -22,5 +22,5 @@
 				Name="VCCLCompilerTool"
 				InlineFunctionExpansion="1"
-				AdditionalIncludeDirectories="..\..\dep\include;..\..\dep\include\g3dlite;..\..\src\framework;..\..\src\shared"
+				AdditionalIncludeDirectories="..\..\dep\include;..\..\dep\include\g3dlite;..\..\src\framework;..\..\src\shared;..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="WIN32;NDEBUG;_LIB"
 				StringPooling="TRUE"
@@ -78,5 +78,5 @@
 				Name="VCCLCompilerTool"
 				Optimization="0"
-				AdditionalIncludeDirectories="..\..\dep\include;..\..\dep\include\g3dlite;..\..\src\framework;..\..\src\shared"
+				AdditionalIncludeDirectories="..\..\dep\include;..\..\dep\include\g3dlite;..\..\src\framework;..\..\src\shared;..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="WIN32;_DEBUG;MANGOS_DEBUG;_LIB"
 				BasicRuntimeChecks="3"
Index: trunk/win/VC71/ACE_vc71.vcproj
===================================================================
--- trunk/win/VC71/ACE_vc71.vcproj (revision 6)
+++ trunk/win/VC71/ACE_vc71.vcproj (revision 6)
@@ -0,0 +1,3799 @@
+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioProject
+	ProjectType="Visual C++"
+	Version="7.10"
+	Name="ACE_Wraper"
+	ProjectGUID="{7C74F49E-FECA-1BAD-6757-8A6348EA12C8}"
+	SccProjectName=""
+	SccLocalPath="">
+	<Platforms>
+		<Platform
+			Name="Win32"/>
+	</Platforms>
+	<Configurations>
+		<Configuration
+			Name="Debug|Win32"
+			OutputDirectory="..\..\dep\lib\$(PlatformName)_$(ConfigurationName)"
+			IntermediateDirectory=".\ace__$(PlatformName)_$(ConfigurationName)"
+			ConfigurationType="2"
+			UseOfMFC="0"
+			ATLMinimizesCRunTimeLibraryUsage="FALSE"
+			CharacterSet="0">
+			<Tool
+				Name="VCCLCompilerTool"
+				AdditionalOptions="/wd 4748"
+				Optimization="0"
+				AdditionalIncludeDirectories="..\..\dep\ACE_wrappers"
+				PreprocessorDefinitions="ACE_BUILD_DLL;_DEBUG;WIN32;_WINDOWS"
+				MinimalRebuild="FALSE"
+				ExceptionHandling="TRUE"
+				BasicRuntimeChecks="3"
+				RuntimeLibrary="3"
+				BufferSecurityCheck="TRUE"
+				EnableFunctionLevelLinking="TRUE"
+				TreatWChar_tAsBuiltInType="TRUE"
+				ForceConformanceInForLoopScope="TRUE"
+				RuntimeTypeInfo="TRUE"
+				ProgramDataBaseFileName="Debug\ACE_vc71\I386/"
+				WarningLevel="3"
+				SuppressStartupBanner="TRUE"
+				Detect64BitPortabilityProblems="FALSE"
+				DebugInformationFormat="3"/>
+			<Tool
+				Name="VCCustomBuildTool"/>
+			<Tool
+				Name="VCLinkerTool"
+				AdditionalDependencies=""
+				OutputFile="$(OutDir)\ACEd.dll"
+				LinkIncremental="2"
+				SuppressStartupBanner="TRUE"
+				AdditionalLibraryDirectories=""
+				GenerateDebugInformation="TRUE"
+				ProgramDatabaseFile="$(OutDir)\ACEd.pdb"
+				SubSystem="1"
+				ImportLibrary="$(OutDir)\ACEd.lib"
+				TargetMachine="1"/>
+			<Tool
+				Name="VCMIDLTool"
+				TypeLibraryName="$(InputName).tlb"
+				HeaderFileName="$(InputName).h"
+				InterfaceIdentifierFileName="$(InputName)_i.c"
+				ProxyFileName="$(InputName)_p.c"/>
+			<Tool
+				Name="VCPostBuildEventTool"/>
+			<Tool
+				Name="VCPreBuildEventTool"/>
+			<Tool
+				Name="VCPreLinkEventTool"/>
+			<Tool
+				Name="VCResourceCompilerTool"
+				PreprocessorDefinitions="_DEBUG"
+				Culture="1033"
+				AdditionalIncludeDirectories=".."/>
+			<Tool
+				Name="VCWebServiceProxyGeneratorTool"/>
+			<Tool
+				Name="VCXMLDataGeneratorTool"/>
+			<Tool
+				Name="VCWebDeploymentTool"/>
+			<Tool
+				Name="VCManagedWrapperGeneratorTool"/>
+			<Tool
+				Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
+		</Configuration>
+		<Configuration
+			Name="Release|Win32"
+			OutputDirectory="..\..\dep\lib\$(PlatformName)_$(ConfigurationName)"
+			IntermediateDirectory=".\ace__$(PlatformName)_$(ConfigurationName)"
+			ConfigurationType="2"
+			UseOfMFC="0"
+			ATLMinimizesCRunTimeLibraryUsage="FALSE"
+			CharacterSet="0"
+			ReferencesPath="..\..\dep\ACE_wrappers">
+			<Tool
+				Name="VCCLCompilerTool"
+				AdditionalOptions="/wd 4748"
+				Optimization="3"
+				AdditionalIncludeDirectories="..\..\dep\ACE_wrappers"
+				PreprocessorDefinitions="ACE_BUILD_DLL;NDEBUG;WIN32;_WINDOWS"
+				MinimalRebuild="FALSE"
+				ExceptionHandling="TRUE"
+				RuntimeLibrary="2"
+				BufferSecurityCheck="TRUE"
+				EnableFunctionLevelLinking="TRUE"
+				TreatWChar_tAsBuiltInType="TRUE"
+				ForceConformanceInForLoopScope="TRUE"
+				RuntimeTypeInfo="TRUE"
+				WarningLevel="3"
+				SuppressStartupBanner="TRUE"
+				Detect64BitPortabilityProblems="FALSE"
+				DebugInformationFormat="3"/>
+			<Tool
+				Name="VCCustomBuildTool"/>
+			<Tool
+				Name="VCLinkerTool"
+				AdditionalDependencies=""
+				OutputFile="$(OutDir)\ACE.dll"
+				LinkIncremental="1"
+				SuppressStartupBanner="TRUE"
+				AdditionalLibraryDirectories=""
+				GenerateDebugInformation="TRUE"
+				SubSystem="1"
+				OptimizeReferences="2"
+				EnableCOMDATFolding="2"
+				ImportLibrary="$(OutDir)\ACE.lib"
+				TargetMachine="1"/>
+			<Tool
+				Name="VCMIDLTool"
+				TypeLibraryName="$(InputName).tlb"
+				HeaderFileName="$(InputName).h"
+				InterfaceIdentifierFileName="$(InputName)_i.c"
+				ProxyFileName="$(InputName)_p.c"/>
+			<Tool
+				Name="VCPostBuildEventTool"/>
+			<Tool
+				Name="VCPreBuildEventTool"/>
+			<Tool
+				Name="VCPreLinkEventTool"/>
+			<Tool
+				Name="VCResourceCompilerTool"
+				PreprocessorDefinitions="NDEBUG"
+				Culture="1033"
+				AdditionalIncludeDirectories=".."/>
+			<Tool
+				Name="VCWebServiceProxyGeneratorTool"/>
+			<Tool
+				Name="VCXMLDataGeneratorTool"/>
+			<Tool
+				Name="VCWebDeploymentTool"/>
+			<Tool
+				Name="VCManagedWrapperGeneratorTool"/>
+			<Tool
+				Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
+		</Configuration>
+	</Configurations>
+	<References>
+	</References>
+	<Files>
+		<Filter
+			Name="Source Files"
+			Filter="cpp;cxx;cc;C;c">
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ACE.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ACE_crc32.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ACE_crc_ccitt.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ace_wchar.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Activation_Queue.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Active_Map_Manager.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Addr.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Argv_Type_Converter.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Assert.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Asynch_IO.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Asynch_IO_Impl.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Asynch_Pseudo_Task.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Acceptor.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Addr.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Connector.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Params.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_QoS.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Stream.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Atomic_Op.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Atomic_Op_Sparc.c">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Auto_Event.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Barrier.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Base_Thread_Adapter.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Based_Pointer_Repository.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Basic_Stats.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Basic_Types.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Capabilities.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\CDR_Base.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\CDR_Size.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\CDR_Stream.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Cleanup.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Codecs.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Codeset_IBM1047.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Codeset_Registry.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Codeset_Registry_db.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Condition_Recursive_Thread_Mutex.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Condition_Thread_Mutex.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Configuration.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Configuration_Import_Export.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Connection_Recycling_Strategy.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Containers.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Copy_Disabled.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Countdown_Time.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Date_Time.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DEV.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DEV_Addr.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DEV_Connector.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DEV_IO.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dev_Poll_Reactor.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dirent.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dirent_Selector.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DLL.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DLL_Manager.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dump.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dynamic.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dynamic_Message_Strategy.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dynamic_Service_Base.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dynamic_Service_Dependency.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Encoding_Converter.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Encoding_Converter_Factory.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Event.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Event_Handler.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO_Recv.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO_Recv_Msg.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO_Send.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO_Send_Msg.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FILE.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FILE_Addr.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FILE_Connector.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FILE_IO.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\File_Lock.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Filecache.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Flag_Manip.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Framework_Component.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Functor.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Functor_String.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Get_Opt.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\gethrtime.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Handle_Ops.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Handle_Set.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Hashable.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\High_Res_Timer.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ICMP_Socket.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\INET_Addr.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Init_ACE.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\IO_Cntl_Msg.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\IO_SAP.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\IOStream.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\IPC_SAP.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Lib_Find.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Local_Memory_Pool.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Local_Name_Space.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Local_Tokens.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Lock.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Msg.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Msg_Backend.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Msg_Callback.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Msg_IPC.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Msg_NT_Event_Log.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Msg_UNIX_Syslog.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Record.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Logging_Strategy.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK_Acceptor.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK_CODgram.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK_Connector.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK_Dgram.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK_Stream.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Malloc.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Malloc_Allocator.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Manual_Event.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_Acceptor.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_Addr.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_Connector.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_IO.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Mem_Map.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_SAP.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_Stream.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Block.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Queue.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Queue_NT.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Queue_Vx.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Method_Request.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MMAP_Memory_Pool.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Admin.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Admin_Manager.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Base.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Control_Action.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Control_Types.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Point_Registry.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Size.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Msg_WFMO_Reactor.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Multihomed_INET_Addr.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Mutex.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Name_Proxy.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Name_Request_Reply.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Name_Space.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Naming_Context.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Netlink_Addr.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Notification_Queue.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Notification_Strategy.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\NT_Service.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Obchunk.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Object_Manager.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Object_Manager_Base.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_Errno.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_Log_Msg_Attributes.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_main.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_arpa_inet.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_ctype.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_dirent.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_dlfcn.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_errno.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_fcntl.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_math.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_netdb.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_poll.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_pwd.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_regex.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_signal.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_stdio.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_stdlib.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_string.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_strings.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_stropts.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_mman.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_msg.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_resource.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_select.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_sendfile.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_shm.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_socket.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_stat.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_time.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_uio.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_utsname.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_wait.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_Thread.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_time.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_unistd.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_wchar.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_QoS.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_Thread_Adapter.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_TLI.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Pagefile_Memory_Pool.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Parse_Node.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\PI_Malloc.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Ping_Socket.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Pipe.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\POSIX_Asynch_IO.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\POSIX_CB_Proactor.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\POSIX_Proactor.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Priority_Reactor.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Proactor.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Proactor_Impl.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Process.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Process_Manager.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Process_Mutex.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Process_Semaphore.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Profile_Timer.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Reactor.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Reactor_Impl.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Reactor_Notification_Strategy.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Reactor_Timer_Interface.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Read_Buffer.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Recursive_Thread_Mutex.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Recyclable.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Registry.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Registry_Name_Space.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Remote_Name_Space.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Remote_Tokens.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Rtems_init.c">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\RW_Mutex.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\RW_Process_Mutex.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\RW_Thread_Mutex.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sample_History.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sbrk_Memory_Pool.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sched_Params.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Select_Reactor_Base.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Semaphore.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Config.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Gestalt.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Manager.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Object.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Repository.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Types.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Shared_Memory.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Shared_Memory_MM.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Shared_Memory_Pool.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Shared_Memory_SV.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Shared_Object.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sig_Adapter.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sig_Handler.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Signal.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Acceptor.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_CODgram.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sock_Connect.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Connector.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Dgram.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Dgram_Bcast.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Dgram_Mcast.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_IO.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Netlink.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_SEQPACK_Acceptor.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_SEQPACK_Association.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_SEQPACK_Connector.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Stream.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SPIPE.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SPIPE_Acceptor.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SPIPE_Addr.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SPIPE_Connector.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SPIPE_Stream.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SString.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Stack_Trace.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Stats.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\String_Base_Const.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SUN_Proactor.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Message.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Message_Queue.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Semaphore_Complex.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Semaphore_Simple.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Shared_Memory.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Svc_Conf_Lexer.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Svc_Conf_y.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Synch_Options.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\System_Time.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Task.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Adapter.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Control.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Exit.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Hook.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Manager.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Mutex.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Semaphore.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Throughput_Stats.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Time_Value.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timeprobe.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TLI.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TLI_Acceptor.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TLI_Connector.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TLI_Stream.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Token.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Token_Collection.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Token_Invariants.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Token_Manager.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Token_Request_Reply.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TP_Reactor.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Trace.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TSS_Adapter.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TTY_IO.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UNIX_Addr.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UPIPE_Acceptor.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UPIPE_Connector.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UPIPE_Stream.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UTF16_Encoding_Converter.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UTF32_Encoding_Converter.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UTF8_Encoding_Converter.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UUID.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\WFMO_Reactor.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\WIN32_Asynch_IO.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\WIN32_Proactor.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\XML_Svc_Conf.cpp">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\XTI_ATM_Mcast.cpp">
+			</File>
+		</Filter>
+		<Filter
+			Name="Header Files"
+			Filter="h;hpp;hxx;hh">
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Acceptor.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ACE.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ACE_export.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ace_wchar.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Activation_Queue.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Active_Map_Manager.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Active_Map_Manager_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Addr.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Arg_Shifter.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ARGV.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Argv_Type_Converter.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Array.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Array_Base.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Array_Map.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Assert.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Asynch_Acceptor.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Asynch_Connector.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Asynch_IO.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Asynch_IO_Impl.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Asynch_Pseudo_Task.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Acceptor.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Addr.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Connector.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Params.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_QoS.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Stream.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Atomic_Op.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Atomic_Op_Sparc.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Atomic_Op_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Auto_Event.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Auto_Functor.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Auto_IncDec_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Auto_Ptr.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Barrier.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Base_Thread_Adapter.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Based_Pointer_Repository.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Based_Pointer_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Basic_Stats.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Basic_Types.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Bound_Ptr.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Cache_Map_Manager_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Cached_Connect_Strategy_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Caching_Strategies_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Caching_Utility_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Capabilities.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\CDR_Base.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\CDR_Size.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\CDR_Stream.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\CE_Screen_Output.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\checked_iterator.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Cleanup.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Cleanup_Strategies_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Codecs.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Codeset_IBM1047.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Codeset_Registry.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Codeset_Symbols.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Condition_Recursive_Thread_Mutex.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Condition_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Condition_Thread_Mutex.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-aix-5.x.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-all.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-borland-common.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-cray.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-cxx-common.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-cygwin32.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-doxygen.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-freebsd.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-g++-common.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-ghs-common.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-hpux-11.00.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-icc-common.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-integritySCA.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-irix6.5.x-sgic++.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-irix6.x-common.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-irix6.x-g++.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-irix6.x-sgic++.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-linux-common.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-linux.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-lite.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-lynxos.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-macosx-leopard.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-macosx-panther.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-macosx-tiger.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-macosx.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-macros.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-minimal.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-mvs.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-netbsd.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-openbsd.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-openvms.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-pharlap.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-posix-nonetworking.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-posix.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-qnx-neutrino.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-qnx-rtp-62x.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-qnx-rtp-common.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-qnx-rtp-pre62x.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-qnx-rtp.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-rtems.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-sco-5.0.0-nothread.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-sco-5.0.0.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-suncc-common.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-sunos5.10.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-sunos5.11.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-sunos5.4-g++.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-sunos5.4-sunc++-4.x.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-sunos5.5.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-sunos5.6.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-sunos5.7.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-sunos5.8.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-sunos5.9.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-tandem-nsk-mips-v2.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-tandem-nsk-mips-v3.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-tandem.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-tru64.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-unixware-7.1.0.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-unixware-7.1.0.udk.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-visualage.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-vxworks.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-vxworks5.x.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-vxworks6.2.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-vxworks6.3.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-vxworks6.4.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-vxworks6.5.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-vxworks6.6.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-win32-borland.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-win32-common.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-win32-dmc.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-win32-ghs.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-win32-interix.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-win32-mingw.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-win32-msvc-7.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-win32-msvc-8.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-win32-msvc-9.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-win32-msvc.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-win32.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-WinCE.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Configuration.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Configuration_Import_Export.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Connection_Recycling_Strategy.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Connector.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Containers.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Containers_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Copy_Disabled.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\CORBA_macros.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Countdown_Time.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Date_Time.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Default_Constants.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DEV.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DEV_Addr.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DEV_Connector.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DEV_IO.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dev_Poll_Reactor.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dirent.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dirent_Selector.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DLL.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DLL_Manager.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dump.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dump_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dynamic.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dynamic_Message_Strategy.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dynamic_Service.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dynamic_Service_Base.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dynamic_Service_Dependency.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Encoding_Converter.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Encoding_Converter_Factory.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Env_Value_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Event.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Event_Handler.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Event_Handler_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Exception_Macros.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO_Recv.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO_Recv_Msg.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO_Send.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO_Send_Msg.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FILE.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FILE_Addr.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FILE_Connector.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FILE_IO.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\File_Lock.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Filecache.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Flag_Manip.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Framework_Component.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Framework_Component_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Free_List.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Functor.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Functor_String.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Functor_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Future.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Future_Set.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Get_Opt.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Global_Macros.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Guard_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Handle_Gobbler.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Handle_Ops.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Handle_Set.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Hash_Cache_Map_Manager_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Hash_Map_Manager.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Hash_Map_Manager_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Hash_Map_With_Allocator_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Hash_Multi_Map_Manager_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Hashable.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\High_Res_Timer.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ICMP_Socket.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\If_Then_Else.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\INET_Addr.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Init_ACE.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Intrusive_Auto_Ptr.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Intrusive_List.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Intrusive_List_Node.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\IO_Cntl_Msg.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\IO_SAP.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\iosfwd.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\IOStream.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\IOStream_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\IPC_SAP.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Lib_Find.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Local_Memory_Pool.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Local_Name_Space.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Local_Name_Space_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Local_Tokens.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Lock.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Lock_Adapter_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LOCK_SOCK_Acceptor.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Msg.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Msg_Backend.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Msg_Callback.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Msg_IPC.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Msg_NT_Event_Log.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Msg_UNIX_Syslog.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Priority.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Record.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Logging_Strategy.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK_Acceptor.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK_CODgram.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK_Connector.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK_Dgram.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK_Stream.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Malloc.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Malloc_Allocator.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Malloc_Base.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Malloc_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Managed_Object.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Manual_Event.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Map.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Map_Manager.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Map_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_Acceptor.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_Addr.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_Connector.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_IO.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Mem_Map.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_SAP.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_Stream.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Memory_Pool.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Block.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Block_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Queue.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Queue_NT.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Queue_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Queue_Vx.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Method_Object.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Method_Request.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Metrics_Cache.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Metrics_Cache_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Min_Max.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MMAP_Memory_Pool.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Module.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Admin.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Admin_Manager.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Base.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Control_Action.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Control_Types.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Point_Registry.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Size.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Msg_WFMO_Reactor.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Multihomed_INET_Addr.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Mutex.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Name_Proxy.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Name_Request_Reply.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Name_Space.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Naming_Context.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Netlink_Addr.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Node.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Notification_Queue.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Notification_Strategy.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\NT_Service.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Null_Barrier.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Null_Condition.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Null_Mutex.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Null_Semaphore.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Numeric_Limits.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Obchunk.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Object_Manager.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Object_Manager_Base.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Obstack.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Obstack_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_aio.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_assert.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_byteswap.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_complex.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_cpio.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_ctype.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_Dirent.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_dirent.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_dlfcn.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_errno.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_Errno.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_fcntl.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_fenv.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_float.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_fmtmsg.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_fnmatch.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_ftw.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_glob.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_grp.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_iconv.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\net\os_if.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\netinet\os_in.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\arpa\os_inet.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_intrin.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_inttypes.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_ipc.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_iso646.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_kstat.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_langinfo.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_libgen.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_limits.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_loadavg.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_local.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_Log_Msg_Attributes.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_main.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_math.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_Memory.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_mman.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_monetary.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_mqueue.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_msg.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_ndbm.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_netdb.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_nl_types.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_arpa_inet.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_ctype.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_dirent.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_dlfcn.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_errno.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_fcntl.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_macros.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_math.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_netdb.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_poll.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_pwd.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_regex.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_signal.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_stdio.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_stdlib.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_string.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_strings.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_stropts.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_mman.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_msg.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_resource.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_select.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_sendfile.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_shm.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_socket.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_stat.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_time.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_uio.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_utsname.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_wait.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_Thread.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_time.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_unistd.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_wchar.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_pdh.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_pdhmsg.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_poll.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_pstat.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_pthread.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_pwd.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_QoS.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_regex.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_resource.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_sched.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_search.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_select.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_sem.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_semaphore.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_setjmp.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_shm.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_signal.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_socket.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_spawn.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_stat.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_statvfs.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_stdarg.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_stdbool.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_stddef.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_stdint.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_stdio.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_stdlib.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_string.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_String.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_strings.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_stropts.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_sysctl.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_sysinfo.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_syslog.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_tar.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\netinet\os_tcp.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_termios.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_tgmath.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_Thread_Adapter.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_time.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_time.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_timeb.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_times.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_TLI.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_trace.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_types.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_ucontext.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_uio.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_ulimit.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_un.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_unistd.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_utime.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_utmpx.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_utsname.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_wait.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_wchar.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_wctype.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_wordexp.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Pagefile_Memory_Pool.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Pair.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Pair_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Parse_Node.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\PI_Malloc.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Ping_Socket.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Pipe.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\POSIX_Asynch_IO.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\POSIX_CB_Proactor.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\POSIX_Proactor.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\post.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\pre.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Priority_Reactor.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Proactor.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Proactor_Impl.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Process.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Process_Manager.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Process_Mutex.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Process_Semaphore.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Profile_Timer.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\RB_Tree.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Reactor.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Reactor_Impl.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Reactor_Notification_Strategy.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Reactor_Timer_Interface.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Reactor_Token_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Read_Buffer.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Recursive_Thread_Mutex.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Recyclable.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Refcountable.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Refcountable_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Refcounted_Auto_Ptr.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Registry.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Registry_Name_Space.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Remote_Name_Space.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Remote_Tokens.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Reverse_Lock_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\RW_Mutex.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\RW_Process_Mutex.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\RW_Thread_Mutex.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sample_History.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sbrk_Memory_Pool.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sched_Params.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Select_Reactor.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Select_Reactor_Base.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Select_Reactor_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Semaphore.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Config.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Gestalt.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Manager.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Object.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Repository.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Templates.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Types.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Shared_Memory.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Shared_Memory_MM.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Shared_Memory_Pool.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Shared_Memory_SV.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Shared_Object.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sig_Adapter.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sig_Handler.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Signal.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Singleton.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Acceptor.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_CODgram.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sock_Connect.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Connector.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Dgram.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Dgram_Bcast.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Dgram_Mcast.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_IO.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Netlink.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_SEQPACK_Acceptor.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_SEQPACK_Association.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_SEQPACK_Connector.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Stream.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SPIPE.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SPIPE_Acceptor.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SPIPE_Addr.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SPIPE_Connector.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SPIPE_Stream.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SString.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SStringfwd.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Stack_Trace.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Static_Object_Lock.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Stats.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Strategies.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Strategies_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Stream.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Stream_Modules.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\streams.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\String_Base.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\String_Base_Const.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SUN_Proactor.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Message.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Message_Queue.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Semaphore_Complex.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Semaphore_Simple.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Shared_Memory.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Svc_Conf.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Svc_Conf_Lexer.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Svc_Conf_Param.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Svc_Conf_Token_Table.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Svc_Conf_Tokens.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\svc_export.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Svc_Handler.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Synch.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Synch_Options.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Synch_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Synch_Traits.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\System_Time.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Task.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Task_Ex_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Task_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Test_and_Set.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Adapter.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Control.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Exit.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Hook.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Manager.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Mutex.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Semaphore.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Throughput_Stats.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Time_Value.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timeprobe.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timeprobe_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timer_Hash.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timer_Hash_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timer_Heap.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timer_Heap_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timer_List.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timer_List_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timer_Queue.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timer_Queue_Adapters.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timer_Queue_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timer_Queuefwd.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timer_Wheel.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timer_Wheel_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TLI.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TLI_Acceptor.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TLI_Connector.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TLI_Stream.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Token.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Token_Collection.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Token_Invariants.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Token_Manager.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Token_Request_Reply.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TP_Reactor.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Trace.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Truncate.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TSS_Adapter.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TSS_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TTY_IO.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Typed_SV_Message.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Typed_SV_Message_Queue.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Unbounded_Queue.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Unbounded_Set.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Unbounded_Set_Ex.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UNIX_Addr.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UPIPE_Acceptor.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UPIPE_Addr.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UPIPE_Connector.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UPIPE_Stream.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UTF16_Encoding_Converter.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UTF32_Encoding_Converter.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UTF8_Encoding_Converter.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UUID.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Value_Ptr.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Vector_T.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Version.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Versioned_Namespace.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\WFMO_Reactor.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\WIN32_Asynch_IO.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\WIN32_Proactor.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\XML_Svc_Conf.h">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\XTI_ATM_Mcast.h">
+			</File>
+		</Filter>
+		<Filter
+			Name="Inline Files"
+			Filter="i;inl">
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ACE.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ace_wchar.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Activation_Queue.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Active_Map_Manager.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Active_Map_Manager_T.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Addr.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ARGV.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Argv_Type_Converter.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Array_Base.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Array_Map.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Asynch_IO_Impl.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Acceptor.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Addr.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Connector.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Params.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_QoS.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Stream.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Atomic_Op.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Atomic_Op_T.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Auto_Event.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Auto_Functor.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Auto_IncDec_T.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Auto_Ptr.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Barrier.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Base_Thread_Adapter.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Based_Pointer_T.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Basic_Stats.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Basic_Types.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Bound_Ptr.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Cache_Map_Manager_T.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Caching_Strategies_T.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Capabilities.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\CDR_Base.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\CDR_Size.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\CDR_Stream.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Cleanup.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Codeset_Registry.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Condition_T.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Condition_Thread_Mutex.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Configuration.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Containers.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Containers_T.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Date_Time.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DEV.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DEV_Addr.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DEV_Connector.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DEV_IO.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dev_Poll_Reactor.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dirent.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dirent_Selector.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dynamic.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dynamic_Message_Strategy.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dynamic_Service.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Env_Value_T.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Event.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Event_Handler.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Event_Handler_T.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO_Recv.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO_Recv_Msg.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO_Send.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO_Send_Msg.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FILE.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FILE_Addr.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FILE_Connector.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FILE_IO.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\File_Lock.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Flag_Manip.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Framework_Component.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Functor.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Functor_String.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Functor_T.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Get_Opt.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Guard_T.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Handle_Gobbler.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Handle_Set.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Hash_Cache_Map_Manager_T.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Hash_Map_Manager_T.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Hash_Map_With_Allocator_T.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Hash_Multi_Map_Manager_T.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Hashable.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\High_Res_Timer.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\INET_Addr.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Intrusive_Auto_Ptr.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Intrusive_List.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Intrusive_List_Node.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\IO_Cntl_Msg.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\IO_SAP.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\IOStream_T.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\IPC_SAP.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Local_Tokens.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Lock.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Lock_Adapter_T.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Msg.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Record.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK_CODgram.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK_Connector.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK_Dgram.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK_Stream.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Malloc.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Malloc_Allocator.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Malloc_T.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Managed_Object.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Manual_Event.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Map_Manager.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Map_T.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_Acceptor.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_Addr.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_Connector.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_IO.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Mem_Map.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_SAP.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_Stream.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Block.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Block_T.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Queue.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Queue_NT.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Queue_Vx.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Metrics_Cache_T.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MMAP_Memory_Pool.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Module.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Base.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Msg_WFMO_Reactor.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Multihomed_INET_Addr.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Mutex.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Naming_Context.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Netlink_Addr.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Notification_Queue.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Notification_Strategy.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\NT_Service.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Obchunk.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Object_Manager.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Obstack_T.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_Errno.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_Log_Msg_Attributes.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_arpa_inet.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_ctype.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_dirent.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_dlfcn.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_errno.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_fcntl.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_math.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_netdb.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_poll.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_pwd.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_regex.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_signal.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_stdio.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_stdlib.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_string.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_strings.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_stropts.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_mman.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_msg.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_resource.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_select.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_sendfile.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_shm.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_socket.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_stat.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_time.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_uio.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_wait.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_Thread.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_time.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_unistd.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_wchar.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_TLI.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Pagefile_Memory_Pool.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Pair_T.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\PI_Malloc.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Ping_Socket.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Pipe.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\POSIX_Proactor.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Proactor.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Process.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Process_Manager.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Process_Mutex.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Process_Semaphore.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Profile_Timer.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\RB_Tree.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Reactor.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Reactor_Notification_Strategy.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Read_Buffer.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Recursive_Thread_Mutex.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Recyclable.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Refcountable_T.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Refcounted_Auto_Ptr.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Remote_Tokens.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Reverse_Lock_T.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\RW_Mutex.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\RW_Process_Mutex.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\RW_Thread_Mutex.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sample_History.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sched_Params.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Select_Reactor_Base.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Select_Reactor_T.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Semaphore.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Config.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Gestalt.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Object.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Repository.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Types.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Shared_Memory_MM.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Shared_Memory_SV.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Shared_Object.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sig_Handler.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Signal.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Singleton.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Acceptor.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_CODgram.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Connector.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Dgram.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Dgram_Bcast.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Dgram_Mcast.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_IO.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Netlink.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_SEQPACK_Acceptor.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_SEQPACK_Association.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_SEQPACK_Connector.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Stream.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SPIPE.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SPIPE_Addr.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SPIPE_Connector.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SPIPE_Stream.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SString.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Stats.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Strategies_T.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Stream.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\String_Base.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Message.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Message_Queue.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Semaphore_Complex.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Semaphore_Simple.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Shared_Memory.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Task.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Task_Ex_T.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Task_T.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Adapter.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Control.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Manager.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Mutex.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Semaphore.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Time_Value.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timeprobe.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timer_Queue_Adapters.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timer_Queue_T.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TLI.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TLI_Connector.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TLI_Stream.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Token.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Token_Collection.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Token_Manager.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Token_Request_Reply.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TP_Reactor.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TSS_T.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Typed_SV_Message.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Typed_SV_Message_Queue.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Unbounded_Queue.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Unbounded_Set.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Unbounded_Set_Ex.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UNIX_Addr.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UPIPE_Acceptor.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UPIPE_Connector.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UPIPE_Stream.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UTF16_Encoding_Converter.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UUID.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Vector_T.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\WFMO_Reactor.inl">
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\XTI_ATM_Mcast.inl">
+			</File>
+		</Filter>
+		<Filter
+			Name="Documentation"
+			Filter="">
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\README">
+				<FileConfiguration
+					Name="Debug|Win32"
+					ExcludedFromBuild="TRUE">
+					<Tool
+						Name="VCCustomBuildTool"/>
+				</FileConfiguration>
+				<FileConfiguration
+					Name="Release|Win32"
+					ExcludedFromBuild="TRUE">
+					<Tool
+						Name="VCCustomBuildTool"/>
+				</FileConfiguration>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\VERSION">
+				<FileConfiguration
+					Name="Debug|Win32"
+					ExcludedFromBuild="TRUE">
+					<Tool
+						Name="VCCustomBuildTool"/>
+				</FileConfiguration>
+				<FileConfiguration
+					Name="Release|Win32"
+					ExcludedFromBuild="TRUE">
+					<Tool
+						Name="VCCustomBuildTool"/>
+				</FileConfiguration>
+			</File>
+		</Filter>
+		<Filter
+			Name="Resource Files"
+			Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;cnt;rtf;gif;jpg;jpeg;jpe">
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ace.rc">
+			</File>
+		</Filter>
+	</Files>
+	<Globals>
+	</Globals>
+</VisualStudioProject>
Index: trunk/win/VC71/game.vcproj
===================================================================
--- trunk/win/VC71/game.vcproj (revision 2)
+++ trunk/win/VC71/game.vcproj (revision 6)
@@ -23,5 +23,5 @@
 				Name="VCCLCompilerTool"
 				Optimization="0"
-				AdditionalIncludeDirectories="..\..\dep\include;..\..\src\shared\vmap;..\..\src\framework;..\..\src\shared"
+				AdditionalIncludeDirectories="..\..\dep\include;..\..\src\framework;..\..\src\shared;..\..\src\shared\vmap;..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="WIN32;_DEBUG;MANGOS_DEBUG;_LIB;"
 				StringPooling="FALSE"
@@ -79,5 +79,5 @@
 				Name="VCCLCompilerTool"
 				InlineFunctionExpansion="1"
-				AdditionalIncludeDirectories="..\..\dep\include;..\..\src\shared\vmap;..\..\src\framework;..\..\src\shared"
+				AdditionalIncludeDirectories="..\..\dep\include;..\..\src\framework;..\..\src\shared;..\..\src\shared\vmap;..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="WIN32;NDEBUG;_LIB"
 				StringPooling="TRUE"
Index: trunk/win/VC71/TrinityCore.vcproj
===================================================================
--- trunk/win/VC71/TrinityCore.vcproj (revision 2)
+++ trunk/win/VC71/TrinityCore.vcproj (revision 6)
@@ -24,5 +24,5 @@
 				Name="VCCLCompilerTool"
 				InlineFunctionExpansion="1"
-				AdditionalIncludeDirectories="..\..\dep\include,..\..\src\framework,..\..\src\shared,..\..\src\game,..\..\src\mangosd"
+				AdditionalIncludeDirectories="..\..\dep\include,..\..\src\framework,..\..\src\shared,..\..\src\game,..\..\src\trinitycore;..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="VERSION=&quot;0.12.0-SVN&quot;;WIN32;NDEBUG;_CONSOLE;ENABLE_CLI"
 				StringPooling="TRUE"
@@ -95,5 +95,5 @@
 				Name="VCCLCompilerTool"
 				Optimization="0"
-				AdditionalIncludeDirectories="..\..\dep\include,..\..\src\framework,..\..\src\shared,..\..\src\game,..\..\src\mangosd"
+				AdditionalIncludeDirectories="..\..\dep\include,..\..\src\framework,..\..\src\shared,..\..\src\game,..\..\src\trinitycore;..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="VERSION=&quot;0.12.0-SVN&quot;;WIN32;_DEBUG;MANGOS_DEBUG;_CONSOLE;ENABLE_CLI"
 				IgnoreStandardIncludePath="FALSE"
Index: trunk/win/VC80/TrinityRealm.vcproj
===================================================================
--- trunk/win/VC80/TrinityRealm.vcproj (revision 2)
+++ trunk/win/VC80/TrinityRealm.vcproj (revision 6)
@@ -48,5 +48,5 @@
 				AdditionalOptions="/MP"
 				InlineFunctionExpansion="1"
-				AdditionalIncludeDirectories="&quot;$(ProjectDir)\..\..\dep\include&quot;;&quot;$(ProjectDir)\..\..\src\framework&quot;;&quot;$(ProjectDir)\..\..\src\shared&quot;;&quot;$(ProjectDir)\..\..\src\realmd&quot;"
+				AdditionalIncludeDirectories="..\..\dep\include;..\..\src\framework;..\..\src\shared;..\..\src\realmd;..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="VERSION=&quot;0.12.0-SVN&quot;,WIN32,NDEBUG,_CONSOLE"
 				StringPooling="true"
@@ -148,5 +148,5 @@
 				AdditionalOptions="/MP"
 				InlineFunctionExpansion="1"
-				AdditionalIncludeDirectories="..\..\dep\include;..\..\src\framework;..\..\src\shared;..\..\src\realmd"
+				AdditionalIncludeDirectories="..\..\dep\include;..\..\src\framework;..\..\src\shared;..\..\src\realmd;..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="VERSION=&quot;0.12.0-SVN&quot;,WIN32,NDEBUG,_CONSOLE"
 				StringPooling="true"
@@ -246,5 +246,5 @@
 				AdditionalOptions="/MP"
 				Optimization="0"
-				AdditionalIncludeDirectories="&quot;$(ProjectDir)\..\..\dep\include&quot;;&quot;$(ProjectDir)\..\..\src\framework&quot;;&quot;$(ProjectDir)\..\..\src\shared&quot;;&quot;$(ProjectDir)\..\..\src\realmd&quot;"
+				AdditionalIncludeDirectories="..\..\dep\include;..\..\src\framework;..\..\src\shared;..\..\src\realmd;..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="VERSION=&quot;0.12.0-SVN&quot;;WIN32;_DEBUG;MANGOS_DEBUG;_CONSOLE"
 				IgnoreStandardIncludePath="false"
@@ -346,5 +346,5 @@
 				AdditionalOptions="/MP"
 				Optimization="0"
-				AdditionalIncludeDirectories="..\..\dep\include;..\..\src\framework;..\..\src\shared;..\..\src\realmd"
+				AdditionalIncludeDirectories="..\..\dep\include;..\..\src\framework;..\..\src\shared;..\..\src\realmd;..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="VERSION=&quot;0.12.0-SVN&quot;;WIN32;_DEBUG;MANGOS_DEBUG;_CONSOLE"
 				IgnoreStandardIncludePath="false"
Index: trunk/win/VC80/shared.vcproj
===================================================================
--- trunk/win/VC80/shared.vcproj (revision 2)
+++ trunk/win/VC80/shared.vcproj (revision 6)
@@ -47,5 +47,5 @@
 				AdditionalOptions="/MP"
 				InlineFunctionExpansion="1"
-				AdditionalIncludeDirectories="..\..\dep\include;..\..\dep\include\g3dlite;..\..\src\framework;..\..\src\shared"
+				AdditionalIncludeDirectories="..\..\dep\include;..\..\dep\include\g3dlite;..\..\src\framework;..\..\src\shared;..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_DEPRECATE"
 				StringPooling="true"
@@ -130,5 +130,5 @@
 				AdditionalOptions="/MP"
 				InlineFunctionExpansion="1"
-				AdditionalIncludeDirectories="..\..\dep\include;..\..\dep\include\g3dlite;..\..\src\framework;..\..\src\shared"
+				AdditionalIncludeDirectories="..\..\dep\include;..\..\dep\include\g3dlite;..\..\src\framework;..\..\src\shared;..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_DEPRECATE"
 				StringPooling="true"
@@ -211,5 +211,5 @@
 				AdditionalOptions="/MP"
 				Optimization="0"
-				AdditionalIncludeDirectories="..\..\dep\include;..\..\dep\include\g3dlite;..\..\src\framework;..\..\src\shared"
+				AdditionalIncludeDirectories="..\..\dep\include;..\..\dep\include\g3dlite;..\..\src\framework;..\..\src\shared;..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="WIN32;_DEBUG;MANGOS_DEBUG;_LIB;_CRT_SECURE_NO_DEPRECATE"
 				BasicRuntimeChecks="3"
@@ -292,5 +292,5 @@
 				AdditionalOptions="/MP"
 				Optimization="0"
-				AdditionalIncludeDirectories="..\..\dep\include;..\..\dep\include\g3dlite;..\..\src\framework;..\..\src\shared"
+				AdditionalIncludeDirectories="..\..\dep\include;..\..\dep\include\g3dlite;..\..\src\framework;..\..\src\shared;..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="WIN32;_DEBUG;MANGOS_DEBUG;_LIB;_CRT_SECURE_NO_DEPRECATE"
 				BasicRuntimeChecks="3"
Index: trunk/win/VC80/ACE_vc8.vcproj
===================================================================
--- trunk/win/VC80/ACE_vc8.vcproj (revision 6)
+++ trunk/win/VC80/ACE_vc8.vcproj (revision 6)
@@ -0,0 +1,5276 @@
+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioProject
+	ProjectType="Visual C++"
+	Version="8,00"
+	Name="ACEWraper"
+	ProjectGUID="{AD537C9A-FECA-1BAD-6757-8A6348EA12C8}"
+	RootNamespace="ACE"
+	Keyword="Win32Proj"
+	>
+	<Platforms>
+		<Platform
+			Name="Win32"
+		/>
+		<Platform
+			Name="x64"
+		/>
+	</Platforms>
+	<ToolFiles>
+	</ToolFiles>
+	<Configurations>
+		<Configuration
+			Name="Debug|Win32"
+			OutputDirectory="..\..\dep\lib\$(PlatformName)_$(ConfigurationName)"
+			IntermediateDirectory=".\ace__$(PlatformName)_$(ConfigurationName)"
+			ConfigurationType="2"
+			CharacterSet="0"
+			>
+			<Tool
+				Name="VCPreBuildEventTool"
+			/>
+			<Tool
+				Name="VCCustomBuildTool"
+			/>
+			<Tool
+				Name="VCXMLDataGeneratorTool"
+			/>
+			<Tool
+				Name="VCWebServiceProxyGeneratorTool"
+			/>
+			<Tool
+				Name="VCMIDLTool"
+				AdditionalOptions=""
+				AdditionalIncludeDirectories=""
+				TypeLibraryName="$(InputName).tlb"
+				HeaderFileName="$(InputName).h"
+				InterfaceIdentifierFileName="$(InputName)_i.c"
+				ProxyFileName="$(InputName)_p.c"
+			/>
+			<Tool
+				Name="VCCLCompilerTool"
+				AdditionalOptions="/MP /wd 4748"
+				Optimization="0"
+				AdditionalIncludeDirectories="..\..\dep\ACE_wrappers"
+				PreprocessorDefinitions="ACE_BUILD_DLL;_DEBUG;WIN32;_WINDOWS;_CRT_NONSTDC_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE"
+				MinimalRebuild="false"
+				BasicRuntimeChecks="3"
+				RuntimeLibrary="3"
+				RuntimeTypeInfo="true"
+				WarningLevel="3"
+				Detect64BitPortabilityProblems="false"
+				DebugInformationFormat="3"
+				DisableSpecificWarnings="4355"
+			/>
+			<Tool
+				Name="VCManagedResourceCompilerTool"
+			/>
+			<Tool
+				Name="VCResourceCompilerTool"
+				PreprocessorDefinitions="_DEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE"
+				Culture="1033"
+				AdditionalIncludeDirectories=".."
+			/>
+			<Tool
+				Name="VCPreLinkEventTool"
+			/>
+			<Tool
+				Name="VCLinkerTool"
+				AdditionalDependencies=""
+				OutputFile="$(OutDir)\ACEd.dll"
+				LinkIncremental="2"
+				SuppressStartupBanner="true"
+				AdditionalLibraryDirectories=""
+				GenerateDebugInformation="true"
+				SubSystem="2"
+				ImportLibrary="$(OutDir)\ACEd.lib"
+				TargetMachine="1"
+			/>
+			<Tool
+				Name="VCALinkTool"
+			/>
+			<Tool
+				Name="VCManifestTool"
+			/>
+			<Tool
+				Name="VCXDCMakeTool"
+			/>
+			<Tool
+				Name="VCBscMakeTool"
+			/>
+			<Tool
+				Name="VCFxCopTool"
+			/>
+			<Tool
+				Name="VCAppVerifierTool"
+			/>
+			<Tool
+				Name="VCWebDeploymentTool"
+			/>
+			<Tool
+				Name="VCPostBuildEventTool"
+			/>
+		</Configuration>
+		<Configuration
+			Name="Debug|x64"
+			OutputDirectory="..\..\dep\lib\$(PlatformName)_$(ConfigurationName)"
+			IntermediateDirectory=".\ace__$(PlatformName)_$(ConfigurationName)"
+			ConfigurationType="2"
+			CharacterSet="0"
+			>
+			<Tool
+				Name="VCPreBuildEventTool"
+			/>
+			<Tool
+				Name="VCCustomBuildTool"
+			/>
+			<Tool
+				Name="VCXMLDataGeneratorTool"
+			/>
+			<Tool
+				Name="VCWebServiceProxyGeneratorTool"
+			/>
+			<Tool
+				Name="VCMIDLTool"
+				AdditionalOptions=""
+				AdditionalIncludeDirectories=""
+				TypeLibraryName="$(InputName).tlb"
+				HeaderFileName="$(InputName).h"
+				InterfaceIdentifierFileName="$(InputName)_i.c"
+				ProxyFileName="$(InputName)_p.c"
+			/>
+			<Tool
+				Name="VCCLCompilerTool"
+				AdditionalOptions="/MP /wd 4748 /wd 4244"
+				Optimization="0"
+				AdditionalIncludeDirectories="..\..\dep\ACE_wrappers"
+				PreprocessorDefinitions="ACE_BUILD_DLL;_DEBUG;WIN32;_WINDOWS;_CRT_NONSTDC_NO_WARNINGS;_AMD64_;_WIN64;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE"
+				MinimalRebuild="false"
+				BasicRuntimeChecks="3"
+				RuntimeLibrary="3"
+				RuntimeTypeInfo="true"
+				WarningLevel="3"
+				Detect64BitPortabilityProblems="false"
+				DebugInformationFormat="3"
+				DisableSpecificWarnings="4355"
+			/>
+			<Tool
+				Name="VCManagedResourceCompilerTool"
+			/>
+			<Tool
+				Name="VCResourceCompilerTool"
+				PreprocessorDefinitions="_DEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WIN64"
+				Culture="1033"
+				AdditionalIncludeDirectories=".."
+			/>
+			<Tool
+				Name="VCPreLinkEventTool"
+			/>
+			<Tool
+				Name="VCLinkerTool"
+				AdditionalOptions="/machine:AMD64"
+				AdditionalDependencies=""
+				OutputFile="$(OutDir)\ACEd.dll"
+				LinkIncremental="2"
+				SuppressStartupBanner="true"
+				AdditionalLibraryDirectories=""
+				GenerateDebugInformation="true"
+				SubSystem="2"
+				ImportLibrary="$(OutDir)\ACEd.lib"
+				TargetMachine="17"
+			/>
+			<Tool
+				Name="VCALinkTool"
+			/>
+			<Tool
+				Name="VCManifestTool"
+			/>
+			<Tool
+				Name="VCXDCMakeTool"
+			/>
+			<Tool
+				Name="VCBscMakeTool"
+			/>
+			<Tool
+				Name="VCFxCopTool"
+			/>
+			<Tool
+				Name="VCAppVerifierTool"
+			/>
+			<Tool
+				Name="VCWebDeploymentTool"
+			/>
+			<Tool
+				Name="VCPostBuildEventTool"
+			/>
+		</Configuration>
+		<Configuration
+			Name="Release|Win32"
+			OutputDirectory="..\..\dep\lib\$(PlatformName)_$(ConfigurationName)"
+			IntermediateDirectory=".\ace__$(PlatformName)_$(ConfigurationName)"
+			ConfigurationType="2"
+			CharacterSet="0"
+			>
+			<Tool
+				Name="VCPreBuildEventTool"
+			/>
+			<Tool
+				Name="VCCustomBuildTool"
+			/>
+			<Tool
+				Name="VCXMLDataGeneratorTool"
+			/>
+			<Tool
+				Name="VCWebServiceProxyGeneratorTool"
+			/>
+			<Tool
+				Name="VCMIDLTool"
+				AdditionalOptions=""
+				AdditionalIncludeDirectories=""
+				TypeLibraryName="$(InputName).tlb"
+				HeaderFileName="$(InputName).h"
+				InterfaceIdentifierFileName="$(InputName)_i.c"
+				ProxyFileName="$(InputName)_p.c"
+			/>
+			<Tool
+				Name="VCCLCompilerTool"
+				AdditionalOptions="/MP /wd 4748"
+				Optimization="2"
+				AdditionalIncludeDirectories="..\..\dep\ACE_wrappers"
+				PreprocessorDefinitions="ACE_BUILD_DLL;NDEBUG;WIN32;_WINDOWS;_CRT_NONSTDC_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE"
+				RuntimeLibrary="2"
+				RuntimeTypeInfo="true"
+				WarningLevel="3"
+				Detect64BitPortabilityProblems="false"
+				DisableSpecificWarnings="4355"
+			/>
+			<Tool
+				Name="VCManagedResourceCompilerTool"
+			/>
+			<Tool
+				Name="VCResourceCompilerTool"
+				PreprocessorDefinitions="NDEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE"
+				Culture="1033"
+				AdditionalIncludeDirectories=".."
+			/>
+			<Tool
+				Name="VCPreLinkEventTool"
+			/>
+			<Tool
+				Name="VCLinkerTool"
+				AdditionalDependencies=""
+				OutputFile="$(OutDir)\ACE.dll"
+				LinkIncremental="1"
+				SuppressStartupBanner="true"
+				AdditionalLibraryDirectories=""
+				GenerateDebugInformation="true"
+				SubSystem="2"
+				OptimizeReferences="2"
+				EnableCOMDATFolding="2"
+				ImportLibrary="$(OutDir)\ACE.lib"
+				TargetMachine="1"
+			/>
+			<Tool
+				Name="VCALinkTool"
+			/>
+			<Tool
+				Name="VCManifestTool"
+			/>
+			<Tool
+				Name="VCXDCMakeTool"
+			/>
+			<Tool
+				Name="VCBscMakeTool"
+			/>
+			<Tool
+				Name="VCFxCopTool"
+			/>
+			<Tool
+				Name="VCAppVerifierTool"
+			/>
+			<Tool
+				Name="VCWebDeploymentTool"
+			/>
+			<Tool
+				Name="VCPostBuildEventTool"
+			/>
+		</Configuration>
+		<Configuration
+			Name="Release|x64"
+			OutputDirectory="..\..\dep\lib\$(PlatformName)_$(ConfigurationName)"
+			IntermediateDirectory=".\ace__$(PlatformName)_$(ConfigurationName)"
+			ConfigurationType="2"
+			CharacterSet="0"
+			>
+			<Tool
+				Name="VCPreBuildEventTool"
+			/>
+			<Tool
+				Name="VCCustomBuildTool"
+			/>
+			<Tool
+				Name="VCXMLDataGeneratorTool"
+			/>
+			<Tool
+				Name="VCWebServiceProxyGeneratorTool"
+			/>
+			<Tool
+				Name="VCMIDLTool"
+				AdditionalOptions=""
+				AdditionalIncludeDirectories=""
+				TypeLibraryName="$(InputName).tlb"
+				HeaderFileName="$(InputName).h"
+				InterfaceIdentifierFileName="$(InputName)_i.c"
+				ProxyFileName="$(InputName)_p.c"
+			/>
+			<Tool
+				Name="VCCLCompilerTool"
+				AdditionalOptions="/MP /wd 4748 /wd 4244"
+				Optimization="2"
+				AdditionalIncludeDirectories="..\..\dep\ACE_wrappers"
+				PreprocessorDefinitions="ACE_BUILD_DLL;NDEBUG;WIN32;_WINDOWS;_CRT_NONSTDC_NO_WARNINGS;_AMD64_;_WIN64;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE"
+				RuntimeLibrary="2"
+				RuntimeTypeInfo="true"
+				WarningLevel="3"
+				Detect64BitPortabilityProblems="false"
+				DisableSpecificWarnings="4355"
+			/>
+			<Tool
+				Name="VCManagedResourceCompilerTool"
+			/>
+			<Tool
+				Name="VCResourceCompilerTool"
+				PreprocessorDefinitions="NDEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WIN64"
+				Culture="1033"
+				AdditionalIncludeDirectories=".."
+			/>
+			<Tool
+				Name="VCPreLinkEventTool"
+			/>
+			<Tool
+				Name="VCLinkerTool"
+				AdditionalOptions="/machine:AMD64"
+				AdditionalDependencies=""
+				OutputFile="$(OutDir)\ACE.dll"
+				LinkIncremental="1"
+				SuppressStartupBanner="true"
+				AdditionalLibraryDirectories=""
+				GenerateDebugInformation="true"
+				SubSystem="2"
+				OptimizeReferences="2"
+				EnableCOMDATFolding="2"
+				ImportLibrary="$(OutDir)\ACE.lib"
+				TargetMachine="17"
+			/>
+			<Tool
+				Name="VCALinkTool"
+			/>
+			<Tool
+				Name="VCManifestTool"
+			/>
+			<Tool
+				Name="VCXDCMakeTool"
+			/>
+			<Tool
+				Name="VCBscMakeTool"
+			/>
+			<Tool
+				Name="VCFxCopTool"
+			/>
+			<Tool
+				Name="VCAppVerifierTool"
+			/>
+			<Tool
+				Name="VCWebDeploymentTool"
+			/>
+			<Tool
+				Name="VCPostBuildEventTool"
+			/>
+		</Configuration>
+	</Configurations>
+	<References>
+	</References>
+	<Files>
+		<Filter
+			Name="Source Files"
+			Filter="cpp;cxx;cc;C;c"
+			>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ACE.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ACE_crc32.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ACE_crc_ccitt.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ace_wchar.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Activation_Queue.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Active_Map_Manager.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Addr.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Argv_Type_Converter.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Assert.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Asynch_IO.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Asynch_IO_Impl.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Asynch_Pseudo_Task.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Acceptor.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Addr.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Connector.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Params.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_QoS.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Stream.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Atomic_Op.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Atomic_Op_Sparc.c"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Auto_Event.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Barrier.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Base_Thread_Adapter.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Based_Pointer_Repository.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Basic_Stats.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Basic_Types.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Capabilities.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\CDR_Base.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\CDR_Size.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\CDR_Stream.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Cleanup.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Codecs.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Codeset_IBM1047.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Codeset_Registry.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Codeset_Registry_db.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Condition_Recursive_Thread_Mutex.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Condition_Thread_Mutex.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Configuration.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Configuration_Import_Export.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Connection_Recycling_Strategy.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Containers.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Copy_Disabled.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Countdown_Time.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Date_Time.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DEV.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DEV_Addr.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DEV_Connector.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DEV_IO.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dev_Poll_Reactor.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dirent.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dirent_Selector.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DLL.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DLL_Manager.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dump.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dynamic.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dynamic_Message_Strategy.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dynamic_Service_Base.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dynamic_Service_Dependency.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Encoding_Converter.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Encoding_Converter_Factory.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Event.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Event_Handler.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO_Recv.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO_Recv_Msg.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO_Send.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO_Send_Msg.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FILE.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FILE_Addr.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FILE_Connector.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FILE_IO.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\File_Lock.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Filecache.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Flag_Manip.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Framework_Component.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Functor.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Functor_String.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Get_Opt.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\gethrtime.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Handle_Ops.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Handle_Set.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Hashable.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\High_Res_Timer.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ICMP_Socket.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\INET_Addr.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Init_ACE.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\IO_Cntl_Msg.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\IO_SAP.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\IOStream.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\IPC_SAP.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Lib_Find.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Local_Memory_Pool.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Local_Name_Space.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Local_Tokens.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Lock.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Msg.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Msg_Backend.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Msg_Callback.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Msg_IPC.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Msg_NT_Event_Log.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Msg_UNIX_Syslog.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Record.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Logging_Strategy.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK_Acceptor.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK_CODgram.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK_Connector.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK_Dgram.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK_Stream.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Malloc.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Malloc_Allocator.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Manual_Event.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_Acceptor.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_Addr.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_Connector.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_IO.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Mem_Map.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_SAP.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_Stream.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Block.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Queue.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Queue_NT.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Queue_Vx.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Method_Request.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MMAP_Memory_Pool.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Admin.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Admin_Manager.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Base.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Control_Action.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Control_Types.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Point_Registry.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Size.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Msg_WFMO_Reactor.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Multihomed_INET_Addr.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Mutex.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Name_Proxy.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Name_Request_Reply.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Name_Space.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Naming_Context.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Netlink_Addr.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Notification_Queue.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Notification_Strategy.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\NT_Service.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Obchunk.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Object_Manager.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Object_Manager_Base.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_Errno.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_Log_Msg_Attributes.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_main.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_arpa_inet.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_ctype.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_dirent.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_dlfcn.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_errno.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_fcntl.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_math.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_netdb.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_poll.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_pwd.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_regex.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_signal.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_stdio.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_stdlib.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_string.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_strings.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_stropts.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_mman.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_msg.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_resource.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_select.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_sendfile.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_shm.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_socket.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_stat.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_time.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_uio.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_utsname.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_wait.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_Thread.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_time.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_unistd.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_wchar.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_QoS.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_Thread_Adapter.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_TLI.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Pagefile_Memory_Pool.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Parse_Node.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\PI_Malloc.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Ping_Socket.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Pipe.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\POSIX_Asynch_IO.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\POSIX_CB_Proactor.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\POSIX_Proactor.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Priority_Reactor.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Proactor.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Proactor_Impl.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Process.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Process_Manager.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Process_Mutex.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Process_Semaphore.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Profile_Timer.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Reactor.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Reactor_Impl.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Reactor_Notification_Strategy.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Reactor_Timer_Interface.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Read_Buffer.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Recursive_Thread_Mutex.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Recyclable.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Registry.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Registry_Name_Space.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Remote_Name_Space.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Remote_Tokens.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Rtems_init.c"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\RW_Mutex.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\RW_Process_Mutex.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\RW_Thread_Mutex.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sample_History.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sbrk_Memory_Pool.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sched_Params.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Select_Reactor_Base.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Semaphore.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Config.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Gestalt.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Manager.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Object.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Repository.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Types.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Shared_Memory.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Shared_Memory_MM.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Shared_Memory_Pool.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Shared_Memory_SV.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Shared_Object.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sig_Adapter.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sig_Handler.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Signal.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Acceptor.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_CODgram.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sock_Connect.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Connector.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Dgram.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Dgram_Bcast.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Dgram_Mcast.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_IO.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Netlink.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_SEQPACK_Acceptor.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_SEQPACK_Association.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_SEQPACK_Connector.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Stream.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SPIPE.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SPIPE_Acceptor.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SPIPE_Addr.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SPIPE_Connector.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SPIPE_Stream.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SString.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Stack_Trace.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Stats.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\String_Base_Const.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SUN_Proactor.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Message.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Message_Queue.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Semaphore_Complex.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Semaphore_Simple.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Shared_Memory.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Svc_Conf_Lexer.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Svc_Conf_y.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Synch_Options.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\System_Time.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Task.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Adapter.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Control.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Exit.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Hook.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Manager.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Mutex.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Semaphore.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Throughput_Stats.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Time_Value.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timeprobe.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TLI.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TLI_Acceptor.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TLI_Connector.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TLI_Stream.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Token.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Token_Collection.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Token_Invariants.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Token_Manager.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Token_Request_Reply.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TP_Reactor.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Trace.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TSS_Adapter.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TTY_IO.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UNIX_Addr.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UPIPE_Acceptor.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UPIPE_Connector.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UPIPE_Stream.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UTF16_Encoding_Converter.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UTF32_Encoding_Converter.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UTF8_Encoding_Converter.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UUID.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\WFMO_Reactor.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\WIN32_Asynch_IO.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\WIN32_Proactor.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\XML_Svc_Conf.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\XTI_ATM_Mcast.cpp"
+				>
+			</File>
+		</Filter>
+		<Filter
+			Name="Header Files"
+			Filter="h;hpp;hxx;hh"
+			>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Acceptor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ACE.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ACE_export.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ace_wchar.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Activation_Queue.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Active_Map_Manager.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Active_Map_Manager_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Addr.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Arg_Shifter.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ARGV.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Argv_Type_Converter.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Array.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Array_Base.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Array_Map.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Assert.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Asynch_Acceptor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Asynch_Connector.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Asynch_IO.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Asynch_IO_Impl.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Asynch_Pseudo_Task.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Acceptor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Addr.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Connector.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Params.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_QoS.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Stream.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Atomic_Op.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Atomic_Op_Sparc.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Atomic_Op_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Auto_Event.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Auto_Functor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Auto_IncDec_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Auto_Ptr.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Barrier.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Base_Thread_Adapter.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Based_Pointer_Repository.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Based_Pointer_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Basic_Stats.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Basic_Types.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Bound_Ptr.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Cache_Map_Manager_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Cached_Connect_Strategy_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Caching_Strategies_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Caching_Utility_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Capabilities.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\CDR_Base.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\CDR_Size.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\CDR_Stream.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\CE_Screen_Output.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\checked_iterator.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Cleanup.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Cleanup_Strategies_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Codecs.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Codeset_IBM1047.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Codeset_Registry.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Codeset_Symbols.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Condition_Recursive_Thread_Mutex.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Condition_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Condition_Thread_Mutex.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-aix-5.x.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-all.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-borland-common.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-cray.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-cxx-common.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-cygwin32.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-doxygen.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-freebsd.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-g++-common.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-ghs-common.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-hpux-11.00.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-icc-common.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-integritySCA.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-irix6.5.x-sgic++.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-irix6.x-common.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-irix6.x-g++.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-irix6.x-sgic++.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-linux-common.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-linux.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-lite.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-lynxos.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-macosx-leopard.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-macosx-panther.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-macosx-tiger.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-macosx.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-macros.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-minimal.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-mvs.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-netbsd.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-openbsd.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-openvms.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-pharlap.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-posix-nonetworking.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-posix.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-qnx-neutrino.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-qnx-rtp-62x.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-qnx-rtp-common.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-qnx-rtp-pre62x.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-qnx-rtp.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-rtems.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-sco-5.0.0-nothread.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-sco-5.0.0.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-suncc-common.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-sunos5.10.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-sunos5.11.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-sunos5.4-g++.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-sunos5.4-sunc++-4.x.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-sunos5.5.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-sunos5.6.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-sunos5.7.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-sunos5.8.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-sunos5.9.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-tandem-nsk-mips-v2.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-tandem-nsk-mips-v3.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-tandem.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-tru64.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-unixware-7.1.0.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-unixware-7.1.0.udk.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-visualage.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-vxworks.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-vxworks5.x.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-vxworks6.2.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-vxworks6.3.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-vxworks6.4.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-vxworks6.5.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-vxworks6.6.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-win32-borland.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-win32-common.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-win32-dmc.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-win32-ghs.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-win32-interix.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-win32-mingw.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-win32-msvc-7.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-win32-msvc-8.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-win32-msvc-9.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-win32-msvc.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-win32.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-WinCE.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Configuration.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Configuration_Import_Export.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Connection_Recycling_Strategy.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Connector.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Containers.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Containers_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Copy_Disabled.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\CORBA_macros.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Countdown_Time.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Date_Time.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Default_Constants.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DEV.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DEV_Addr.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DEV_Connector.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DEV_IO.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dev_Poll_Reactor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dirent.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dirent_Selector.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DLL.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DLL_Manager.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dump.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dump_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dynamic.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dynamic_Message_Strategy.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dynamic_Service.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dynamic_Service_Base.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dynamic_Service_Dependency.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Encoding_Converter.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Encoding_Converter_Factory.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Env_Value_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Event.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Event_Handler.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Event_Handler_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Exception_Macros.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO_Recv.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO_Recv_Msg.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO_Send.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO_Send_Msg.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FILE.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FILE_Addr.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FILE_Connector.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FILE_IO.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\File_Lock.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Filecache.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Flag_Manip.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Framework_Component.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Framework_Component_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Free_List.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Functor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Functor_String.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Functor_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Future.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Future_Set.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Get_Opt.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Global_Macros.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Guard_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Handle_Gobbler.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Handle_Ops.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Handle_Set.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Hash_Cache_Map_Manager_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Hash_Map_Manager.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Hash_Map_Manager_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Hash_Map_With_Allocator_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Hash_Multi_Map_Manager_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Hashable.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\High_Res_Timer.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ICMP_Socket.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\If_Then_Else.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\INET_Addr.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Init_ACE.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Intrusive_Auto_Ptr.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Intrusive_List.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Intrusive_List_Node.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\IO_Cntl_Msg.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\IO_SAP.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\iosfwd.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\IOStream.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\IOStream_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\IPC_SAP.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Lib_Find.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Local_Memory_Pool.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Local_Name_Space.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Local_Name_Space_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Local_Tokens.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Lock.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Lock_Adapter_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LOCK_SOCK_Acceptor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Msg.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Msg_Backend.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Msg_Callback.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Msg_IPC.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Msg_NT_Event_Log.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Msg_UNIX_Syslog.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Priority.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Record.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Logging_Strategy.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK_Acceptor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK_CODgram.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK_Connector.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK_Dgram.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK_Stream.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Malloc.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Malloc_Allocator.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Malloc_Base.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Malloc_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Managed_Object.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Manual_Event.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Map.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Map_Manager.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Map_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_Acceptor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_Addr.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_Connector.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_IO.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Mem_Map.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_SAP.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_Stream.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Memory_Pool.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Block.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Block_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Queue.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Queue_NT.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Queue_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Queue_Vx.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Method_Object.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Method_Request.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Metrics_Cache.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Metrics_Cache_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Min_Max.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MMAP_Memory_Pool.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Module.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Admin.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Admin_Manager.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Base.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Control_Action.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Control_Types.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Point_Registry.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Size.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Msg_WFMO_Reactor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Multihomed_INET_Addr.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Mutex.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Name_Proxy.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Name_Request_Reply.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Name_Space.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Naming_Context.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Netlink_Addr.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Node.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Notification_Queue.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Notification_Strategy.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\NT_Service.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Null_Barrier.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Null_Condition.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Null_Mutex.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Null_Semaphore.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Numeric_Limits.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Obchunk.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Object_Manager.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Object_Manager_Base.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Obstack.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Obstack_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_aio.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_assert.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_byteswap.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_complex.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_cpio.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_ctype.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_Dirent.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_dirent.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_dlfcn.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_Errno.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_errno.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_fcntl.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_fenv.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_float.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_fmtmsg.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_fnmatch.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_ftw.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_glob.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_grp.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_iconv.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\net\os_if.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\netinet\os_in.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\arpa\os_inet.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_intrin.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_inttypes.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_ipc.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_iso646.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_kstat.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_langinfo.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_libgen.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_limits.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_loadavg.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_local.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_Log_Msg_Attributes.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_main.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_math.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_Memory.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_mman.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_monetary.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_mqueue.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_msg.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_ndbm.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_netdb.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_nl_types.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_arpa_inet.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_ctype.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_dirent.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_dlfcn.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_errno.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_fcntl.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_macros.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_math.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_netdb.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_poll.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_pwd.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_regex.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_signal.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_stdio.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_stdlib.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_string.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_strings.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_stropts.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_mman.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_msg.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_resource.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_select.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_sendfile.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_shm.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_socket.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_stat.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_time.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_uio.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_utsname.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_wait.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_Thread.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_time.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_unistd.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_wchar.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_pdh.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_pdhmsg.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_poll.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_pstat.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_pthread.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_pwd.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_QoS.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_regex.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_resource.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_sched.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_search.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_select.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_sem.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_semaphore.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_setjmp.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_shm.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_signal.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_socket.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_spawn.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_stat.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_statvfs.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_stdarg.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_stdbool.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_stddef.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_stdint.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_stdio.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_stdlib.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_String.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_string.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_strings.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_stropts.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_sysctl.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_sysinfo.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_syslog.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_tar.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\netinet\os_tcp.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_termios.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_tgmath.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_Thread_Adapter.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_time.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_time.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_timeb.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_times.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_TLI.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_trace.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_types.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_ucontext.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_uio.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_ulimit.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_un.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_unistd.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_utime.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_utmpx.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_utsname.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_wait.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_wchar.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_wctype.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_wordexp.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Pagefile_Memory_Pool.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Pair.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Pair_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Parse_Node.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\PI_Malloc.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Ping_Socket.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Pipe.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\POSIX_Asynch_IO.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\POSIX_CB_Proactor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\POSIX_Proactor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\post.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\pre.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Priority_Reactor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Proactor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Proactor_Impl.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Process.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Process_Manager.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Process_Mutex.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Process_Semaphore.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Profile_Timer.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\RB_Tree.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Reactor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Reactor_Impl.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Reactor_Notification_Strategy.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Reactor_Timer_Interface.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Reactor_Token_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Read_Buffer.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Recursive_Thread_Mutex.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Recyclable.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Refcountable.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Refcountable_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Refcounted_Auto_Ptr.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Registry.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Registry_Name_Space.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Remote_Name_Space.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Remote_Tokens.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Reverse_Lock_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\RW_Mutex.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\RW_Process_Mutex.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\RW_Thread_Mutex.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sample_History.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sbrk_Memory_Pool.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sched_Params.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Select_Reactor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Select_Reactor_Base.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Select_Reactor_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Semaphore.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Config.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Gestalt.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Manager.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Object.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Repository.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Templates.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Types.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Shared_Memory.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Shared_Memory_MM.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Shared_Memory_Pool.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Shared_Memory_SV.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Shared_Object.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sig_Adapter.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sig_Handler.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Signal.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Singleton.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Acceptor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_CODgram.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sock_Connect.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Connector.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Dgram.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Dgram_Bcast.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Dgram_Mcast.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_IO.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Netlink.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_SEQPACK_Acceptor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_SEQPACK_Association.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_SEQPACK_Connector.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Stream.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SPIPE.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SPIPE_Acceptor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SPIPE_Addr.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SPIPE_Connector.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SPIPE_Stream.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SString.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SStringfwd.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Stack_Trace.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Static_Object_Lock.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Stats.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Strategies.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Strategies_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Stream.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Stream_Modules.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\streams.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\String_Base.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\String_Base_Const.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SUN_Proactor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Message.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Message_Queue.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Semaphore_Complex.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Semaphore_Simple.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Shared_Memory.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Svc_Conf.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Svc_Conf_Lexer.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Svc_Conf_Param.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Svc_Conf_Token_Table.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Svc_Conf_Tokens.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\svc_export.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Svc_Handler.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Synch.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Synch_Options.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Synch_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Synch_Traits.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\System_Time.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Task.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Task_Ex_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Task_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Test_and_Set.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Adapter.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Control.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Exit.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Hook.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Manager.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Mutex.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Semaphore.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Throughput_Stats.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Time_Value.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timeprobe.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timeprobe_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timer_Hash.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timer_Hash_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timer_Heap.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timer_Heap_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timer_List.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timer_List_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timer_Queue.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timer_Queue_Adapters.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timer_Queue_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timer_Queuefwd.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timer_Wheel.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timer_Wheel_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TLI.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TLI_Acceptor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TLI_Connector.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TLI_Stream.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Token.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Token_Collection.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Token_Invariants.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Token_Manager.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Token_Request_Reply.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TP_Reactor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Trace.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Truncate.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TSS_Adapter.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TSS_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TTY_IO.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Typed_SV_Message.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Typed_SV_Message_Queue.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Unbounded_Queue.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Unbounded_Set.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Unbounded_Set_Ex.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UNIX_Addr.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UPIPE_Acceptor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UPIPE_Addr.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UPIPE_Connector.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UPIPE_Stream.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UTF16_Encoding_Converter.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UTF32_Encoding_Converter.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UTF8_Encoding_Converter.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UUID.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Value_Ptr.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Vector_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Version.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Versioned_Namespace.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\WFMO_Reactor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\WIN32_Asynch_IO.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\WIN32_Proactor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\XML_Svc_Conf.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\XTI_ATM_Mcast.h"
+				>
+			</File>
+		</Filter>
+		<Filter
+			Name="Inline Files"
+			Filter="i;inl"
+			>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ACE.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ace_wchar.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Activation_Queue.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Active_Map_Manager.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Active_Map_Manager_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Addr.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ARGV.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Argv_Type_Converter.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Array_Base.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Array_Map.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Asynch_IO_Impl.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Acceptor.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Addr.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Connector.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Params.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_QoS.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Stream.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Atomic_Op.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Atomic_Op_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Auto_Event.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Auto_Functor.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Auto_IncDec_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Auto_Ptr.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Barrier.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Base_Thread_Adapter.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Based_Pointer_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Basic_Stats.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Basic_Types.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Bound_Ptr.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Cache_Map_Manager_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Caching_Strategies_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Capabilities.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\CDR_Base.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\CDR_Size.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\CDR_Stream.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Cleanup.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Codeset_Registry.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Condition_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Condition_Thread_Mutex.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Configuration.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Containers.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Containers_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Date_Time.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DEV.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DEV_Addr.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DEV_Connector.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DEV_IO.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dev_Poll_Reactor.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dirent.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dirent_Selector.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dynamic.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dynamic_Message_Strategy.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dynamic_Service.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Env_Value_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Event.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Event_Handler.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Event_Handler_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO_Recv.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO_Recv_Msg.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO_Send.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO_Send_Msg.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FILE.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FILE_Addr.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FILE_Connector.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FILE_IO.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\File_Lock.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Flag_Manip.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Framework_Component.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Functor.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Functor_String.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Functor_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Get_Opt.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Guard_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Handle_Gobbler.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Handle_Set.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Hash_Cache_Map_Manager_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Hash_Map_Manager_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Hash_Map_With_Allocator_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Hash_Multi_Map_Manager_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Hashable.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\High_Res_Timer.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\INET_Addr.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Intrusive_Auto_Ptr.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Intrusive_List.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Intrusive_List_Node.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\IO_Cntl_Msg.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\IO_SAP.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\IOStream_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\IPC_SAP.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Local_Tokens.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Lock.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Lock_Adapter_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Msg.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Record.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK_CODgram.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK_Connector.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK_Dgram.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK_Stream.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Malloc.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Malloc_Allocator.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Malloc_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Managed_Object.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Manual_Event.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Map_Manager.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Map_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_Acceptor.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_Addr.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_Connector.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_IO.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Mem_Map.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_SAP.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_Stream.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Block.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Block_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Queue.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Queue_NT.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Queue_Vx.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Metrics_Cache_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MMAP_Memory_Pool.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Module.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Base.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Msg_WFMO_Reactor.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Multihomed_INET_Addr.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Mutex.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Naming_Context.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Netlink_Addr.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Notification_Queue.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Notification_Strategy.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\NT_Service.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Obchunk.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Object_Manager.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Obstack_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_Errno.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_Log_Msg_Attributes.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_arpa_inet.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_ctype.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_dirent.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_dlfcn.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_errno.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_fcntl.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_math.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_netdb.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_poll.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_pwd.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_regex.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_signal.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_stdio.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_stdlib.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_string.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_strings.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_stropts.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_mman.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_msg.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_resource.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_select.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_sendfile.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_shm.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_socket.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_stat.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_time.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_uio.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_wait.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_Thread.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_time.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_unistd.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_wchar.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_TLI.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Pagefile_Memory_Pool.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Pair_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\PI_Malloc.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Ping_Socket.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Pipe.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\POSIX_Proactor.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Proactor.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Process.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Process_Manager.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Process_Mutex.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Process_Semaphore.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Profile_Timer.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\RB_Tree.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Reactor.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Reactor_Notification_Strategy.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Read_Buffer.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Recursive_Thread_Mutex.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Recyclable.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Refcountable_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Refcounted_Auto_Ptr.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Remote_Tokens.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Reverse_Lock_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\RW_Mutex.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\RW_Process_Mutex.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\RW_Thread_Mutex.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sample_History.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sched_Params.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Select_Reactor_Base.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Select_Reactor_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Semaphore.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Config.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Gestalt.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Object.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Repository.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Types.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Shared_Memory_MM.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Shared_Memory_SV.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Shared_Object.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sig_Handler.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Signal.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Singleton.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Acceptor.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_CODgram.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Connector.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Dgram.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Dgram_Bcast.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Dgram_Mcast.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_IO.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Netlink.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_SEQPACK_Acceptor.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_SEQPACK_Association.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_SEQPACK_Connector.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Stream.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SPIPE.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SPIPE_Addr.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SPIPE_Connector.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SPIPE_Stream.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SString.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Stats.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Strategies_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Stream.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\String_Base.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Message.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Message_Queue.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Semaphore_Complex.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Semaphore_Simple.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Shared_Memory.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Task.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Task_Ex_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Task_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Adapter.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Control.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Manager.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Mutex.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Semaphore.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Time_Value.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timeprobe.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timer_Queue_Adapters.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timer_Queue_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TLI.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TLI_Connector.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TLI_Stream.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Token.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Token_Collection.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Token_Manager.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Token_Request_Reply.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TP_Reactor.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TSS_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Typed_SV_Message.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Typed_SV_Message_Queue.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Unbounded_Queue.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Unbounded_Set.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Unbounded_Set_Ex.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UNIX_Addr.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UPIPE_Acceptor.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UPIPE_Connector.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UPIPE_Stream.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UTF16_Encoding_Converter.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UUID.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Vector_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\WFMO_Reactor.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\XTI_ATM_Mcast.inl"
+				>
+			</File>
+		</Filter>
+		<Filter
+			Name="Documentation"
+			>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\README"
+				>
+				<FileConfiguration
+					Name="Debug|Win32"
+					ExcludedFromBuild="true"
+					>
+					<Tool
+						Name="VCCustomBuildTool"
+					/>
+				</FileConfiguration>
+				<FileConfiguration
+					Name="Debug|x64"
+					ExcludedFromBuild="true"
+					>
+					<Tool
+						Name="VCCustomBuildTool"
+					/>
+				</FileConfiguration>
+				<FileConfiguration
+					Name="Release|Win32"
+					ExcludedFromBuild="true"
+					>
+					<Tool
+						Name="VCCustomBuildTool"
+					/>
+				</FileConfiguration>
+				<FileConfiguration
+					Name="Release|x64"
+					ExcludedFromBuild="true"
+					>
+					<Tool
+						Name="VCCustomBuildTool"
+					/>
+				</FileConfiguration>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\VERSION"
+				>
+				<FileConfiguration
+					Name="Debug|Win32"
+					ExcludedFromBuild="true"
+					>
+					<Tool
+						Name="VCCustomBuildTool"
+					/>
+				</FileConfiguration>
+				<FileConfiguration
+					Name="Debug|x64"
+					ExcludedFromBuild="true"
+					>
+					<Tool
+						Name="VCCustomBuildTool"
+					/>
+				</FileConfiguration>
+				<FileConfiguration
+					Name="Release|Win32"
+					ExcludedFromBuild="true"
+					>
+					<Tool
+						Name="VCCustomBuildTool"
+					/>
+				</FileConfiguration>
+				<FileConfiguration
+					Name="Release|x64"
+					ExcludedFromBuild="true"
+					>
+					<Tool
+						Name="VCCustomBuildTool"
+					/>
+				</FileConfiguration>
+			</File>
+		</Filter>
+		<Filter
+			Name="Resource Files"
+			Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;cnt;rtf;gif;jpg;jpeg;jpe"
+			>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ace.rc"
+				>
+			</File>
+		</Filter>
+	</Files>
+	<Globals>
+	</Globals>
+</VisualStudioProject>
Index: trunk/win/VC80/game.vcproj
===================================================================
--- trunk/win/VC80/game.vcproj (revision 2)
+++ trunk/win/VC80/game.vcproj (revision 6)
@@ -47,5 +47,5 @@
 				AdditionalOptions="/MP"
 				Optimization="0"
-				AdditionalIncludeDirectories="..\..\dep\include;..\..\src\framework;..\..\src\shared;..\..\src\shared\vmap"
+				AdditionalIncludeDirectories="..\..\dep\include;..\..\src\framework;..\..\src\shared;..\..\src\shared\vmap;..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="WIN32;_DEBUG;MANGOS_DEBUG;_LIB;"
 				StringPooling="false"
@@ -129,5 +129,5 @@
 				AdditionalOptions="/MP"
 				Optimization="0"
-				AdditionalIncludeDirectories="..\..\dep\include;..\..\src\framework;..\..\src\shared;..\..\src\shared\vmap"
+				AdditionalIncludeDirectories="..\..\dep\include;..\..\src\framework;..\..\src\shared;..\..\src\shared\vmap;..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="WIN32;_DEBUG;MANGOS_DEBUG;_LIB;"
 				StringPooling="false"
@@ -210,5 +210,5 @@
 				AdditionalOptions="/MP"
 				InlineFunctionExpansion="1"
-				AdditionalIncludeDirectories="..\..\dep\include;..\..\src\framework;..\..\src\shared;..\..\src\shared\vmap"
+				AdditionalIncludeDirectories="..\..\dep\include;..\..\src\framework;..\..\src\shared;..\..\src\shared\vmap;..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="WIN32;NDEBUG;_LIB;"
 				StringPooling="true"
@@ -292,5 +292,5 @@
 				AdditionalOptions="/MP"
 				InlineFunctionExpansion="1"
-				AdditionalIncludeDirectories="..\..\dep\include;..\..\src\framework;..\..\src\shared;..\..\src\shared\vmap"
+				AdditionalIncludeDirectories="..\..\dep\include;..\..\src\framework;..\..\src\shared;..\..\src\shared\vmap;..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="WIN32;NDEBUG;_LIB;"
 				StringPooling="true"
Index: trunk/win/VC80/TrinityCore.vcproj
===================================================================
--- trunk/win/VC80/TrinityCore.vcproj (revision 2)
+++ trunk/win/VC80/TrinityCore.vcproj (revision 6)
@@ -48,5 +48,5 @@
 				AdditionalOptions="/MP"
 				InlineFunctionExpansion="1"
-				AdditionalIncludeDirectories="..\..\dep\include,..\..\src\framework,..\..\src\shared,..\..\src\game,..\..\src\trinitycore"
+				AdditionalIncludeDirectories="..\..\dep\include,..\..\src\framework,..\..\src\shared,..\..\src\game,..\..\src\trinitycore;..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="VERSION=&quot;0.12.0-SVN&quot;;WIN32;NDEBUG;_CONSOLE;ENABLE_CLI"
 				StringPooling="true"
@@ -150,5 +150,5 @@
 				AdditionalOptions="/MP"
 				InlineFunctionExpansion="1"
-				AdditionalIncludeDirectories="..\..\dep\include,..\..\src\framework,..\..\src\shared,..\..\src\game,..\..\src\trinitycore"
+				AdditionalIncludeDirectories="..\..\dep\include,..\..\src\framework,..\..\src\shared,..\..\src\game,..\..\src\trinitycore;..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="VERSION=&quot;0.12.0-SVN&quot;;WIN32;NDEBUG;_CONSOLE;ENABLE_CLI"
 				StringPooling="true"
@@ -250,5 +250,5 @@
 				AdditionalOptions="/MP"
 				Optimization="0"
-				AdditionalIncludeDirectories="..\..\dep\include,..\..\src\framework,..\..\src\shared,..\..\src\game,..\..\src\trinitycore"
+				AdditionalIncludeDirectories="..\..\dep\include,..\..\src\framework,..\..\src\shared,..\..\src\game,..\..\src\trinitycore;..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="VERSION=&quot;0.12.0-SVN&quot;;WIN32;_DEBUG;MANGOS_DEBUG;_CONSOLE;ENABLE_CLI"
 				IgnoreStandardIncludePath="false"
@@ -352,5 +352,5 @@
 				AdditionalOptions="/MP"
 				Optimization="0"
-				AdditionalIncludeDirectories="..\..\dep\include,..\..\src\framework,..\..\src\shared,..\..\src\game,..\..\src\trinitycore"
+				AdditionalIncludeDirectories="..\..\dep\include,..\..\src\framework,..\..\src\shared,..\..\src\game,..\..\src\trinitycore;..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="VERSION=&quot;0.12.0-SVN&quot;;WIN32;_DEBUG;MANGOS_DEBUG;_CONSOLE;ENABLE_CLI"
 				IgnoreStandardIncludePath="false"
Index: trunk/win/VC90/TrinityRealm.vcproj
===================================================================
--- trunk/win/VC90/TrinityRealm.vcproj (revision 2)
+++ trunk/win/VC90/TrinityRealm.vcproj (revision 6)
@@ -49,5 +49,5 @@
 				AdditionalOptions="/MP"
 				InlineFunctionExpansion="1"
-				AdditionalIncludeDirectories="&quot;$(ProjectDir)\..\..\dep\include&quot;;&quot;$(ProjectDir)\..\..\src\framework&quot;;&quot;$(ProjectDir)\..\..\src\shared&quot;;&quot;$(ProjectDir)\..\..\src\realmd&quot;"
+				AdditionalIncludeDirectories="..\..\dep\include;..\..\src\framework;..\..\src\shared;..\..\src\realmd;..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="VERSION=&quot;0.12.0-SVN&quot;,WIN32,NDEBUG,_CONSOLE"
 				StringPooling="true"
@@ -148,5 +148,5 @@
 				AdditionalOptions="/MP"
 				InlineFunctionExpansion="1"
-				AdditionalIncludeDirectories="..\..\dep\include;..\..\src\framework;..\..\src\shared;..\..\src\realmd"
+				AdditionalIncludeDirectories="..\..\dep\include;..\..\src\framework;..\..\src\shared;..\..\src\realmd;..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="VERSION=&quot;0.12.0-SVN&quot;,WIN32,NDEBUG,_CONSOLE"
 				StringPooling="true"
@@ -243,5 +243,5 @@
 				AdditionalOptions="/MP"
 				Optimization="0"
-				AdditionalIncludeDirectories="&quot;$(ProjectDir)\..\..\dep\include&quot;;&quot;$(ProjectDir)\..\..\src\framework&quot;;&quot;$(ProjectDir)\..\..\src\shared&quot;;&quot;$(ProjectDir)\..\..\src\realmd&quot;"
+				AdditionalIncludeDirectories="..\..\dep\include;..\..\src\framework;..\..\src\shared;..\..\src\realmd;..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="VERSION=&quot;0.12.0-SVN&quot;;WIN32;_DEBUG;MANGOS_DEBUG;_CONSOLE"
 				IgnoreStandardIncludePath="false"
@@ -342,5 +342,5 @@
 				AdditionalOptions="/MP"
 				Optimization="0"
-				AdditionalIncludeDirectories="..\..\dep\include;..\..\src\framework;..\..\src\shared;..\..\src\realmd"
+				AdditionalIncludeDirectories="..\..\dep\include;..\..\src\framework;..\..\src\shared;..\..\src\realmd;..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="VERSION=&quot;0.12.0-SVN&quot;;WIN32;_DEBUG;MANGOS_DEBUG;_CONSOLE"
 				IgnoreStandardIncludePath="false"
Index: trunk/win/VC90/shared.vcproj
===================================================================
--- trunk/win/VC90/shared.vcproj (revision 2)
+++ trunk/win/VC90/shared.vcproj (revision 6)
@@ -49,5 +49,5 @@
 				AdditionalOptions="/MP"
 				InlineFunctionExpansion="1"
-				AdditionalIncludeDirectories="..\..\dep\include;..\..\dep\include\g3dlite;..\..\src\framework;..\..\src\shared"
+				AdditionalIncludeDirectories="..\..\dep\include;..\..\dep\include\g3dlite;..\..\src\framework;..\..\src\shared;..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_DEPRECATE"
 				StringPooling="true"
@@ -103,85 +103,4 @@
 		</Configuration>
 		<Configuration
-			Name="Debug|Win32"
-			OutputDirectory=".\shared__$(PlatformName)_$(ConfigurationName)"
-			IntermediateDirectory=".\shared__$(PlatformName)_$(ConfigurationName)"
-			ConfigurationType="4"
-			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
-			UseOfMFC="0"
-			ATLMinimizesCRunTimeLibraryUsage="false"
-			CharacterSet="2"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-				CommandLine=""
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-				AdditionalOptions="/MP"
-				Optimization="0"
-				AdditionalIncludeDirectories="..\..\dep\include;..\..\dep\include\g3dlite;..\..\src\framework;..\..\src\shared"
-				PreprocessorDefinitions="WIN32;_DEBUG;MANGOS_DEBUG;_LIB;_CRT_SECURE_NO_DEPRECATE"
-				BasicRuntimeChecks="3"
-				RuntimeLibrary="1"
-				EnableFunctionLevelLinking="true"
-				RuntimeTypeInfo="true"
-				UsePrecompiledHeader="0"
-				PrecompiledHeaderFile=".\shared__$(PlatformName)_$(ConfigurationName)\shared.pch"
-				AssemblerListingLocation=".\shared__$(PlatformName)_$(ConfigurationName)\"
-				ObjectFile=".\shared__$(PlatformName)_$(ConfigurationName)\"
-				ProgramDataBaseFileName=".\shared__$(PlatformName)_$(ConfigurationName)\"
-				WarningLevel="3"
-				SuppressStartupBanner="true"
-				Detect64BitPortabilityProblems="false"
-				DebugInformationFormat="3"
-				CallingConvention="0"
-				CompileAs="0"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-				PreprocessorDefinitions="_DEBUG"
-				Culture="1033"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLibrarianTool"
-				AdditionalDependencies=".\g3dlite__$(PlatformName)_$(ConfigurationName)\g3dlite.lib"
-				OutputFile=".\shared__$(PlatformName)_$(ConfigurationName)\shared.lib"
-				SuppressStartupBanner="true"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
 			Name="Release|x64"
 			OutputDirectory=".\shared__$(PlatformName)_$(ConfigurationName)"
@@ -214,5 +133,5 @@
 				AdditionalOptions="/MP"
 				InlineFunctionExpansion="1"
-				AdditionalIncludeDirectories="..\..\dep\include;..\..\dep\include\g3dlite;..\..\src\framework;..\..\src\shared"
+				AdditionalIncludeDirectories="..\..\dep\include;..\..\dep\include\g3dlite;..\..\src\framework;..\..\src\shared;..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_DEPRECATE"
 				StringPooling="true"
@@ -268,5 +187,5 @@
 		</Configuration>
 		<Configuration
-			Name="Debug|x64"
+			Name="Debug|Win32"
 			OutputDirectory=".\shared__$(PlatformName)_$(ConfigurationName)"
 			IntermediateDirectory=".\shared__$(PlatformName)_$(ConfigurationName)"
@@ -292,5 +211,4 @@
 			<Tool
 				Name="VCMIDLTool"
-				TargetEnvironment="3"
 			/>
 			<Tool
@@ -298,5 +216,5 @@
 				AdditionalOptions="/MP"
 				Optimization="0"
-				AdditionalIncludeDirectories="..\..\dep\include;..\..\dep\include\g3dlite;..\..\src\framework;..\..\src\shared"
+				AdditionalIncludeDirectories="..\..\dep\include;..\..\dep\include\g3dlite;..\..\src\framework;..\..\src\shared;..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="WIN32;_DEBUG;MANGOS_DEBUG;_LIB;_CRT_SECURE_NO_DEPRECATE"
 				BasicRuntimeChecks="3"
@@ -349,4 +267,86 @@
 			/>
 		</Configuration>
+		<Configuration
+			Name="Debug|x64"
+			OutputDirectory=".\shared__$(PlatformName)_$(ConfigurationName)"
+			IntermediateDirectory=".\shared__$(PlatformName)_$(ConfigurationName)"
+			ConfigurationType="4"
+			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
+			UseOfMFC="0"
+			ATLMinimizesCRunTimeLibraryUsage="false"
+			CharacterSet="2"
+			>
+			<Tool
+				Name="VCPreBuildEventTool"
+				CommandLine=""
+			/>
+			<Tool
+				Name="VCCustomBuildTool"
+			/>
+			<Tool
+				Name="VCXMLDataGeneratorTool"
+			/>
+			<Tool
+				Name="VCWebServiceProxyGeneratorTool"
+			/>
+			<Tool
+				Name="VCMIDLTool"
+				TargetEnvironment="3"
+			/>
+			<Tool
+				Name="VCCLCompilerTool"
+				AdditionalOptions="/MP"
+				Optimization="0"
+				AdditionalIncludeDirectories="..\..\dep\include;..\..\dep\include\g3dlite;..\..\src\framework;..\..\src\shared;..\..\dep\ACE_wrappers"
+				PreprocessorDefinitions="WIN32;_DEBUG;MANGOS_DEBUG;_LIB;_CRT_SECURE_NO_DEPRECATE"
+				BasicRuntimeChecks="3"
+				RuntimeLibrary="1"
+				EnableFunctionLevelLinking="true"
+				RuntimeTypeInfo="true"
+				UsePrecompiledHeader="0"
+				PrecompiledHeaderFile=".\shared__$(PlatformName)_$(ConfigurationName)\shared.pch"
+				AssemblerListingLocation=".\shared__$(PlatformName)_$(ConfigurationName)\"
+				ObjectFile=".\shared__$(PlatformName)_$(ConfigurationName)\"
+				ProgramDataBaseFileName=".\shared__$(PlatformName)_$(ConfigurationName)\"
+				WarningLevel="3"
+				SuppressStartupBanner="true"
+				Detect64BitPortabilityProblems="false"
+				DebugInformationFormat="3"
+				CallingConvention="0"
+				CompileAs="0"
+			/>
+			<Tool
+				Name="VCManagedResourceCompilerTool"
+			/>
+			<Tool
+				Name="VCResourceCompilerTool"
+				PreprocessorDefinitions="_DEBUG"
+				Culture="1033"
+			/>
+			<Tool
+				Name="VCPreLinkEventTool"
+			/>
+			<Tool
+				Name="VCLibrarianTool"
+				AdditionalDependencies=".\g3dlite__$(PlatformName)_$(ConfigurationName)\g3dlite.lib"
+				OutputFile=".\shared__$(PlatformName)_$(ConfigurationName)\shared.lib"
+				SuppressStartupBanner="true"
+			/>
+			<Tool
+				Name="VCALinkTool"
+			/>
+			<Tool
+				Name="VCXDCMakeTool"
+			/>
+			<Tool
+				Name="VCBscMakeTool"
+			/>
+			<Tool
+				Name="VCFxCopTool"
+			/>
+			<Tool
+				Name="VCPostBuildEventTool"
+			/>
+		</Configuration>
 	</Configurations>
 	<References>
@@ -460,4 +460,12 @@
 					<FileConfiguration
 						Name="Release|Win32"
+						>
+						<Tool
+							Name="VCCLCompilerTool"
+							ObjectFile="$(IntDir)/$(InputName)1.obj"
+						/>
+					</FileConfiguration>
+					<FileConfiguration
+						Name="Release|x64"
 						>
 						<Tool
@@ -475,12 +483,4 @@
 					</FileConfiguration>
 					<FileConfiguration
-						Name="Release|x64"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							ObjectFile="$(IntDir)/$(InputName)1.obj"
-						/>
-					</FileConfiguration>
-					<FileConfiguration
 						Name="Debug|x64"
 						>
Index: trunk/win/VC90/ACE_vc9.vcproj
===================================================================
--- trunk/win/VC90/ACE_vc9.vcproj (revision 6)
+++ trunk/win/VC90/ACE_vc9.vcproj (revision 6)
@@ -0,0 +1,5265 @@
+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioProject
+	ProjectType="Visual C++"
+	Version="9,00"
+	Name="ACEWraper"
+	ProjectGUID="{BD537C9A-FECA-1BAD-6757-8A6348EA12C8}"
+	RootNamespace="ACE"
+	Keyword="Win32Proj"
+	TargetFrameworkVersion="0"
+	>
+	<Platforms>
+		<Platform
+			Name="Win32"
+		/>
+		<Platform
+			Name="x64"
+		/>
+	</Platforms>
+	<ToolFiles>
+	</ToolFiles>
+	<Configurations>
+		<Configuration
+			Name="Debug|Win32"
+			OutputDirectory="..\..\dep\lib\$(PlatformName)_$(ConfigurationName)"
+			IntermediateDirectory=".\ace__$(PlatformName)_$(ConfigurationName)"
+			ConfigurationType="2"
+			CharacterSet="0"
+			>
+			<Tool
+				Name="VCPreBuildEventTool"
+			/>
+			<Tool
+				Name="VCCustomBuildTool"
+			/>
+			<Tool
+				Name="VCXMLDataGeneratorTool"
+			/>
+			<Tool
+				Name="VCWebServiceProxyGeneratorTool"
+			/>
+			<Tool
+				Name="VCMIDLTool"
+				AdditionalOptions=""
+				AdditionalIncludeDirectories=""
+				TypeLibraryName="$(InputName).tlb"
+				HeaderFileName="$(InputName).h"
+				InterfaceIdentifierFileName="$(InputName)_i.c"
+				ProxyFileName="$(InputName)_p.c"
+			/>
+			<Tool
+				Name="VCCLCompilerTool"
+				AdditionalOptions="/MP /wd 4748"
+				Optimization="0"
+				AdditionalIncludeDirectories="..\..\dep\ACE_wrappers"
+				PreprocessorDefinitions="ACE_BUILD_DLL;_DEBUG;WIN32;_WINDOWS;_CRT_NONSTDC_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE"
+				MinimalRebuild="false"
+				BasicRuntimeChecks="3"
+				RuntimeLibrary="3"
+				RuntimeTypeInfo="true"
+				WarningLevel="3"
+				Detect64BitPortabilityProblems="false"
+				DebugInformationFormat="3"
+				DisableSpecificWarnings="4355"
+			/>
+			<Tool
+				Name="VCManagedResourceCompilerTool"
+			/>
+			<Tool
+				Name="VCResourceCompilerTool"
+				PreprocessorDefinitions="_DEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE"
+				Culture="1033"
+				AdditionalIncludeDirectories=".."
+			/>
+			<Tool
+				Name="VCPreLinkEventTool"
+			/>
+			<Tool
+				Name="VCLinkerTool"
+				AdditionalDependencies=""
+				OutputFile="$(OutDir)\ACEd.dll"
+				LinkIncremental="2"
+				SuppressStartupBanner="true"
+				AdditionalLibraryDirectories=""
+				GenerateDebugInformation="true"
+				SubSystem="2"
+				ImportLibrary="$(OutDir)\ACEd.lib"
+				TargetMachine="1"
+			/>
+			<Tool
+				Name="VCALinkTool"
+			/>
+			<Tool
+				Name="VCManifestTool"
+			/>
+			<Tool
+				Name="VCXDCMakeTool"
+			/>
+			<Tool
+				Name="VCBscMakeTool"
+			/>
+			<Tool
+				Name="VCFxCopTool"
+			/>
+			<Tool
+				Name="VCAppVerifierTool"
+			/>
+			<Tool
+				Name="VCPostBuildEventTool"
+			/>
+		</Configuration>
+		<Configuration
+			Name="Debug|x64"
+			OutputDirectory="..\..\dep\lib\$(PlatformName)_$(ConfigurationName)"
+			IntermediateDirectory=".\ace__$(PlatformName)_$(ConfigurationName)"
+			ConfigurationType="2"
+			CharacterSet="0"
+			>
+			<Tool
+				Name="VCPreBuildEventTool"
+			/>
+			<Tool
+				Name="VCCustomBuildTool"
+			/>
+			<Tool
+				Name="VCXMLDataGeneratorTool"
+			/>
+			<Tool
+				Name="VCWebServiceProxyGeneratorTool"
+			/>
+			<Tool
+				Name="VCMIDLTool"
+				AdditionalOptions=""
+				AdditionalIncludeDirectories=""
+				TypeLibraryName="$(InputName).tlb"
+				HeaderFileName="$(InputName).h"
+				InterfaceIdentifierFileName="$(InputName)_i.c"
+				ProxyFileName="$(InputName)_p.c"
+			/>
+			<Tool
+				Name="VCCLCompilerTool"
+				AdditionalOptions="/MP /wd 4748"
+				Optimization="0"
+				AdditionalIncludeDirectories="..\..\dep\ACE_wrappers"
+				PreprocessorDefinitions="ACE_BUILD_DLL;_DEBUG;WIN32;_WINDOWS;_CRT_NONSTDC_NO_WARNINGS;_AMD64_;_WIN64;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE"
+				MinimalRebuild="false"
+				BasicRuntimeChecks="3"
+				RuntimeLibrary="3"
+				RuntimeTypeInfo="true"
+				WarningLevel="3"
+				Detect64BitPortabilityProblems="false"
+				DebugInformationFormat="3"
+				DisableSpecificWarnings="4355"
+			/>
+			<Tool
+				Name="VCManagedResourceCompilerTool"
+			/>
+			<Tool
+				Name="VCResourceCompilerTool"
+				PreprocessorDefinitions="_DEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WIN64"
+				Culture="1033"
+				AdditionalIncludeDirectories=".."
+			/>
+			<Tool
+				Name="VCPreLinkEventTool"
+			/>
+			<Tool
+				Name="VCLinkerTool"
+				AdditionalOptions="/machine:AMD64"
+				AdditionalDependencies=""
+				OutputFile="$(OutDir)\ACEd.dll"
+				LinkIncremental="2"
+				SuppressStartupBanner="true"
+				AdditionalLibraryDirectories=""
+				GenerateDebugInformation="true"
+				SubSystem="2"
+				ImportLibrary="$(OutDir)\ACEd.lib"
+				TargetMachine="17"
+			/>
+			<Tool
+				Name="VCALinkTool"
+			/>
+			<Tool
+				Name="VCManifestTool"
+			/>
+			<Tool
+				Name="VCXDCMakeTool"
+			/>
+			<Tool
+				Name="VCBscMakeTool"
+			/>
+			<Tool
+				Name="VCFxCopTool"
+			/>
+			<Tool
+				Name="VCAppVerifierTool"
+			/>
+			<Tool
+				Name="VCPostBuildEventTool"
+			/>
+		</Configuration>
+		<Configuration
+			Name="Release|Win32"
+			OutputDirectory="..\..\dep\lib\$(PlatformName)_$(ConfigurationName)"
+			IntermediateDirectory=".\ace__$(PlatformName)_$(ConfigurationName)"
+			ConfigurationType="2"
+			CharacterSet="0"
+			>
+			<Tool
+				Name="VCPreBuildEventTool"
+			/>
+			<Tool
+				Name="VCCustomBuildTool"
+			/>
+			<Tool
+				Name="VCXMLDataGeneratorTool"
+			/>
+			<Tool
+				Name="VCWebServiceProxyGeneratorTool"
+			/>
+			<Tool
+				Name="VCMIDLTool"
+				AdditionalOptions=""
+				AdditionalIncludeDirectories=""
+				TypeLibraryName="$(InputName).tlb"
+				HeaderFileName="$(InputName).h"
+				InterfaceIdentifierFileName="$(InputName)_i.c"
+				ProxyFileName="$(InputName)_p.c"
+			/>
+			<Tool
+				Name="VCCLCompilerTool"
+				AdditionalOptions="/MP /wd 4748"
+				Optimization="2"
+				AdditionalIncludeDirectories="..\..\dep\ACE_wrappers"
+				PreprocessorDefinitions="ACE_BUILD_DLL;NDEBUG;WIN32;_WINDOWS;_CRT_NONSTDC_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE"
+				RuntimeLibrary="2"
+				RuntimeTypeInfo="true"
+				WarningLevel="3"
+				Detect64BitPortabilityProblems="false"
+				DisableSpecificWarnings="4355"
+			/>
+			<Tool
+				Name="VCManagedResourceCompilerTool"
+			/>
+			<Tool
+				Name="VCResourceCompilerTool"
+				PreprocessorDefinitions="NDEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE"
+				Culture="1033"
+				AdditionalIncludeDirectories=".."
+			/>
+			<Tool
+				Name="VCPreLinkEventTool"
+			/>
+			<Tool
+				Name="VCLinkerTool"
+				AdditionalDependencies=""
+				OutputFile="$(OutDir)\ACE.dll"
+				LinkIncremental="1"
+				SuppressStartupBanner="true"
+				AdditionalLibraryDirectories=""
+				GenerateDebugInformation="true"
+				SubSystem="2"
+				OptimizeReferences="2"
+				EnableCOMDATFolding="2"
+				ImportLibrary="$(OutDir)\ACE.lib"
+				TargetMachine="1"
+			/>
+			<Tool
+				Name="VCALinkTool"
+			/>
+			<Tool
+				Name="VCManifestTool"
+			/>
+			<Tool
+				Name="VCXDCMakeTool"
+			/>
+			<Tool
+				Name="VCBscMakeTool"
+			/>
+			<Tool
+				Name="VCFxCopTool"
+			/>
+			<Tool
+				Name="VCAppVerifierTool"
+			/>
+			<Tool
+				Name="VCPostBuildEventTool"
+			/>
+		</Configuration>
+		<Configuration
+			Name="Release|x64"
+			OutputDirectory="..\..\dep\lib\$(PlatformName)_$(ConfigurationName)"
+			IntermediateDirectory=".\ace__$(PlatformName)_$(ConfigurationName)"
+			ConfigurationType="2"
+			CharacterSet="0"
+			>
+			<Tool
+				Name="VCPreBuildEventTool"
+			/>
+			<Tool
+				Name="VCCustomBuildTool"
+			/>
+			<Tool
+				Name="VCXMLDataGeneratorTool"
+			/>
+			<Tool
+				Name="VCWebServiceProxyGeneratorTool"
+			/>
+			<Tool
+				Name="VCMIDLTool"
+				AdditionalOptions=""
+				AdditionalIncludeDirectories=""
+				TypeLibraryName="$(InputName).tlb"
+				HeaderFileName="$(InputName).h"
+				InterfaceIdentifierFileName="$(InputName)_i.c"
+				ProxyFileName="$(InputName)_p.c"
+			/>
+			<Tool
+				Name="VCCLCompilerTool"
+				AdditionalOptions="/MP /wd 4748"
+				Optimization="2"
+				AdditionalIncludeDirectories="..\..\dep\ACE_wrappers"
+				PreprocessorDefinitions="ACE_BUILD_DLL;NDEBUG;WIN32;_WINDOWS;_CRT_NONSTDC_NO_WARNINGS;_AMD64_;_WIN64;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE"
+				RuntimeLibrary="2"
+				RuntimeTypeInfo="true"
+				WarningLevel="3"
+				Detect64BitPortabilityProblems="false"
+				DisableSpecificWarnings="4355"
+			/>
+			<Tool
+				Name="VCManagedResourceCompilerTool"
+			/>
+			<Tool
+				Name="VCResourceCompilerTool"
+				PreprocessorDefinitions="NDEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WIN64"
+				Culture="1033"
+				AdditionalIncludeDirectories=".."
+			/>
+			<Tool
+				Name="VCPreLinkEventTool"
+			/>
+			<Tool
+				Name="VCLinkerTool"
+				AdditionalOptions="/machine:AMD64"
+				AdditionalDependencies=""
+				OutputFile="$(OutDir)\ACE.dll"
+				LinkIncremental="1"
+				SuppressStartupBanner="true"
+				AdditionalLibraryDirectories=""
+				GenerateDebugInformation="true"
+				SubSystem="2"
+				OptimizeReferences="2"
+				EnableCOMDATFolding="2"
+				ImportLibrary="$(OutDir)\ACE.lib"
+				TargetMachine="17"
+			/>
+			<Tool
+				Name="VCALinkTool"
+			/>
+			<Tool
+				Name="VCManifestTool"
+			/>
+			<Tool
+				Name="VCXDCMakeTool"
+			/>
+			<Tool
+				Name="VCBscMakeTool"
+			/>
+			<Tool
+				Name="VCFxCopTool"
+			/>
+			<Tool
+				Name="VCAppVerifierTool"
+			/>
+			<Tool
+				Name="VCPostBuildEventTool"
+			/>
+		</Configuration>
+	</Configurations>
+	<References>
+	</References>
+	<Files>
+		<Filter
+			Name="Source Files"
+			Filter="cpp;cxx;cc;C;c"
+			>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ACE.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ACE_crc32.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ACE_crc_ccitt.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ace_wchar.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Activation_Queue.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Active_Map_Manager.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Addr.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Argv_Type_Converter.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Assert.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Asynch_IO.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Asynch_IO_Impl.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Asynch_Pseudo_Task.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Acceptor.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Addr.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Connector.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Params.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_QoS.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Stream.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Atomic_Op.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Atomic_Op_Sparc.c"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Auto_Event.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Barrier.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Base_Thread_Adapter.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Based_Pointer_Repository.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Basic_Stats.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Basic_Types.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Capabilities.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\CDR_Base.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\CDR_Size.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\CDR_Stream.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Cleanup.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Codecs.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Codeset_IBM1047.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Codeset_Registry.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Codeset_Registry_db.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Condition_Recursive_Thread_Mutex.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Condition_Thread_Mutex.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Configuration.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Configuration_Import_Export.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Connection_Recycling_Strategy.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Containers.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Copy_Disabled.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Countdown_Time.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Date_Time.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DEV.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DEV_Addr.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DEV_Connector.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DEV_IO.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dev_Poll_Reactor.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dirent.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dirent_Selector.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DLL.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DLL_Manager.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dump.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dynamic.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dynamic_Message_Strategy.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dynamic_Service_Base.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dynamic_Service_Dependency.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Encoding_Converter.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Encoding_Converter_Factory.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Event.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Event_Handler.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO_Recv.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO_Recv_Msg.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO_Send.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO_Send_Msg.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FILE.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FILE_Addr.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FILE_Connector.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FILE_IO.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\File_Lock.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Filecache.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Flag_Manip.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Framework_Component.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Functor.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Functor_String.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Get_Opt.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\gethrtime.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Handle_Ops.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Handle_Set.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Hashable.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\High_Res_Timer.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ICMP_Socket.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\INET_Addr.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Init_ACE.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\IO_Cntl_Msg.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\IO_SAP.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\IOStream.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\IPC_SAP.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Lib_Find.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Local_Memory_Pool.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Local_Name_Space.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Local_Tokens.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Lock.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Msg.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Msg_Backend.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Msg_Callback.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Msg_IPC.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Msg_NT_Event_Log.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Msg_UNIX_Syslog.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Record.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Logging_Strategy.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK_Acceptor.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK_CODgram.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK_Connector.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK_Dgram.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK_Stream.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Malloc.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Malloc_Allocator.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Manual_Event.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_Acceptor.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_Addr.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_Connector.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_IO.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Mem_Map.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_SAP.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_Stream.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Block.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Queue.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Queue_NT.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Queue_Vx.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Method_Request.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MMAP_Memory_Pool.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Admin.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Admin_Manager.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Base.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Control_Action.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Control_Types.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Point_Registry.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Size.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Msg_WFMO_Reactor.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Multihomed_INET_Addr.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Mutex.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Name_Proxy.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Name_Request_Reply.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Name_Space.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Naming_Context.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Netlink_Addr.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Notification_Queue.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Notification_Strategy.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\NT_Service.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Obchunk.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Object_Manager.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Object_Manager_Base.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_Errno.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_Log_Msg_Attributes.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_main.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_arpa_inet.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_ctype.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_dirent.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_dlfcn.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_errno.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_fcntl.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_math.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_netdb.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_poll.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_pwd.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_regex.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_signal.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_stdio.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_stdlib.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_string.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_strings.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_stropts.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_mman.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_msg.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_resource.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_select.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_sendfile.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_shm.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_socket.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_stat.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_time.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_uio.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_utsname.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_wait.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_Thread.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_time.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_unistd.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_wchar.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_QoS.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_Thread_Adapter.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_TLI.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Pagefile_Memory_Pool.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Parse_Node.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\PI_Malloc.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Ping_Socket.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Pipe.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\POSIX_Asynch_IO.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\POSIX_CB_Proactor.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\POSIX_Proactor.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Priority_Reactor.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Proactor.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Proactor_Impl.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Process.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Process_Manager.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Process_Mutex.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Process_Semaphore.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Profile_Timer.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Reactor.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Reactor_Impl.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Reactor_Notification_Strategy.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Reactor_Timer_Interface.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Read_Buffer.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Recursive_Thread_Mutex.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Recyclable.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Registry.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Registry_Name_Space.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Remote_Name_Space.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Remote_Tokens.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Rtems_init.c"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\RW_Mutex.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\RW_Process_Mutex.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\RW_Thread_Mutex.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sample_History.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sbrk_Memory_Pool.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sched_Params.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Select_Reactor_Base.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Semaphore.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Config.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Gestalt.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Manager.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Object.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Repository.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Types.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Shared_Memory.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Shared_Memory_MM.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Shared_Memory_Pool.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Shared_Memory_SV.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Shared_Object.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sig_Adapter.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sig_Handler.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Signal.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Acceptor.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_CODgram.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sock_Connect.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Connector.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Dgram.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Dgram_Bcast.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Dgram_Mcast.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_IO.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Netlink.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_SEQPACK_Acceptor.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_SEQPACK_Association.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_SEQPACK_Connector.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Stream.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SPIPE.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SPIPE_Acceptor.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SPIPE_Addr.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SPIPE_Connector.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SPIPE_Stream.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SString.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Stack_Trace.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Stats.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\String_Base_Const.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SUN_Proactor.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Message.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Message_Queue.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Semaphore_Complex.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Semaphore_Simple.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Shared_Memory.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Svc_Conf_Lexer.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Svc_Conf_y.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Synch_Options.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\System_Time.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Task.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Adapter.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Control.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Exit.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Hook.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Manager.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Mutex.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Semaphore.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Throughput_Stats.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Time_Value.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timeprobe.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TLI.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TLI_Acceptor.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TLI_Connector.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TLI_Stream.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Token.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Token_Collection.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Token_Invariants.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Token_Manager.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Token_Request_Reply.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TP_Reactor.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Trace.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TSS_Adapter.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TTY_IO.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UNIX_Addr.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UPIPE_Acceptor.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UPIPE_Connector.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UPIPE_Stream.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UTF16_Encoding_Converter.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UTF32_Encoding_Converter.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UTF8_Encoding_Converter.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UUID.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\WFMO_Reactor.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\WIN32_Asynch_IO.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\WIN32_Proactor.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\XML_Svc_Conf.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\XTI_ATM_Mcast.cpp"
+				>
+			</File>
+		</Filter>
+		<Filter
+			Name="Header Files"
+			Filter="h;hpp;hxx;hh"
+			>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Acceptor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ACE.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ACE_export.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ace_wchar.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Activation_Queue.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Active_Map_Manager.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Active_Map_Manager_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Addr.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Arg_Shifter.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ARGV.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Argv_Type_Converter.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Array.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Array_Base.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Array_Map.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Assert.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Asynch_Acceptor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Asynch_Connector.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Asynch_IO.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Asynch_IO_Impl.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Asynch_Pseudo_Task.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Acceptor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Addr.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Connector.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Params.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_QoS.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Stream.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Atomic_Op.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Atomic_Op_Sparc.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Atomic_Op_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Auto_Event.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Auto_Functor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Auto_IncDec_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Auto_Ptr.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Barrier.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Base_Thread_Adapter.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Based_Pointer_Repository.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Based_Pointer_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Basic_Stats.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Basic_Types.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Bound_Ptr.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Cache_Map_Manager_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Cached_Connect_Strategy_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Caching_Strategies_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Caching_Utility_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Capabilities.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\CDR_Base.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\CDR_Size.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\CDR_Stream.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\CE_Screen_Output.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\checked_iterator.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Cleanup.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Cleanup_Strategies_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Codecs.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Codeset_IBM1047.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Codeset_Registry.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Codeset_Symbols.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Condition_Recursive_Thread_Mutex.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Condition_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Condition_Thread_Mutex.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-aix-5.x.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-all.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-borland-common.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-cray.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-cxx-common.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-cygwin32.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-doxygen.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-freebsd.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-g++-common.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-ghs-common.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-hpux-11.00.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-icc-common.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-integritySCA.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-irix6.5.x-sgic++.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-irix6.x-common.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-irix6.x-g++.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-irix6.x-sgic++.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-linux-common.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-linux.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-lite.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-lynxos.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-macosx-leopard.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-macosx-panther.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-macosx-tiger.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-macosx.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-macros.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-minimal.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-mvs.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-netbsd.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-openbsd.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-openvms.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-pharlap.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-posix-nonetworking.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-posix.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-qnx-neutrino.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-qnx-rtp-62x.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-qnx-rtp-common.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-qnx-rtp-pre62x.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-qnx-rtp.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-rtems.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-sco-5.0.0-nothread.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-sco-5.0.0.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-suncc-common.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-sunos5.10.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-sunos5.11.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-sunos5.4-g++.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-sunos5.4-sunc++-4.x.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-sunos5.5.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-sunos5.6.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-sunos5.7.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-sunos5.8.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-sunos5.9.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-tandem-nsk-mips-v2.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-tandem-nsk-mips-v3.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-tandem.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-tru64.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-unixware-7.1.0.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-unixware-7.1.0.udk.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-visualage.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-vxworks.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-vxworks5.x.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-vxworks6.2.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-vxworks6.3.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-vxworks6.4.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-vxworks6.5.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-vxworks6.6.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-win32-borland.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-win32-common.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-win32-dmc.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-win32-ghs.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-win32-interix.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-win32-mingw.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-win32-msvc-7.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-win32-msvc-8.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-win32-msvc-9.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-win32-msvc.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-win32.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config-WinCE.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\config.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Configuration.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Configuration_Import_Export.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Connection_Recycling_Strategy.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Connector.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Containers.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Containers_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Copy_Disabled.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\CORBA_macros.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Countdown_Time.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Date_Time.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Default_Constants.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DEV.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DEV_Addr.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DEV_Connector.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DEV_IO.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dev_Poll_Reactor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dirent.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dirent_Selector.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DLL.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DLL_Manager.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dump.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dump_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dynamic.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dynamic_Message_Strategy.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dynamic_Service.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dynamic_Service_Base.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dynamic_Service_Dependency.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Encoding_Converter.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Encoding_Converter_Factory.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Env_Value_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Event.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Event_Handler.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Event_Handler_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Exception_Macros.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO_Recv.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO_Recv_Msg.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO_Send.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO_Send_Msg.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FILE.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FILE_Addr.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FILE_Connector.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FILE_IO.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\File_Lock.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Filecache.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Flag_Manip.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Framework_Component.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Framework_Component_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Free_List.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Functor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Functor_String.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Functor_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Future.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Future_Set.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Get_Opt.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Global_Macros.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Guard_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Handle_Gobbler.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Handle_Ops.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Handle_Set.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Hash_Cache_Map_Manager_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Hash_Map_Manager.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Hash_Map_Manager_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Hash_Map_With_Allocator_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Hash_Multi_Map_Manager_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Hashable.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\High_Res_Timer.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ICMP_Socket.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\If_Then_Else.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\INET_Addr.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Init_ACE.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Intrusive_Auto_Ptr.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Intrusive_List.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Intrusive_List_Node.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\IO_Cntl_Msg.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\IO_SAP.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\iosfwd.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\IOStream.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\IOStream_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\IPC_SAP.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Lib_Find.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Local_Memory_Pool.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Local_Name_Space.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Local_Name_Space_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Local_Tokens.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Lock.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Lock_Adapter_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LOCK_SOCK_Acceptor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Msg.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Msg_Backend.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Msg_Callback.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Msg_IPC.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Msg_NT_Event_Log.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Msg_UNIX_Syslog.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Priority.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Record.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Logging_Strategy.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK_Acceptor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK_CODgram.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK_Connector.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK_Dgram.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK_Stream.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Malloc.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Malloc_Allocator.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Malloc_Base.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Malloc_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Managed_Object.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Manual_Event.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Map.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Map_Manager.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Map_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_Acceptor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_Addr.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_Connector.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_IO.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Mem_Map.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_SAP.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_Stream.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Memory_Pool.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Block.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Block_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Queue.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Queue_NT.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Queue_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Queue_Vx.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Method_Object.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Method_Request.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Metrics_Cache.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Metrics_Cache_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Min_Max.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MMAP_Memory_Pool.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Module.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Admin.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Admin_Manager.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Base.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Control_Action.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Control_Types.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Point_Registry.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Size.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Msg_WFMO_Reactor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Multihomed_INET_Addr.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Mutex.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Name_Proxy.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Name_Request_Reply.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Name_Space.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Naming_Context.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Netlink_Addr.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Node.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Notification_Queue.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Notification_Strategy.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\NT_Service.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Null_Barrier.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Null_Condition.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Null_Mutex.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Null_Semaphore.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Numeric_Limits.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Obchunk.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Object_Manager.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Object_Manager_Base.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Obstack.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Obstack_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_aio.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_assert.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_byteswap.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_complex.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_cpio.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_ctype.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_Dirent.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_dirent.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_dlfcn.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_errno.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_Errno.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_fcntl.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_fenv.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_float.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_fmtmsg.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_fnmatch.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_ftw.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_glob.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_grp.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_iconv.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\net\os_if.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\netinet\os_in.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\arpa\os_inet.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_intrin.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_inttypes.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_ipc.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_iso646.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_kstat.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_langinfo.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_libgen.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_limits.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_loadavg.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_local.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_Log_Msg_Attributes.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_main.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_math.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_Memory.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_mman.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_monetary.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_mqueue.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_msg.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_ndbm.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_netdb.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_nl_types.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_arpa_inet.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_ctype.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_dirent.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_dlfcn.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_errno.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_fcntl.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_macros.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_math.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_netdb.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_poll.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_pwd.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_regex.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_signal.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_stdio.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_stdlib.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_string.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_strings.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_stropts.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_mman.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_msg.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_resource.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_select.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_sendfile.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_shm.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_socket.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_stat.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_time.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_uio.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_utsname.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_wait.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_Thread.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_time.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_unistd.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_wchar.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_pdh.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_pdhmsg.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_poll.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_pstat.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_pthread.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_pwd.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_QoS.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_regex.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_resource.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_sched.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_search.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_select.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_sem.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_semaphore.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_setjmp.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_shm.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_signal.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_socket.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_spawn.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_stat.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_statvfs.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_stdarg.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_stdbool.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_stddef.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_stdint.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_stdio.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_stdlib.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_string.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_String.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_strings.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_stropts.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_sysctl.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_sysinfo.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_syslog.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_tar.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\netinet\os_tcp.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_termios.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_tgmath.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_Thread_Adapter.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_time.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_time.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_timeb.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_times.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_TLI.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_trace.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_types.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_ucontext.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_uio.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_ulimit.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_un.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_unistd.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_utime.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_utmpx.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_utsname.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\sys\os_wait.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_wchar.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_wctype.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\os_include\os_wordexp.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Pagefile_Memory_Pool.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Pair.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Pair_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Parse_Node.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\PI_Malloc.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Ping_Socket.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Pipe.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\POSIX_Asynch_IO.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\POSIX_CB_Proactor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\POSIX_Proactor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\post.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\pre.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Priority_Reactor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Proactor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Proactor_Impl.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Process.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Process_Manager.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Process_Mutex.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Process_Semaphore.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Profile_Timer.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\RB_Tree.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Reactor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Reactor_Impl.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Reactor_Notification_Strategy.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Reactor_Timer_Interface.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Reactor_Token_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Read_Buffer.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Recursive_Thread_Mutex.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Recyclable.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Refcountable.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Refcountable_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Refcounted_Auto_Ptr.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Registry.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Registry_Name_Space.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Remote_Name_Space.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Remote_Tokens.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Reverse_Lock_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\RW_Mutex.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\RW_Process_Mutex.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\RW_Thread_Mutex.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sample_History.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sbrk_Memory_Pool.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sched_Params.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Select_Reactor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Select_Reactor_Base.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Select_Reactor_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Semaphore.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Config.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Gestalt.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Manager.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Object.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Repository.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Templates.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Types.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Shared_Memory.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Shared_Memory_MM.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Shared_Memory_Pool.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Shared_Memory_SV.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Shared_Object.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sig_Adapter.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sig_Handler.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Signal.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Singleton.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Acceptor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_CODgram.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sock_Connect.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Connector.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Dgram.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Dgram_Bcast.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Dgram_Mcast.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_IO.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Netlink.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_SEQPACK_Acceptor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_SEQPACK_Association.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_SEQPACK_Connector.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Stream.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SPIPE.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SPIPE_Acceptor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SPIPE_Addr.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SPIPE_Connector.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SPIPE_Stream.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SString.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SStringfwd.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Stack_Trace.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Static_Object_Lock.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Stats.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Strategies.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Strategies_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Stream.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Stream_Modules.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\streams.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\String_Base.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\String_Base_Const.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SUN_Proactor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Message.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Message_Queue.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Semaphore_Complex.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Semaphore_Simple.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Shared_Memory.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Svc_Conf.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Svc_Conf_Lexer.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Svc_Conf_Param.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Svc_Conf_Token_Table.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Svc_Conf_Tokens.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\svc_export.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Svc_Handler.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Synch.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Synch_Options.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Synch_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Synch_Traits.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\System_Time.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Task.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Task_Ex_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Task_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Test_and_Set.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Adapter.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Control.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Exit.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Hook.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Manager.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Mutex.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Semaphore.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Throughput_Stats.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Time_Value.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timeprobe.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timeprobe_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timer_Hash.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timer_Hash_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timer_Heap.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timer_Heap_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timer_List.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timer_List_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timer_Queue.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timer_Queue_Adapters.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timer_Queue_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timer_Queuefwd.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timer_Wheel.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timer_Wheel_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TLI.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TLI_Acceptor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TLI_Connector.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TLI_Stream.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Token.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Token_Collection.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Token_Invariants.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Token_Manager.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Token_Request_Reply.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TP_Reactor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Trace.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Truncate.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TSS_Adapter.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TSS_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TTY_IO.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Typed_SV_Message.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Typed_SV_Message_Queue.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Unbounded_Queue.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Unbounded_Set.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Unbounded_Set_Ex.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UNIX_Addr.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UPIPE_Acceptor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UPIPE_Addr.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UPIPE_Connector.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UPIPE_Stream.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UTF16_Encoding_Converter.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UTF32_Encoding_Converter.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UTF8_Encoding_Converter.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UUID.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Value_Ptr.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Vector_T.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Version.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Versioned_Namespace.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\WFMO_Reactor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\WIN32_Asynch_IO.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\WIN32_Proactor.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\XML_Svc_Conf.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\XTI_ATM_Mcast.h"
+				>
+			</File>
+		</Filter>
+		<Filter
+			Name="Inline Files"
+			Filter="i;inl"
+			>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ACE.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ace_wchar.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Activation_Queue.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Active_Map_Manager.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Active_Map_Manager_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Addr.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ARGV.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Argv_Type_Converter.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Array_Base.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Array_Map.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Asynch_IO_Impl.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Acceptor.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Addr.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Connector.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Params.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_QoS.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ATM_Stream.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Atomic_Op.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Atomic_Op_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Auto_Event.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Auto_Functor.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Auto_IncDec_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Auto_Ptr.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Barrier.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Base_Thread_Adapter.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Based_Pointer_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Basic_Stats.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Basic_Types.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Bound_Ptr.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Cache_Map_Manager_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Caching_Strategies_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Capabilities.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\CDR_Base.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\CDR_Size.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\CDR_Stream.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Cleanup.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Codeset_Registry.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Condition_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Condition_Thread_Mutex.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Configuration.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Containers.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Containers_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Date_Time.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DEV.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DEV_Addr.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DEV_Connector.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\DEV_IO.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dev_Poll_Reactor.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dirent.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dirent_Selector.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dynamic.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dynamic_Message_Strategy.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Dynamic_Service.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Env_Value_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Event.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Event_Handler.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Event_Handler_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO_Recv.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO_Recv_Msg.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO_Send.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FIFO_Send_Msg.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FILE.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FILE_Addr.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FILE_Connector.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\FILE_IO.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\File_Lock.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Flag_Manip.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Framework_Component.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Functor.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Functor_String.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Functor_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Get_Opt.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Guard_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Handle_Gobbler.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Handle_Set.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Hash_Cache_Map_Manager_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Hash_Map_Manager_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Hash_Map_With_Allocator_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Hash_Multi_Map_Manager_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Hashable.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\High_Res_Timer.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\INET_Addr.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Intrusive_Auto_Ptr.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Intrusive_List.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Intrusive_List_Node.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\IO_Cntl_Msg.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\IO_SAP.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\IOStream_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\IPC_SAP.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Local_Tokens.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Lock.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Lock_Adapter_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Msg.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Log_Record.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK_CODgram.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK_Connector.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK_Dgram.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\LSOCK_Stream.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Malloc.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Malloc_Allocator.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Malloc_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Managed_Object.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Manual_Event.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Map_Manager.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Map_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_Acceptor.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_Addr.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_Connector.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_IO.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Mem_Map.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_SAP.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MEM_Stream.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Block.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Block_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Queue.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Queue_NT.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Message_Queue_Vx.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Metrics_Cache_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\MMAP_Memory_Pool.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Module.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Monitor_Base.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Msg_WFMO_Reactor.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Multihomed_INET_Addr.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Mutex.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Naming_Context.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Netlink_Addr.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Notification_Queue.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Notification_Strategy.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\NT_Service.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Obchunk.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Object_Manager.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Obstack_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_Errno.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_Log_Msg_Attributes.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_arpa_inet.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_ctype.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_dirent.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_dlfcn.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_errno.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_fcntl.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_math.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_netdb.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_poll.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_pwd.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_regex.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_signal.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_stdio.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_stdlib.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_string.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_strings.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_stropts.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_mman.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_msg.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_resource.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_select.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_sendfile.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_shm.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_socket.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_stat.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_time.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_uio.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_sys_wait.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_Thread.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_time.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_unistd.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_NS_wchar.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\OS_TLI.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Pagefile_Memory_Pool.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Pair_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\PI_Malloc.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Ping_Socket.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Pipe.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\POSIX_Proactor.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Proactor.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Process.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Process_Manager.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Process_Mutex.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Process_Semaphore.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Profile_Timer.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\RB_Tree.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Reactor.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Reactor_Notification_Strategy.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Read_Buffer.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Recursive_Thread_Mutex.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Recyclable.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Refcountable_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Refcounted_Auto_Ptr.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Remote_Tokens.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Reverse_Lock_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\RW_Mutex.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\RW_Process_Mutex.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\RW_Thread_Mutex.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sample_History.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sched_Params.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Select_Reactor_Base.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Select_Reactor_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Semaphore.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Config.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Gestalt.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Object.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Repository.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Service_Types.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Shared_Memory_MM.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Shared_Memory_SV.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Shared_Object.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Sig_Handler.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Signal.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Singleton.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Acceptor.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_CODgram.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Connector.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Dgram.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Dgram_Bcast.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Dgram_Mcast.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_IO.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Netlink.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_SEQPACK_Acceptor.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_SEQPACK_Association.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_SEQPACK_Connector.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SOCK_Stream.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SPIPE.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SPIPE_Addr.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SPIPE_Connector.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SPIPE_Stream.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SString.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Stats.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Strategies_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Stream.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\String_Base.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Message.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Message_Queue.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Semaphore_Complex.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Semaphore_Simple.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\SV_Shared_Memory.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Task.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Task_Ex_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Task_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Adapter.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Control.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Manager.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Mutex.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Thread_Semaphore.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Time_Value.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timeprobe.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timer_Queue_Adapters.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Timer_Queue_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TLI.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TLI_Connector.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TLI_Stream.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Token.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Token_Collection.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Token_Manager.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Token_Request_Reply.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TP_Reactor.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\TSS_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Typed_SV_Message.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Typed_SV_Message_Queue.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Unbounded_Queue.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Unbounded_Set.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Unbounded_Set_Ex.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UNIX_Addr.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UPIPE_Acceptor.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UPIPE_Connector.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UPIPE_Stream.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UTF16_Encoding_Converter.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\UUID.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\Vector_T.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\WFMO_Reactor.inl"
+				>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\XTI_ATM_Mcast.inl"
+				>
+			</File>
+		</Filter>
+		<Filter
+			Name="Documentation"
+			>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\README"
+				>
+				<FileConfiguration
+					Name="Debug|Win32"
+					ExcludedFromBuild="true"
+					>
+					<Tool
+						Name="VCCustomBuildTool"
+					/>
+				</FileConfiguration>
+				<FileConfiguration
+					Name="Debug|x64"
+					ExcludedFromBuild="true"
+					>
+					<Tool
+						Name="VCCustomBuildTool"
+					/>
+				</FileConfiguration>
+				<FileConfiguration
+					Name="Release|Win32"
+					ExcludedFromBuild="true"
+					>
+					<Tool
+						Name="VCCustomBuildTool"
+					/>
+				</FileConfiguration>
+				<FileConfiguration
+					Name="Release|x64"
+					ExcludedFromBuild="true"
+					>
+					<Tool
+						Name="VCCustomBuildTool"
+					/>
+				</FileConfiguration>
+			</File>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\VERSION"
+				>
+				<FileConfiguration
+					Name="Debug|Win32"
+					ExcludedFromBuild="true"
+					>
+					<Tool
+						Name="VCCustomBuildTool"
+					/>
+				</FileConfiguration>
+				<FileConfiguration
+					Name="Debug|x64"
+					ExcludedFromBuild="true"
+					>
+					<Tool
+						Name="VCCustomBuildTool"
+					/>
+				</FileConfiguration>
+				<FileConfiguration
+					Name="Release|Win32"
+					ExcludedFromBuild="true"
+					>
+					<Tool
+						Name="VCCustomBuildTool"
+					/>
+				</FileConfiguration>
+				<FileConfiguration
+					Name="Release|x64"
+					ExcludedFromBuild="true"
+					>
+					<Tool
+						Name="VCCustomBuildTool"
+					/>
+				</FileConfiguration>
+			</File>
+		</Filter>
+		<Filter
+			Name="Resource Files"
+			Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;cnt;rtf;gif;jpg;jpeg;jpe"
+			>
+			<File
+				RelativePath="..\..\dep\ACE_wrappers\ace\ace.rc"
+				>
+			</File>
+		</Filter>
+	</Files>
+	<Globals>
+	</Globals>
+</VisualStudioProject>
Index: trunk/win/VC90/game.vcproj
===================================================================
--- trunk/win/VC90/game.vcproj (revision 2)
+++ trunk/win/VC90/game.vcproj (revision 6)
@@ -48,5 +48,5 @@
 				AdditionalOptions="/MP"
 				Optimization="0"
-				AdditionalIncludeDirectories="..\..\dep\include;..\..\src\framework;..\..\src\shared;..\..\src\shared\vmap"
+				AdditionalIncludeDirectories="..\..\dep\include;..\..\src\framework;..\..\src\shared;..\..\src\shared\vmap;..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="WIN32;_DEBUG;MANGOS_DEBUG;_LIB;"
 				StringPooling="false"
@@ -102,4 +102,87 @@
 		</Configuration>
 		<Configuration
+			Name="Debug|x64"
+			OutputDirectory=".\game__$(PlatformName)_$(ConfigurationName)"
+			IntermediateDirectory=".\game__$(PlatformName)_$(ConfigurationName)"
+			ConfigurationType="4"
+			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
+			UseOfMFC="0"
+			ATLMinimizesCRunTimeLibraryUsage="false"
+			CharacterSet="2"
+			>
+			<Tool
+				Name="VCPreBuildEventTool"
+			/>
+			<Tool
+				Name="VCCustomBuildTool"
+			/>
+			<Tool
+				Name="VCXMLDataGeneratorTool"
+			/>
+			<Tool
+				Name="VCWebServiceProxyGeneratorTool"
+			/>
+			<Tool
+				Name="VCMIDLTool"
+				TargetEnvironment="3"
+			/>
+			<Tool
+				Name="VCCLCompilerTool"
+				AdditionalOptions="/MP"
+				Optimization="0"
+				AdditionalIncludeDirectories="..\..\dep\include;..\..\src\framework;..\..\src\shared;..\..\src\shared\vmap;..\..\dep\ACE_wrappers"
+				PreprocessorDefinitions="WIN32;_DEBUG;MANGOS_DEBUG;_LIB;"
+				StringPooling="false"
+				MinimalRebuild="false"
+				BasicRuntimeChecks="3"
+				RuntimeLibrary="1"
+				EnableFunctionLevelLinking="true"
+				RuntimeTypeInfo="true"
+				UsePrecompiledHeader="0"
+				PrecompiledHeaderFile=".\game__$(PlatformName)_$(ConfigurationName)\game.pch"
+				AssemblerListingLocation=".\game__$(PlatformName)_$(ConfigurationName)\"
+				ObjectFile=".\game__$(PlatformName)_$(ConfigurationName)\"
+				ProgramDataBaseFileName=".\game__$(PlatformName)_$(ConfigurationName)\"
+				WarningLevel="3"
+				SuppressStartupBanner="true"
+				Detect64BitPortabilityProblems="false"
+				DebugInformationFormat="3"
+				CallingConvention="0"
+				CompileAs="0"
+			/>
+			<Tool
+				Name="VCManagedResourceCompilerTool"
+			/>
+			<Tool
+				Name="VCResourceCompilerTool"
+				PreprocessorDefinitions="_DEBUG"
+				Culture="1033"
+			/>
+			<Tool
+				Name="VCPreLinkEventTool"
+			/>
+			<Tool
+				Name="VCLibrarianTool"
+				AdditionalDependencies=".\shared__$(PlatformName)_$(ConfigurationName)\shared.lib"
+				OutputFile=".\game__$(PlatformName)_$(ConfigurationName)\game.lib"
+				SuppressStartupBanner="true"
+			/>
+			<Tool
+				Name="VCALinkTool"
+			/>
+			<Tool
+				Name="VCXDCMakeTool"
+			/>
+			<Tool
+				Name="VCBscMakeTool"
+			/>
+			<Tool
+				Name="VCFxCopTool"
+			/>
+			<Tool
+				Name="VCPostBuildEventTool"
+			/>
+		</Configuration>
+		<Configuration
 			Name="Release|Win32"
 			OutputDirectory=".\game__$(PlatformName)_$(ConfigurationName)"
@@ -130,5 +213,5 @@
 				AdditionalOptions="/MP"
 				InlineFunctionExpansion="1"
-				AdditionalIncludeDirectories="..\..\dep\include;..\..\src\framework;..\..\src\shared;..\..\src\shared\vmap"
+				AdditionalIncludeDirectories="..\..\dep\include;..\..\src\framework;..\..\src\shared;..\..\src\shared\vmap;..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="WIN32;NDEBUG;_LIB;"
 				StringPooling="true"
@@ -184,87 +267,4 @@
 		</Configuration>
 		<Configuration
-			Name="Debug|x64"
-			OutputDirectory=".\game__$(PlatformName)_$(ConfigurationName)"
-			IntermediateDirectory=".\game__$(PlatformName)_$(ConfigurationName)"
-			ConfigurationType="4"
-			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
-			UseOfMFC="0"
-			ATLMinimizesCRunTimeLibraryUsage="false"
-			CharacterSet="2"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-				TargetEnvironment="3"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-				AdditionalOptions="/MP"
-				Optimization="0"
-				AdditionalIncludeDirectories="..\..\dep\include;..\..\src\framework;..\..\src\shared;..\..\src\shared\vmap"
-				PreprocessorDefinitions="WIN32;_DEBUG;MANGOS_DEBUG;_LIB;"
-				StringPooling="false"
-				MinimalRebuild="false"
-				BasicRuntimeChecks="3"
-				RuntimeLibrary="1"
-				EnableFunctionLevelLinking="true"
-				RuntimeTypeInfo="true"
-				UsePrecompiledHeader="0"
-				PrecompiledHeaderFile=".\game__$(PlatformName)_$(ConfigurationName)\game.pch"
-				AssemblerListingLocation=".\game__$(PlatformName)_$(ConfigurationName)\"
-				ObjectFile=".\game__$(PlatformName)_$(ConfigurationName)\"
-				ProgramDataBaseFileName=".\game__$(PlatformName)_$(ConfigurationName)\"
-				WarningLevel="3"
-				SuppressStartupBanner="true"
-				Detect64BitPortabilityProblems="false"
-				DebugInformationFormat="3"
-				CallingConvention="0"
-				CompileAs="0"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-				PreprocessorDefinitions="_DEBUG"
-				Culture="1033"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLibrarianTool"
-				AdditionalDependencies=".\shared__$(PlatformName)_$(ConfigurationName)\shared.lib"
-				OutputFile=".\game__$(PlatformName)_$(ConfigurationName)\game.lib"
-				SuppressStartupBanner="true"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
 			Name="Release|x64"
 			OutputDirectory=".\game__$(PlatformName)_$(ConfigurationName)"
@@ -296,5 +296,5 @@
 				AdditionalOptions="/MP"
 				InlineFunctionExpansion="1"
-				AdditionalIncludeDirectories="..\..\dep\include;..\..\src\framework;..\..\src\shared;..\..\src\shared\vmap"
+				AdditionalIncludeDirectories="..\..\dep\include;..\..\src\framework;..\..\src\shared;..\..\src\shared\vmap;..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="WIN32;NDEBUG;_LIB;"
 				StringPooling="true"
Index: trunk/win/VC90/TrinityCore.vcproj
===================================================================
--- trunk/win/VC90/TrinityCore.vcproj (revision 2)
+++ trunk/win/VC90/TrinityCore.vcproj (revision 6)
@@ -49,5 +49,5 @@
 				AdditionalOptions="/MP"
 				InlineFunctionExpansion="1"
-				AdditionalIncludeDirectories="..\..\dep\include,..\..\src\framework,..\..\src\shared,..\..\src\game,..\..\src\trinitycore"
+				AdditionalIncludeDirectories="..\..\dep\include,..\..\src\framework,..\..\src\shared,..\..\src\game,..\..\src\trinitycore;..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="VERSION=&quot;0.12.0-SVN&quot;;WIN32;NDEBUG;_CONSOLE;ENABLE_CLI"
 				StringPooling="true"
@@ -150,5 +150,5 @@
 				AdditionalOptions="/MP"
 				InlineFunctionExpansion="1"
-				AdditionalIncludeDirectories="..\..\dep\include,..\..\src\framework,..\..\src\shared,..\..\src\game,..\..\src\trinitycore"
+				AdditionalIncludeDirectories="..\..\dep\include,..\..\src\framework,..\..\src\shared,..\..\src\game,..\..\src\trinitycore;..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="VERSION=&quot;0.12.0-SVN&quot;;WIN32;NDEBUG;_CONSOLE;ENABLE_CLI"
 				StringPooling="true"
@@ -247,5 +247,5 @@
 				AdditionalOptions="/MP"
 				Optimization="0"
-				AdditionalIncludeDirectories="..\..\dep\include,..\..\src\framework,..\..\src\shared,..\..\src\game,..\..\src\trinitycore"
+				AdditionalIncludeDirectories="..\..\dep\include,..\..\src\framework,..\..\src\shared,..\..\src\game,..\..\src\trinitycore;..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="VERSION=&quot;0.12.0-SVN&quot;;WIN32;_DEBUG;MANGOS_DEBUG;_CONSOLE;ENABLE_CLI"
 				IgnoreStandardIncludePath="false"
@@ -348,5 +348,5 @@
 				AdditionalOptions="/MP"
 				Optimization="0"
-				AdditionalIncludeDirectories="..\..\dep\include,..\..\src\framework,..\..\src\shared,..\..\src\game,..\..\src\trinitycore"
+				AdditionalIncludeDirectories="..\..\dep\include,..\..\src\framework,..\..\src\shared,..\..\src\game,..\..\src\trinitycore;..\..\dep\ACE_wrappers"
 				PreprocessorDefinitions="VERSION=&quot;0.12.0-SVN&quot;;WIN32;_DEBUG;MANGOS_DEBUG;_CONSOLE;ENABLE_CLI"
 				IgnoreStandardIncludePath="false"
Index: trunk/win/TrinityCore VC71.sln
===================================================================
--- trunk/win/TrinityCore VC71.sln (revision 2)
+++ trunk/win/TrinityCore VC71.sln (revision 6)
@@ -9,4 +9,5 @@
 		{BF6F5D0E-33A5-4E23-9E7D-DD481B7B5B9E} = {BF6F5D0E-33A5-4E23-9E7D-DD481B7B5B9E}
 		{8F1DEA42-6A5B-4B62-839D-C141A7BFACF2} = {8F1DEA42-6A5B-4B62-839D-C141A7BFACF2}
+		{7C74F49E-FECA-1BAD-6757-8A6348EA12C8} = {7C74F49E-FECA-1BAD-6757-8A6348EA12C8}
 		{262199E8-EEDF-4700-A1D1-E9CC901CF480} = {262199E8-EEDF-4700-A1D1-E9CC901CF480}
 		{DE0380F9-C910-4E99-A841-93550D0E61D7} = {DE0380F9-C910-4E99-A841-93550D0E61D7}
@@ -50,4 +51,8 @@
 	ProjectSection(ProjectDependencies) = postProject
 		{D1EA3EE9-4DCF-4CB9-BA6E-B9321E0D552A} = {D1EA3EE9-4DCF-4CB9-BA6E-B9321E0D552A}
+	EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ACE_Wraper", "VC71\ACE_vc71.vcproj", "{7C74F49E-FECA-1BAD-6757-8A6348EA12C8}"
+	ProjectSection(ProjectDependencies) = postProject
 	EndProjectSection
 EndProject
@@ -100,4 +105,8 @@
 		{4295C8A9-79B7-4354-8064-F05FB9CA0C96}.Release.ActiveCfg = Release|Win32
 		{4295C8A9-79B7-4354-8064-F05FB9CA0C96}.Release.Build.0 = Release|Win32
+		{7C74F49E-FECA-1BAD-6757-8A6348EA12C8}.Debug.ActiveCfg = Debug|Win32
+		{7C74F49E-FECA-1BAD-6757-8A6348EA12C8}.Debug.Build.0 = Debug|Win32
+		{7C74F49E-FECA-1BAD-6757-8A6348EA12C8}.Release.ActiveCfg = Release|Win32
+		{7C74F49E-FECA-1BAD-6757-8A6348EA12C8}.Release.Build.0 = Release|Win32
 	EndGlobalSection
 	GlobalSection(ExtensibilityGlobals) = postSolution
Index: trunk/win/TrinityCore VC80.sln
===================================================================
--- trunk/win/TrinityCore VC80.sln (revision 2)
+++ trunk/win/TrinityCore VC80.sln (revision 6)
@@ -9,7 +9,8 @@
 	ProjectSection(ProjectDependencies) = postProject
 		{BF6F5D0E-33A5-4E23-9E7D-DD481B7B5B9E} = {BF6F5D0E-33A5-4E23-9E7D-DD481B7B5B9E}
+		{AD537C9A-FECA-1BAD-6757-8A6348EA12C8} = {AD537C9A-FECA-1BAD-6757-8A6348EA12C8}
+		{262199E8-EEDF-4700-A1D1-E9CC901CF480} = {262199E8-EEDF-4700-A1D1-E9CC901CF480}
+		{8072769E-CF10-48BF-B9E1-12752A5DAC6E} = {8072769E-CF10-48BF-B9E1-12752A5DAC6E}
 		{8F1DEA42-6A5B-4B62-839D-C141A7BFACF2} = {8F1DEA42-6A5B-4B62-839D-C141A7BFACF2}
-		{8072769E-CF10-48BF-B9E1-12752A5DAC6E} = {8072769E-CF10-48BF-B9E1-12752A5DAC6E}
-		{262199E8-EEDF-4700-A1D1-E9CC901CF480} = {262199E8-EEDF-4700-A1D1-E9CC901CF480}
 	EndProjectSection
 EndProject
@@ -26,14 +27,14 @@
 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TrinityCore", "VC80\TrinityCore.vcproj", "{A3A04E47-43A2-4C08-90B3-029CEF558594}"
 	ProjectSection(ProjectDependencies) = postProject
+		{563E9905-3657-460C-AE63-0AC39D162E23} = {563E9905-3657-460C-AE63-0AC39D162E23}
+		{90297C34-F231-4DF4-848E-A74BCC0E40ED} = {90297C34-F231-4DF4-848E-A74BCC0E40ED}
+		{04BAF755-0D67-46F8-B1C6-77AE5368F3CB} = {04BAF755-0D67-46F8-B1C6-77AE5368F3CB}
 		{1DC6C4DA-A028-41F3-877D-D5400C594F88} = {1DC6C4DA-A028-41F3-877D-D5400C594F88}
-		{04BAF755-0D67-46F8-B1C6-77AE5368F3CB} = {04BAF755-0D67-46F8-B1C6-77AE5368F3CB}
-		{90297C34-F231-4DF4-848E-A74BCC0E40ED} = {90297C34-F231-4DF4-848E-A74BCC0E40ED}
-		{563E9905-3657-460C-AE63-0AC39D162E23} = {563E9905-3657-460C-AE63-0AC39D162E23}
 	EndProjectSection
 EndProject
 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TrinityRealm", "VC80\TrinityRealm.vcproj", "{563E9905-3657-460C-AE63-0AC39D162E23}"
 	ProjectSection(ProjectDependencies) = postProject
+		{90297C34-F231-4DF4-848E-A74BCC0E40ED} = {90297C34-F231-4DF4-848E-A74BCC0E40ED}
 		{04BAF755-0D67-46F8-B1C6-77AE5368F3CB} = {04BAF755-0D67-46F8-B1C6-77AE5368F3CB}
-		{90297C34-F231-4DF4-848E-A74BCC0E40ED} = {90297C34-F231-4DF4-848E-A74BCC0E40ED}
 	EndProjectSection
 EndProject
@@ -42,4 +43,6 @@
 		{A3A04E47-43A2-4C08-90B3-029CEF558594} = {A3A04E47-43A2-4C08-90B3-029CEF558594}
 	EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ACEWraper", "VC80\ACE_vc8.vcproj", "{AD537C9A-FECA-1BAD-6757-8A6348EA12C8}"
 EndProject
 Global
@@ -131,4 +134,12 @@
 		{4295C8A9-79B7-4354-8064-F05FB9CA0C96}.Release|x64.ActiveCfg = Release|x64
 		{4295C8A9-79B7-4354-8064-F05FB9CA0C96}.Release|x64.Build.0 = Release|x64
+		{AD537C9A-FECA-1BAD-6757-8A6348EA12C8}.Debug|Win32.ActiveCfg = Debug|Win32
+		{AD537C9A-FECA-1BAD-6757-8A6348EA12C8}.Debug|Win32.Build.0 = Debug|Win32
+		{AD537C9A-FECA-1BAD-6757-8A6348EA12C8}.Debug|x64.ActiveCfg = Debug|x64
+		{AD537C9A-FECA-1BAD-6757-8A6348EA12C8}.Debug|x64.Build.0 = Debug|x64
+		{AD537C9A-FECA-1BAD-6757-8A6348EA12C8}.Release|Win32.ActiveCfg = Release|Win32
+		{AD537C9A-FECA-1BAD-6757-8A6348EA12C8}.Release|Win32.Build.0 = Release|Win32
+		{AD537C9A-FECA-1BAD-6757-8A6348EA12C8}.Release|x64.ActiveCfg = Release|x64
+		{AD537C9A-FECA-1BAD-6757-8A6348EA12C8}.Release|x64.Build.0 = Release|x64
 	EndGlobalSection
 	GlobalSection(SolutionProperties) = preSolution
Index: trunk/win/TrinityCore VC90.sln
===================================================================
--- trunk/win/TrinityCore VC90.sln (revision 2)
+++ trunk/win/TrinityCore VC90.sln (revision 6)
@@ -10,4 +10,5 @@
 		{BF6F5D0E-33A5-4E23-9E7D-DD481B7B5B9E} = {BF6F5D0E-33A5-4E23-9E7D-DD481B7B5B9E}
 		{8F1DEA42-6A5B-4B62-839D-C141A7BFACF2} = {8F1DEA42-6A5B-4B62-839D-C141A7BFACF2}
+		{BD537C9A-FECA-1BAD-6757-8A6348EA12C8} = {BD537C9A-FECA-1BAD-6757-8A6348EA12C8}
 		{8072769E-CF10-48BF-B9E1-12752A5DAC6E} = {8072769E-CF10-48BF-B9E1-12752A5DAC6E}
 		{262199E8-EEDF-4700-A1D1-E9CC901CF480} = {262199E8-EEDF-4700-A1D1-E9CC901CF480}
@@ -42,4 +43,6 @@
 		{A3A04E47-43A2-4C08-90B3-029CEF558594} = {A3A04E47-43A2-4C08-90B3-029CEF558594}
 	EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ACEWraper", "VC90\ACE_vc9.vcproj", "{BD537C9A-FECA-1BAD-6757-8A6348EA12C8}"
 EndProject
 Global
@@ -131,4 +134,12 @@
 		{4295C8A9-79B7-4354-8064-F05FB9CA0C96}.Release|x64.ActiveCfg = Release|x64
 		{4295C8A9-79B7-4354-8064-F05FB9CA0C96}.Release|x64.Build.0 = Release|x64
+		{BD537C9A-FECA-1BAD-6757-8A6348EA12C8}.Debug|Win32.ActiveCfg = Debug|Win32
+		{BD537C9A-FECA-1BAD-6757-8A6348EA12C8}.Debug|Win32.Build.0 = Debug|Win32
+		{BD537C9A-FECA-1BAD-6757-8A6348EA12C8}.Debug|x64.ActiveCfg = Debug|x64
+		{BD537C9A-FECA-1BAD-6757-8A6348EA12C8}.Debug|x64.Build.0 = Debug|x64
+		{BD537C9A-FECA-1BAD-6757-8A6348EA12C8}.Release|Win32.ActiveCfg = Release|Win32
+		{BD537C9A-FECA-1BAD-6757-8A6348EA12C8}.Release|Win32.Build.0 = Release|Win32
+		{BD537C9A-FECA-1BAD-6757-8A6348EA12C8}.Release|x64.ActiveCfg = Release|x64
+		{BD537C9A-FECA-1BAD-6757-8A6348EA12C8}.Release|x64.Build.0 = Release|x64
 	EndGlobalSection
 	GlobalSection(SolutionProperties) = preSolution
Index: trunk/win/TrinityCore No Script VC71.sln
===================================================================
--- trunk/win/TrinityCore No Script VC71.sln (revision 2)
+++ trunk/win/TrinityCore No Script VC71.sln (revision 6)
@@ -9,4 +9,5 @@
 		{BF6F5D0E-33A5-4E23-9E7D-DD481B7B5B9E} = {BF6F5D0E-33A5-4E23-9E7D-DD481B7B5B9E}
 		{8F1DEA42-6A5B-4B62-839D-C141A7BFACF2} = {8F1DEA42-6A5B-4B62-839D-C141A7BFACF2}
+		{7C74F49E-FECA-1BAD-6757-8A6348EA12C8} = {7C74F49E-FECA-1BAD-6757-8A6348EA12C8}
 		{262199E8-EEDF-4700-A1D1-E9CC901CF480} = {262199E8-EEDF-4700-A1D1-E9CC901CF480}
 		{DE0380F9-C910-4E99-A841-93550D0E61D7} = {DE0380F9-C910-4E99-A841-93550D0E61D7}
@@ -50,4 +51,8 @@
 	ProjectSection(ProjectDependencies) = postProject
 		{D1EA3EE9-4DCF-4CB9-BA6E-B9321E0D552A} = {D1EA3EE9-4DCF-4CB9-BA6E-B9321E0D552A}
+	EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ACE_Wraper", "VC71\ACE_vc71.vcproj", "{7C74F49E-FECA-1BAD-6757-8A6348EA12C8}"
+	ProjectSection(ProjectDependencies) = postProject
 	EndProjectSection
 EndProject
@@ -100,4 +105,8 @@
 		{4205C8A9-79B7-4354-8064-F05FB9CA0C96}.Release.ActiveCfg = Release|Win32
 		{4205C8A9-79B7-4354-8064-F05FB9CA0C96}.Release.Build.0 = Release|Win32
+		{7C74F49E-FECA-1BAD-6757-8A6348EA12C8}.Debug.ActiveCfg = Debug|Win32
+		{7C74F49E-FECA-1BAD-6757-8A6348EA12C8}.Debug.Build.0 = Debug|Win32
+		{7C74F49E-FECA-1BAD-6757-8A6348EA12C8}.Release.ActiveCfg = Release|Win32
+		{7C74F49E-FECA-1BAD-6757-8A6348EA12C8}.Release.Build.0 = Release|Win32
 	EndGlobalSection
 	GlobalSection(ExtensibilityGlobals) = postSolution
Index: trunk/win/TrinityCore No Script VC80.sln
===================================================================
--- trunk/win/TrinityCore No Script VC80.sln (revision 2)
+++ trunk/win/TrinityCore No Script VC80.sln (revision 6)
@@ -9,7 +9,8 @@
 	ProjectSection(ProjectDependencies) = postProject
 		{BF6F5D0E-33A5-4E23-9E7D-DD481B7B5B9E} = {BF6F5D0E-33A5-4E23-9E7D-DD481B7B5B9E}
+		{AD537C9A-FECA-1BAD-6757-8A6348EA12C8} = {AD537C9A-FECA-1BAD-6757-8A6348EA12C8}
+		{262199E8-EEDF-4700-A1D1-E9CC901CF480} = {262199E8-EEDF-4700-A1D1-E9CC901CF480}
+		{8072769E-CF10-48BF-B9E1-12752A5DAC6E} = {8072769E-CF10-48BF-B9E1-12752A5DAC6E}
 		{8F1DEA42-6A5B-4B62-839D-C141A7BFACF2} = {8F1DEA42-6A5B-4B62-839D-C141A7BFACF2}
-		{8072769E-CF10-48BF-B9E1-12752A5DAC6E} = {8072769E-CF10-48BF-B9E1-12752A5DAC6E}
-		{262199E8-EEDF-4700-A1D1-E9CC901CF480} = {262199E8-EEDF-4700-A1D1-E9CC901CF480}
 	EndProjectSection
 EndProject
@@ -26,14 +27,14 @@
 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TrinityCore", "VC80\TrinityCore.vcproj", "{A3A04E47-43A2-4C08-90B3-029CEF558594}"
 	ProjectSection(ProjectDependencies) = postProject
+		{563E9905-3657-460C-AE63-0AC39D162E23} = {563E9905-3657-460C-AE63-0AC39D162E23}
+		{90297C34-F231-4DF4-848E-A74BCC0E40ED} = {90297C34-F231-4DF4-848E-A74BCC0E40ED}
+		{04BAF755-0D67-46F8-B1C6-77AE5368F3CB} = {04BAF755-0D67-46F8-B1C6-77AE5368F3CB}
 		{1DC6C4DA-A028-41F3-877D-D5400C594F88} = {1DC6C4DA-A028-41F3-877D-D5400C594F88}
-		{04BAF755-0D67-46F8-B1C6-77AE5368F3CB} = {04BAF755-0D67-46F8-B1C6-77AE5368F3CB}
-		{90297C34-F231-4DF4-848E-A74BCC0E40ED} = {90297C34-F231-4DF4-848E-A74BCC0E40ED}
-		{563E9905-3657-460C-AE63-0AC39D162E23} = {563E9905-3657-460C-AE63-0AC39D162E23}
 	EndProjectSection
 EndProject
 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TrinityRealm", "VC80\TrinityRealm.vcproj", "{563E9905-3657-460C-AE63-0AC39D162E23}"
 	ProjectSection(ProjectDependencies) = postProject
+		{90297C34-F231-4DF4-848E-A74BCC0E40ED} = {90297C34-F231-4DF4-848E-A74BCC0E40ED}
 		{04BAF755-0D67-46F8-B1C6-77AE5368F3CB} = {04BAF755-0D67-46F8-B1C6-77AE5368F3CB}
-		{90297C34-F231-4DF4-848E-A74BCC0E40ED} = {90297C34-F231-4DF4-848E-A74BCC0E40ED}
 	EndProjectSection
 EndProject
@@ -42,4 +43,6 @@
 		{A3A04E47-43A2-4C08-90B3-029CEF558594} = {A3A04E47-43A2-4C08-90B3-029CEF558594}
 	EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ACEWraper", "VC80\ACE_vc8.vcproj", "{AD537C9A-FECA-1BAD-6757-8A6348EA12C8}"
 EndProject
 Global
@@ -131,4 +134,12 @@
 		{4205C8A9-79B7-4354-8064-F05FB9CA0C96}.Release|x64.ActiveCfg = Release|x64
 		{4205C8A9-79B7-4354-8064-F05FB9CA0C96}.Release|x64.Build.0 = Release|x64
+		{AD537C9A-FECA-1BAD-6757-8A6348EA12C8}.Debug|Win32.ActiveCfg = Debug|Win32
+		{AD537C9A-FECA-1BAD-6757-8A6348EA12C8}.Debug|Win32.Build.0 = Debug|Win32
+		{AD537C9A-FECA-1BAD-6757-8A6348EA12C8}.Debug|x64.ActiveCfg = Debug|x64
+		{AD537C9A-FECA-1BAD-6757-8A6348EA12C8}.Debug|x64.Build.0 = Debug|x64
+		{AD537C9A-FECA-1BAD-6757-8A6348EA12C8}.Release|Win32.ActiveCfg = Release|Win32
+		{AD537C9A-FECA-1BAD-6757-8A6348EA12C8}.Release|Win32.Build.0 = Release|Win32
+		{AD537C9A-FECA-1BAD-6757-8A6348EA12C8}.Release|x64.ActiveCfg = Release|x64
+		{AD537C9A-FECA-1BAD-6757-8A6348EA12C8}.Release|x64.Build.0 = Release|x64
 	EndGlobalSection
 	GlobalSection(SolutionProperties) = preSolution
Index: trunk/win/TrinityCore No Scripts VC90.sln
===================================================================
--- trunk/win/TrinityCore No Scripts VC90.sln (revision 2)
+++ trunk/win/TrinityCore No Scripts VC90.sln (revision 6)
@@ -10,4 +10,5 @@
 		{BF6F5D0E-33A5-4E23-9E7D-DD481B7B5B9E} = {BF6F5D0E-33A5-4E23-9E7D-DD481B7B5B9E}
 		{8F1DEA42-6A5B-4B62-839D-C141A7BFACF2} = {8F1DEA42-6A5B-4B62-839D-C141A7BFACF2}
+		{BD537C9A-FECA-1BAD-6757-8A6348EA12C8} = {BD537C9A-FECA-1BAD-6757-8A6348EA12C8}
 		{8072769E-CF10-48BF-B9E1-12752A5DAC6E} = {8072769E-CF10-48BF-B9E1-12752A5DAC6E}
 		{262199E8-EEDF-4700-A1D1-E9CC901CF480} = {262199E8-EEDF-4700-A1D1-E9CC901CF480}
@@ -42,4 +43,6 @@
 		{A3A04E47-43A2-4C08-90B3-029CEF558594} = {A3A04E47-43A2-4C08-90B3-029CEF558594}
 	EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ACEWraper", "VC90\ACE_vc9.vcproj", "{BD537C9A-FECA-1BAD-6757-8A6348EA12C8}"
 EndProject
 Global
@@ -131,4 +134,12 @@
 		{4205C8A9-79B7-4354-8064-F05FB9CA0C96}.Release|x64.ActiveCfg = Release|x64
 		{4205C8A9-79B7-4354-8064-F05FB9CA0C96}.Release|x64.Build.0 = Release|x64
+		{BD537C9A-FECA-1BAD-6757-8A6348EA12C8}.Debug|Win32.ActiveCfg = Debug|Win32
+		{BD537C9A-FECA-1BAD-6757-8A6348EA12C8}.Debug|Win32.Build.0 = Debug|Win32
+		{BD537C9A-FECA-1BAD-6757-8A6348EA12C8}.Debug|x64.ActiveCfg = Debug|x64
+		{BD537C9A-FECA-1BAD-6757-8A6348EA12C8}.Debug|x64.Build.0 = Debug|x64
+		{BD537C9A-FECA-1BAD-6757-8A6348EA12C8}.Release|Win32.ActiveCfg = Release|Win32
+		{BD537C9A-FECA-1BAD-6757-8A6348EA12C8}.Release|Win32.Build.0 = Release|Win32
+		{BD537C9A-FECA-1BAD-6757-8A6348EA12C8}.Release|x64.ActiveCfg = Release|x64
+		{BD537C9A-FECA-1BAD-6757-8A6348EA12C8}.Release|x64.Build.0 = Release|x64
 	EndGlobalSection
 	GlobalSection(SolutionProperties) = preSolution
Index: trunk/sql/mangos.sql
===================================================================
--- trunk/sql/mangos.sql (revision 2)
+++ trunk/sql/mangos.sql (revision 6)
@@ -272,4 +272,7 @@
 ('lookup itemset',3,'Syntax: .lookup itemset $itemname\r\n\r\nLooks up an item set by $itemname, and returns all matches with their Item set ID\'s.'),
 ('lookup object',3,'Syntax: .lookup object $objname\r\n\r\nLooks up an gameobject by $objname, and returns all matches with their Gameobject ID\'s.'),
+('lookup player account',2,'Syntax : .lookup player account $account ($limit) \r\n\r\n Searchs players, which account username is $account with optional parametr $limit of results.'),
+('lookup player ip',2,'Syntax : .lookup player ip $ip ($limit) \r\n\r\n Searchs players, which account ast_ip is $ip with optional parametr $limit of results.'),
+('lookup player email',2,'Syntax : .lookup player email $email ($limit) \r\n\r\n Searchs players, which account email is $email with optional parametr $limit of results.'),
 ('lookup quest',3,'Syntax: .lookup quest $namepart\r\n\r\nLooks up a quest by $namepart, and returns all matches with their quest ID\'s.'),
 ('lookup skill',3,'Syntax: .lookup skill $$namepart\r\n\r\nLooks up a skill by $namepart, and returns all matches with their skill ID\'s.'),
@@ -2193,6 +2196,5 @@
 (165,'Requires search parameter.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
 (166,'There are no teleport locations matching your request.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
-(167,'No locations found.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
-(168,'Locations found are:\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
+(168,'Locations found are:\n %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
 (169,'Mail sent to %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
 (170,'You try to hear sound %u but it doesn\'t exist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
@@ -2325,4 +2327,7 @@
 (326, 'Faction %s (%u) can\'not have reputation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
 (327, ' [no reputation]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
+(328,'Characters at account %s (Id: %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
+(329,'  %s (GUID %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
+(330,'No players found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
 (400,'|cffff0000[System Message]:|rScripts reloaded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
 (401,'You change security level of %s to %i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
@@ -2391,5 +2396,4 @@
 (464,'Teleport location NOT added: database error.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
 (465,'Teleport location deleted.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
-(466,'Teleport location NOT deleted: database error.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
 (467,'Target unit has %d auras:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
 (468,'id: %d eff: %d type: %d duration: %d maxduration: %d name: %s%s%s caster: %s %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
@@ -10793,5 +10797,4 @@
 (12569,1,0x0000000000100000),
 (12571,1,0x0000000000100000),
-(12606,0,0x0000000000002000),
 (12658,0,0x0000000000000020),
 (12659,0,0x0000000000000020),
Index: trunk/configure.ac
===================================================================
--- trunk/configure.ac (revision 2)
+++ trunk/configure.ac (revision 6)
@@ -12,7 +12,4 @@
 
 ## Prelude, basic settings for Autoconf
-#  PACKAGE:            mangos
-#  VERSION:            0.12.0 (trunk)
-#  BUG-REPORT-ADDRESS: mangos-devs@lists.sourceforge.net
 AC_INIT( [trinitycore], [0.0.1], [devs@trinitycore.org])
 
@@ -275,7 +272,16 @@
 ])
 
+## Configure ACE
+AC_CONFIG_SUBDIRS([dep/ACE_wrappers])
+
 ## Disabled Makefiles, until they are ready for a successful make and
 #  make dist run.
 
+AC_CONFIG_COMMANDS([default],[
+  echo ""
+  echo "Configuration of TrinityCore $PACKAGE_VERSION is now complete."
+  echo ""
+ ],[PACKAGE_VERSION=$PACKAGE_VERSION])
+
 ## Output files.
 AC_OUTPUT
Index: trunk/dep/Makefile.am
===================================================================
--- trunk/dep/Makefile.am (revision 2)
+++ trunk/dep/Makefile.am (revision 6)
@@ -18,5 +18,5 @@
 
 ## Sub-directories to parse
-SUBDIRS = include lib src
+SUBDIRS = include lib src ACE_wrappers
 
 ## Additional files to include when running 'make dist'
