summaryrefslogtreecommitdiff
path: root/ace
diff options
context:
space:
mode:
authornanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-02-14 04:10:58 +0000
committernanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-02-14 04:10:58 +0000
commitde3d8d4c39d6c9ff68d9185138c670990b5a4bf7 (patch)
treea3c6eaefb4d0607e7299cef81cb8affe6a86aba1 /ace
parentfd2ce4c83c6e6a28ae726ebe34a84fdfc2599023 (diff)
downloadATCD-de3d8d4c39d6c9ff68d9185138c670990b5a4bf7.tar.gz
CE changes: Sat Feb 13 22:06:17 1999 Nanbor Wang
Diffstat (limited to 'ace')
-rw-r--r--ace/INET_Addr.cpp15
-rw-r--r--ace/Log_Msg.cpp6
-rw-r--r--ace/OS.cpp11
-rw-r--r--ace/OS.i5
-rw-r--r--ace/Stats.cpp6
-rw-r--r--ace/Stats.i5
-rw-r--r--ace/ace_ce_dll.dsp2332
7 files changed, 1782 insertions, 598 deletions
diff --git a/ace/INET_Addr.cpp b/ace/INET_Addr.cpp
index 7a1628f518e..555d9641244 100644
--- a/ace/INET_Addr.cpp
+++ b/ace/INET_Addr.cpp
@@ -22,10 +22,9 @@ ACE_INET_Addr::addr_to_string (ASYS_TCHAR s[],
{
ACE_TRACE ("ACE_INET_Addr::addr_to_string");
- size_t total_len =
- ACE_OS::strlen (ipaddr_format == 0 ?
- this->get_host_name () :
- this->get_host_addr ())
+ size_t total_len = (ipaddr_format == 0 ?
+ ACE_OS::strlen (this->get_host_name ()) :
+ ACE_OS::strlen (this->get_host_addr ()))
+ ACE_OS::strlen ("65536") // Assume the max port number.
+ sizeof (':')
+ sizeof ('\0'); // For trailing '\0'.
@@ -34,11 +33,11 @@ ACE_INET_Addr::addr_to_string (ASYS_TCHAR s[],
return -1;
else
{
- ACE_OS::sprintf (s,
+ ACE_OS::sprintf (s,
ASYS_TEXT ("%s:%d"),
- ASYS_WIDE_STRING (ipaddr_format == 0
- ? this->get_host_name ()
- : this->get_host_addr ()),
+ (ipaddr_format == 0
+ ? this->get_host_name ()
+ : ASYS_WIDE_STRING (this->get_host_addr ())),
this->get_port_number ());
return 0;
}
diff --git a/ace/Log_Msg.cpp b/ace/Log_Msg.cpp
index aa6c3d795af..744c80b146e 100644
--- a/ace/Log_Msg.cpp
+++ b/ace/Log_Msg.cpp
@@ -982,7 +982,9 @@ ACE_Log_Msg::log (const ASYS_TCHAR *format_str,
ACE_OS::sprintf (bp, "0x%lx", lo);
}
#else /* ! ACE_LACKS_LONGLONG_T */
- ACE_OS::sprintf (bp, ACE_UINT64_FORMAT_SPECIFIER, va_arg (argp, ACE_UINT64));
+ ACE_OS::sprintf (bp,
+ ASYS_TEXT (ACE_UINT64_FORMAT_SPECIFIER),
+ va_arg (argp, ACE_UINT64));
#endif /* ! ACE_LACKS_LONGLONG_T */
break;
}
@@ -1375,7 +1377,7 @@ ACE_Log_Msg::msg_callback (void) const
return this->msg_callback_;
}
-void
+void
ACE_Log_Msg::msg_callback (ACE_Log_Msg_Callback *c)
{
this->msg_callback_ = c;
diff --git a/ace/OS.cpp b/ace/OS.cpp
index 133e5025b23..99327afd9f5 100644
--- a/ace/OS.cpp
+++ b/ace/OS.cpp
@@ -665,9 +665,8 @@ ACE_OS::mutex_lock_cleanup (void *mutex)
// The following *printf functions aren't inline because
// they use varargs.
-#if !defined (ACE_HAS_WINCE)
-#if defined (ACE_WIN32)
+#if defined (ACE_WIN32) && !defined (ACE_HAS_WINCE)
FILE *
ACE_OS::fopen (const char *filename, const char *mode)
{
@@ -693,7 +692,9 @@ ACE_OS::fopen (const char *filename, const char *mode)
}
return NULL;
}
+#endif /* ACE_WIN32 && !ACE_HAS_WINCE */
+#if defined (ACE_WIN32)
FILE *
ACE_OS::fopen (const wchar_t *filename, const wchar_t *mode)
{
@@ -725,6 +726,7 @@ ACE_OS::fopen (const wchar_t *filename, const wchar_t *mode)
}
# endif /* ACE_WIN32 */
+#if !defined (ACE_HAS_WINCE)
int
ACE_OS::fprintf (FILE *fp, const char *format, ...)
{
@@ -4400,7 +4402,12 @@ ACE_OS::open (const wchar_t *filename,
}
ACE_HANDLE h = ::CreateFileW (filename, access,
+#if !defined (ACE_HAS_WINCE)
FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
+#else
+ // @@ CE doesn't support FILE_SHARE_DELETE???
+ FILE_SHARE_READ | FILE_SHARE_WRITE,
+#endif /* !ACE_HAS_WINCE */
ACE_OS::default_win32_security_attributes (sa),
creation,
flags,
diff --git a/ace/OS.i b/ace/OS.i
index 052bfa43716..c74e3deb1ab 100644
--- a/ace/OS.i
+++ b/ace/OS.i
@@ -1118,7 +1118,12 @@ ACE_OS::_exit (int status)
ACE_INLINE void
ACE_OS::abort (void)
{
+#if !defined (ACE_HAS_WINCE)
::abort ();
+#else
+ // @@ CE doesn't support abort?
+ ::exit (1);
+#endif /* ACE_HAS_WINCE */
}
ACE_INLINE void *
diff --git a/ace/Stats.cpp b/ace/Stats.cpp
index 1d57631f554..fbd5f7f18c8 100644
--- a/ace/Stats.cpp
+++ b/ace/Stats.cpp
@@ -270,9 +270,15 @@ ACE_Stats::print_summary (const u_int precision,
}
else
{
+#if !defined (ACE_HAS_WINCE)
ACE_OS::fprintf (file,
ASYS_TEXT ("ACE_Stats::print_summary: OVERFLOW: %s\n"),
ASYS_TEXT (strerror (overflow_)));
+#else
+ // WinCE doesn't have strerror ;(
+ ACE_OS::fprintf (file,
+ ASYS_TEXT ("ACE_Stats::print_summary: OVERFLOW\n"));
+#endif /* ACE_HAS_WINCE */
return -1;
}
}
diff --git a/ace/Stats.i b/ace/Stats.i
index 8f0d8d454d0..6b4693275bb 100644
--- a/ace/Stats.i
+++ b/ace/Stats.i
@@ -55,8 +55,9 @@ ACE_INLINE
void
ACE_Stats_Value::dump (void) const
{
- ACE_OS::printf ("precision: %u digits; whole: %u, fractional: %u\n",
- precision_, whole_, fractional_);
+ ACE_DEBUG ((LM_DEBUG,
+ ASYS_TEXT ("precision: %u digits; whole: %u, fractional: %u\n"),
+ precision_, whole_, fractional_);
}
ACE_INLINE
diff --git a/ace/ace_ce_dll.dsp b/ace/ace_ce_dll.dsp
index e34e61b6688..8d34b112e01 100644
--- a/ace/ace_ce_dll.dsp
+++ b/ace/ace_ce_dll.dsp
@@ -1,10 +1,10 @@
# Microsoft Developer Studio Project File - Name="ace_ce_dll" - Package Owner=<4>
-# Microsoft Developer Studio Generated Build File, Format Version 5.00
+# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
-# TARGTYPE "Win32 (WCE SH) Dynamic-Link Library" 0x0902
-# TARGTYPE "Win32 (WCE x86em) Dynamic-Link Library" 0x0b02
-# TARGTYPE "Win32 (WCE MIPS) Dynamic-Link Library" 0x0a02
+# TARGTYPE "Win32 (WCE SH3) Dynamic-Link Library" 0x8102
+# TARGTYPE "Win32 (WCE x86em) Dynamic-Link Library" 0x7f02
+# TARGTYPE "Win32 (WCE MIPS) Dynamic-Link Library" 0x8202
CFG=ace_ce_dll - Win32 (WCE x86em) Debug
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
@@ -19,24 +19,19 @@ CFG=ace_ce_dll - Win32 (WCE x86em) Debug
!MESSAGE
!MESSAGE Possible choices for configuration are:
!MESSAGE
-!MESSAGE "ace_ce_dll - Win32 (WCE x86em) Release" (based on\
- "Win32 (WCE x86em) Dynamic-Link Library")
-!MESSAGE "ace_ce_dll - Win32 (WCE x86em) Debug" (based on\
- "Win32 (WCE x86em) Dynamic-Link Library")
-!MESSAGE "ace_ce_dll - Win32 (WCE MIPS) Release" (based on\
- "Win32 (WCE MIPS) Dynamic-Link Library")
-!MESSAGE "ace_ce_dll - Win32 (WCE MIPS) Debug" (based on\
- "Win32 (WCE MIPS) Dynamic-Link Library")
-!MESSAGE "ace_ce_dll - Win32 (WCE SH) Release" (based on\
- "Win32 (WCE SH) Dynamic-Link Library")
-!MESSAGE "ace_ce_dll - Win32 (WCE SH) Debug" (based on\
- "Win32 (WCE SH) Dynamic-Link Library")
+!MESSAGE "ace_ce_dll - Win32 (WCE x86em) Release" (based on "Win32 (WCE x86em) Dynamic-Link Library")
+!MESSAGE "ace_ce_dll - Win32 (WCE x86em) Debug" (based on "Win32 (WCE x86em) Dynamic-Link Library")
+!MESSAGE "ace_ce_dll - Win32 (WCE MIPS) Release" (based on "Win32 (WCE MIPS) Dynamic-Link Library")
+!MESSAGE "ace_ce_dll - Win32 (WCE MIPS) Debug" (based on "Win32 (WCE MIPS) Dynamic-Link Library")
+!MESSAGE "ace_ce_dll - Win32 (WCE SH3) Release" (based on "Win32 (WCE SH3) Dynamic-Link Library")
+!MESSAGE "ace_ce_dll - Win32 (WCE SH3) Debug" (based on "Win32 (WCE SH3) Dynamic-Link Library")
!MESSAGE
# Begin Project
+# PROP AllowPerConfigDependencies 0
# PROP Scc_ProjName ""
-# PROP Scc_LocalPath ""
-# PROP WCE_Configuration "H/PC Ver. 2.00"
+# PROP Scc_LocalPath "H/PC Ver. 2.00"
+# PROP WCE_FormatVersion "6.0"
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
@@ -51,6 +46,9 @@ CFG=ace_ce_dll - Win32 (WCE x86em) Debug
# PROP Intermediate_Dir "WCE/x86em/Release"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
+EMPFILE=empfile.exe
+# ADD BASE EMPFILE COPY
+# ADD EMPFILE COPY
CPP=cl.exe
# ADD BASE CPP /nologo /W3 /O2 /D "UNDER_CE" /D "UNICODE" /D "_UNICODE" /D "WIN32" /D "STRICT" /D _WIN32_WCE=200 /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "NDEBUG" /D "x86" /D "i486" /D "_x86_" /YX /c
# ADD CPP /nologo /MT /W3 /O2 /I "..\\" /I "..\STL\\" /D "_UNICODE" /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "NDEBUG" /D "x86" /D "i486" /D "_x86_" /D "UNDER_CE" /D "UNICODE" /D _WIN32_WCE=200 /D ACE_HAS_WINCE=1 /D ACE_HAS_DLL=1 /YX /c
@@ -58,17 +56,14 @@ RSC=rc.exe
# ADD BASE RSC /l 0x409 /d "UNDER_CE" /d "UNICODE" /d "_UNICODE" /d "WIN32" /d "STRICT" /d _WIN32_WCE=200 /d "_WIN32_WCE_EMULATION" /d "INTERNATIONAL" /d "USA" /d "INTLMSG_CODEPAGE" /d "NDEBUG"
# ADD RSC /l 0x409 /d "UNDER_CE" /d "UNICODE" /d "_UNICODE" /d "WIN32" /d "STRICT" /d _WIN32_WCE=200 /d "_WIN32_WCE_EMULATION" /d "INTERNATIONAL" /d "USA" /d "INTLMSG_CODEPAGE" /d "NDEBUG"
MTL=midl.exe
-# ADD BASE MTL /nologo /mktyplib203 /o NUL /win32 /NDEBUG /NDEBUG
-# ADD MTL /nologo /mktyplib203 /o NUL /win32 /NDEBUG /NDEBUG
+# ADD BASE MTL /nologo /mktyplib203 /o "NUL" /win32 /NDEBUG /NDEBUG
+# ADD MTL /nologo /mktyplib203 /o "NUL" /win32 /NDEBUG /NDEBUG
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 commctrl.lib coredll.lib winmm.lib ole32m.lib oleautm.lib msvcrt.lib uuid.lib asfcguid.lib asfc.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib /nologo /subsystem:windows /dll /machine:I386 /nodefaultlib:"msvcrt.lib" /windowsce:emulation
-# ADD LINK32 commctrl.lib coredll.lib /nologo /subsystem:windows /dll /machine:I386 /nodefaultlib:"msvcrt.lib" /out:"WCE\x86em\ace.dll" /windowsce:emulation
-EMPFILE=empfile.exe
-# ADD BASE EMPFILE -COPY
-# ADD EMPFILE -COPY
+# ADD LINK32 commctrl.lib coredll.lib /nologo /subsystem:windows /dll /machine:I386 /nodefaultlib:"msvcrt.lib" /nodefaultlib:"$(CENoDefaultLib)" /out:"WCE\x86em\ace.dll" /windowsce:emulation
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
@@ -83,25 +78,25 @@ EMPFILE=empfile.exe
# PROP Intermediate_Dir "WCE/x86em/Debug"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
+EMPFILE=empfile.exe
+# ADD BASE EMPFILE COPY
+# ADD EMPFILE COPY
CPP=cl.exe
# ADD BASE CPP /nologo /W3 /Gm /Zi /Od /D "UNDER_CE" /D "UNICODE" /D "_UNICODE" /D "WIN32" /D "STRICT" /D _WIN32_WCE=200 /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "_DEBUG" /D "x86" /D "i486" /D "_x86_" /YX /c
-# ADD CPP /nologo /G4 /W3 /Zi /Od /I "..\\" /I "..\STL\\" /D "_UNICODE" /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "_DEBUG" /D "x86" /D "i486" /D "_x86_" /D "UNDER_CE" /D "UNICODE" /D _WIN32_WCE=200 /D ACE_HAS_WINCE=1 /D ACE_HAS_DLL=1 /c
+# ADD CPP /nologo /G5 /W3 /Zi /Od /I "..\\" /I "..\STL\\" /D "_UNICODE" /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "_DEBUG" /D "x86" /D "i486" /D "_x86_" /D "UNDER_CE" /D "UNICODE" /D _WIN32_WCE=200 /c
# SUBTRACT CPP /YX
RSC=rc.exe
# ADD BASE RSC /l 0x409 /d "UNDER_CE" /d "UNICODE" /d "_UNICODE" /d "WIN32" /d "STRICT" /d _WIN32_WCE=200 /d "_WIN32_WCE_EMULATION" /d "INTERNATIONAL" /d "USA" /d "INTLMSG_CODEPAGE" /d "_DEBUG" /d "x86" /d "i486" /d "_x86_"
# ADD RSC /l 0x409 /d "UNDER_CE" /d "UNICODE" /d "_UNICODE" /d "WIN32" /d "STRICT" /d _WIN32_WCE=200 /d "_WIN32_WCE_EMULATION" /d "INTERNATIONAL" /d "USA" /d "INTLMSG_CODEPAGE" /d "_DEBUG" /d "x86" /d "i486" /d "_x86_"
MTL=midl.exe
-# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32
-# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 commctrl.lib coredll.lib winmm.lib ole32m.lib oleautm.lib msvcrt.lib uuid.lib asfcguid.lib asfc.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"msvcrtd.lib" /windowsce:emulation
-# ADD LINK32 commctrl.lib coredll.lib /nologo /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"msvcrtd.lib" /out:"WCE\x86em\aced.dll" /windowsce:emulation
-EMPFILE=empfile.exe
-# ADD BASE EMPFILE -COPY
-# ADD EMPFILE -COPY
+# ADD LINK32 commctrl.lib coredll.lib /nologo /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"msvcrtd.lib" /nodefaultlib:"$(CENoDefaultLib)" /out:"WCE\x86em\aced.dll" /windowsce:emulation
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
@@ -116,26 +111,26 @@ EMPFILE=empfile.exe
# PROP Intermediate_Dir "WCE/MIPS/Release"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
+PFILE=pfile.exe
+# ADD BASE PFILE COPY
+# ADD PFILE COPY
CPP=clmips.exe
# ADD BASE CPP /nologo /ML /W3 /O2 /D "NDEBUG" /D "MIPS" /D "_MIPS_" /D "UNDER_CE" /D "UNICODE" /D _WIN32_WCE=200 /YX /QMRWCE /c
-# ADD CPP /nologo /MT /W3 /O2 /I "..\\" /I "..\STL\\" /D "NDEBUG" /D "MIPS" /D "_MIPS_" /D "UNDER_CE" /D "UNICODE" /D _WIN32_WCE=200 /D ACE_HAS_WINCE=1 /D ACE_HAS_DLL=1 /YX /QMRWCE /c
+# ADD CPP /nologo /M$(CECrtMT) /W3 /O2 /I "..\\" /I "..\STL\\" /D "NDEBUG" /D "MIPS" /D "_MIPS_" /D "UNDER_CE" /D "UNICODE" /D _WIN32_WCE=200 /D ACE_HAS_WINCE=1 /D ACE_HAS_DLL=1 /YX /QMRWCE /c
RSC=rc.exe
# ADD BASE RSC /l 0x409 /r /d "MIPS" /d "_MIPS_" /d "UNDER_CE" /d "UNICODE" /d "NDEBUG" /d _WIN32_WCE=200
# ADD RSC /l 0x409 /r /d "MIPS" /d "_MIPS_" /d "UNDER_CE" /d "UNICODE" /d "NDEBUG" /d _WIN32_WCE=200
MTL=midl.exe
-# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o NUL /win32
-# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o NUL /win32
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /dll /machine:MIPS /subsystem:windowsce,2.0 /windowsce:noconvert
# SUBTRACT BASE LINK32 /pdb:none /nodefaultlib
-# ADD LINK32 commctrl.lib coredll.lib /nologo /dll /machine:MIPS /nodefaultlib:"wsock32.lib" /out:"WCE\MIPS\ace.dll" /subsystem:windowsce,2.0
+# ADD LINK32 commctrl.lib coredll.lib /nologo /dll /machine:MIPS /nodefaultlib:"wsock32.lib" /nodefaultlib:"$(CENoDefaultLib)" /out:"WCE\MIPS\ace.dll" /subsystem:windowsce,2.0
# SUBTRACT LINK32 /pdb:none
-PFILE=pfile.exe
-# ADD BASE PFILE COPY
-# ADD PFILE COPY
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
@@ -150,28 +145,28 @@ PFILE=pfile.exe
# PROP Intermediate_Dir "WCE/MIPS/Debug"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
+PFILE=pfile.exe
+# ADD BASE PFILE COPY
+# ADD PFILE COPY
CPP=clmips.exe
# ADD BASE CPP /nologo /MLd /W3 /Zi /Od /D "DEBUG" /D "MIPS" /D "_MIPS_" /D "UNDER_CE" /D "UNICODE" /D _WIN32_WCE=200 /YX /QMRWCE /c
-# ADD CPP /nologo /MTd /W3 /Zi /Od /I "..\STL\\" /I "..\\" /D "DEBUG" /D "MIPS" /D "_MIPS_" /D "UNDER_CE" /D "UNICODE" /D _WIN32_WCE=200 /D ACE_HAS_WINCE=1 /D ACE_HAS_DLL=1 /YX /QMRWCE /c
+# ADD CPP /nologo /M$(CECrtMTDebug) /W3 /Zi /Od /I "..\STL\\" /I "..\\" /D "DEBUG" /D "MIPS" /D "_MIPS_" /D "UNDER_CE" /D "UNICODE" /D _WIN32_WCE=200 /D ACE_HAS_WINCE=1 /D ACE_HAS_DLL=1 /YX /QMRWCE /c
RSC=rc.exe
# ADD BASE RSC /l 0x409 /r /d "MIPS" /d "_MIPS_" /d "UNDER_CE" /d "UNICODE" /d "DEBUG" /d _WIN32_WCE=200
# ADD RSC /l 0x409 /r /d "MIPS" /d "_MIPS_" /d "UNDER_CE" /d "UNICODE" /d "DEBUG" /d _WIN32_WCE=200
MTL=midl.exe
-# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32
-# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /dll /debug /machine:MIPS /subsystem:windowsce,2.0 /windowsce:noconvert
# SUBTRACT BASE LINK32 /pdb:none /nodefaultlib
-# ADD LINK32 commctrl.lib coredll.lib /nologo /dll /debug /machine:MIPS /nodefaultlib:"wsock32.lib" /out:"WCE\MIPS\aced.dll" /subsystem:windowsce,2.0
+# ADD LINK32 commctrl.lib coredll.lib /nologo /dll /debug /machine:MIPS /nodefaultlib:"wsock32.lib" /nodefaultlib:"$(CENoDefaultLib)" /out:"WCE\MIPS\aced.dll" /subsystem:windowsce,2.0
# SUBTRACT LINK32 /pdb:none
-PFILE=pfile.exe
-# ADD BASE PFILE COPY
-# ADD PFILE COPY
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
@@ -184,28 +179,28 @@ PFILE=pfile.exe
# PROP Intermediate_Dir "WCE/SH/Release"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
+PFILE=pfile.exe
+# ADD BASE PFILE COPY
+# ADD PFILE COPY
CPP=shcl.exe
# ADD BASE CPP /nologo /ML /W3 /O2 /D "NDEBUG" /D "SHx" /D "SH3" /D "_SH3_" /D "UNDER_CE" /D "UNICODE" /D _WIN32_WCE=200 /YX /c
-# ADD CPP /nologo /MT /W3 /O2 /I "..\\" /I "..\STL\\" /D "NDEBUG" /D "SHx" /D "SH3" /D "_SH3_" /D "UNDER_CE" /D "UNICODE" /D _WIN32_WCE=200 /D ACE_HAS_WINCE=1 /D ACE_HAS_DLL=1 /YX /c
+# ADD CPP /nologo /M$(CECrtMT) /W3 /O2 /I "..\\" /I "..\STL\\" /D "NDEBUG" /D "SHx" /D "SH3" /D "_SH3_" /D "UNDER_CE" /D "UNICODE" /D _WIN32_WCE=200 /D ACE_HAS_WINCE=1 /D ACE_HAS_DLL=1 /YX /c
RSC=rc.exe
# ADD BASE RSC /l 0x409 /r /d "SHx" /d "SH3" /d "_SH3_" /d "UNDER_CE" /d "UNICODE" /d "NDEBUG" /d _WIN32_WCE=200
# ADD RSC /l 0x409 /r /d "SHx" /d "SH3" /d "_SH3_" /d "UNDER_CE" /d "UNICODE" /d "NDEBUG" /d _WIN32_WCE=200
MTL=midl.exe
-# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o NUL /win32
-# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o NUL /win32
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /dll /machine:SH3 /subsystem:windowsce,2.0 /windowsce:noconvert
# SUBTRACT BASE LINK32 /pdb:none /nodefaultlib
-# ADD LINK32 commctrl.lib coredll.lib /nologo /dll /machine:SH3 /nodefaultlib:"wsock32.lib" /out:"WCE\sh\ace.dll" /subsystem:windowsce,2.0
+# ADD LINK32 commctrl.lib coredll.lib /nologo /dll /machine:SH3 /nodefaultlib:"wsock32.lib" /nodefaultlib:"$(CENoDefaultLib)" /out:"WCE\sh\ace.dll" /subsystem:windowsce,2.0
# SUBTRACT LINK32 /pdb:none
-PFILE=pfile.exe
-# ADD BASE PFILE COPY
-# ADD PFILE COPY
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
@@ -218,26 +213,26 @@ PFILE=pfile.exe
# PROP Intermediate_Dir "WCE/SH/Debug"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
+PFILE=pfile.exe
+# ADD BASE PFILE COPY
+# ADD PFILE COPY
CPP=shcl.exe
# ADD BASE CPP /nologo /MLd /W3 /Zi /Od /D "DEBUG" /D "SHx" /D "SH3" /D "_SH3_" /D "UNDER_CE" /D "UNICODE" /D _WIN32_WCE=200 /YX /c
-# ADD CPP /nologo /MTd /W3 /Zi /Od /Gy /I "..\\" /I "..\STL\\" /I "..\..\WinCE\mfcdll" /D "DEBUG" /D "SHx" /D "SH3" /D "_SH3_" /D "UNDER_CE" /D "UNICODE" /D _WIN32_WCE=200 /D ACE_HAS_WINCE=1 /D ACE_HAS_DLL=1 /D "_AFXDLL" /YX /c
+# ADD CPP /nologo /M$(CECrtMTDebug) /W3 /Zi /Od /Gy /I "..\\" /I "..\STL\\" /I "..\..\WinCE\mfcdll" /D "DEBUG" /D "SHx" /D "SH3" /D "_SH3_" /D "UNDER_CE" /D "UNICODE" /D _WIN32_WCE=200 /D ACE_HAS_WINCE=1 /D ACE_HAS_DLL=1 /D "_AFXDLL" /YX /c
RSC=rc.exe
# ADD BASE RSC /l 0x409 /r /d "SHx" /d "SH3" /d "_SH3_" /d "UNDER_CE" /d "UNICODE" /d "DEBUG" /d _WIN32_WCE=200
# ADD RSC /l 0x409 /r /d "SHx" /d "SH3" /d "_SH3_" /d "UNDER_CE" /d "UNICODE" /d "DEBUG" /d _WIN32_WCE=200 /d "_AFXDLL"
MTL=midl.exe
-# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32
-# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o NUL /win32
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /dll /debug /machine:SH3 /subsystem:windowsce,2.0 /windowsce:noconvert
# SUBTRACT BASE LINK32 /pdb:none /nodefaultlib
-# ADD LINK32 /nologo /dll /incremental:no /debug /machine:SH3 /out:"WCE\SH\aced.dll" /subsystem:windowsce,2.0
+# ADD LINK32 /nologo /dll /incremental:no /debug /machine:SH3 /nodefaultlib:"$(CENoDefaultLib)" /out:"WCE\SH\aced.dll" /subsystem:windowsce,2.0
# SUBTRACT LINK32 /pdb:none
-PFILE=pfile.exe
-# ADD BASE PFILE COPY
-# ADD PFILE COPY
!ENDIF
@@ -247,8 +242,8 @@ PFILE=pfile.exe
# Name "ace_ce_dll - Win32 (WCE x86em) Debug"
# Name "ace_ce_dll - Win32 (WCE MIPS) Release"
# Name "ace_ce_dll - Win32 (WCE MIPS) Debug"
-# Name "ace_ce_dll - Win32 (WCE SH) Release"
-# Name "ace_ce_dll - Win32 (WCE SH) Debug"
+# Name "ace_ce_dll - Win32 (WCE SH3) Release"
+# Name "ace_ce_dll - Win32 (WCE SH3) Debug"
# Begin Source File
SOURCE=.\ACE.cpp
@@ -270,7 +265,6 @@ DEP_CPP_ACE_C=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -340,6 +334,7 @@ DEP_CPP_ACE_C=\
".\ws2tcpip.h"\
NODEP_CPP_ACE_C=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -407,7 +402,6 @@ DEP_CPP_ACE_C=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -477,6 +471,7 @@ DEP_CPP_ACE_C=\
".\ws2tcpip.h"\
NODEP_CPP_ACE_C=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -497,7 +492,6 @@ DEP_CPP_ACE_C=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -567,10 +561,11 @@ DEP_CPP_ACE_C=\
".\ws2tcpip.h"\
NODEP_CPP_ACE_C=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_ACE_C=\
".\ACE.h"\
@@ -587,7 +582,6 @@ DEP_CPP_ACE_C=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -657,10 +651,11 @@ DEP_CPP_ACE_C=\
".\ws2tcpip.h"\
NODEP_CPP_ACE_C=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_ACE_C=\
".\ACE.h"\
@@ -677,7 +672,6 @@ DEP_CPP_ACE_C=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -747,6 +741,7 @@ DEP_CPP_ACE_C=\
".\ws2tcpip.h"\
NODEP_CPP_ACE_C=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -774,7 +769,6 @@ DEP_CPP_ACTIV=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -868,6 +862,7 @@ DEP_CPP_ACTIV=\
".\ws2tcpip.h"\
NODEP_CPP_ACTIV=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -889,18 +884,28 @@ DEP_CPP_ACTIV=\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\Hash_Map_Manager.cpp"\
".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
".\inc_user_config.h"\
".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
@@ -923,6 +928,9 @@ DEP_CPP_ACTIV=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
".\Message_Queue.h"\
".\Message_Queue.i"\
".\Message_Queue_T.cpp"\
@@ -999,7 +1007,6 @@ DEP_CPP_ACTIV=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -1093,6 +1100,7 @@ DEP_CPP_ACTIV=\
".\ws2tcpip.h"\
NODEP_CPP_ACTIV=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -1113,7 +1121,6 @@ DEP_CPP_ACTIV=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -1207,10 +1214,11 @@ DEP_CPP_ACTIV=\
".\ws2tcpip.h"\
NODEP_CPP_ACTIV=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_ACTIV=\
".\ACE.h"\
@@ -1227,7 +1235,6 @@ DEP_CPP_ACTIV=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -1321,10 +1328,11 @@ DEP_CPP_ACTIV=\
".\ws2tcpip.h"\
NODEP_CPP_ACTIV=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_ACTIV=\
".\ACE.h"\
@@ -1341,7 +1349,6 @@ DEP_CPP_ACTIV=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -1435,6 +1442,7 @@ DEP_CPP_ACTIV=\
".\ws2tcpip.h"\
NODEP_CPP_ACTIV=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -1461,7 +1469,6 @@ DEP_CPP_ADDR_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -1483,6 +1490,7 @@ DEP_CPP_ADDR_=\
".\ws2tcpip.h"\
NODEP_CPP_ADDR_=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -1540,7 +1548,6 @@ DEP_CPP_ADDR_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -1562,6 +1569,7 @@ DEP_CPP_ADDR_=\
".\ws2tcpip.h"\
NODEP_CPP_ADDR_=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -1581,7 +1589,6 @@ DEP_CPP_ADDR_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -1603,10 +1610,11 @@ DEP_CPP_ADDR_=\
".\ws2tcpip.h"\
NODEP_CPP_ADDR_=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_ADDR_=\
".\ACE.h"\
@@ -1622,7 +1630,6 @@ DEP_CPP_ADDR_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -1644,10 +1651,11 @@ DEP_CPP_ADDR_=\
".\ws2tcpip.h"\
NODEP_CPP_ADDR_=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_ADDR_=\
".\ACE.h"\
@@ -1663,7 +1671,6 @@ DEP_CPP_ADDR_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -1685,6 +1692,7 @@ DEP_CPP_ADDR_=\
".\ws2tcpip.h"\
NODEP_CPP_ADDR_=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -1712,7 +1720,6 @@ DEP_CPP_ARGV_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -1764,6 +1771,7 @@ DEP_CPP_ARGV_=\
".\ws2tcpip.h"\
NODEP_CPP_ARGV_=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -1785,9 +1793,11 @@ DEP_CPP_ARGV_=\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\Free_List.cpp"\
@@ -1853,7 +1863,6 @@ DEP_CPP_ARGV_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -1905,6 +1914,7 @@ DEP_CPP_ARGV_=\
".\ws2tcpip.h"\
NODEP_CPP_ARGV_=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -1925,7 +1935,6 @@ DEP_CPP_ARGV_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -1977,10 +1986,11 @@ DEP_CPP_ARGV_=\
".\ws2tcpip.h"\
NODEP_CPP_ARGV_=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_ARGV_=\
".\ACE.h"\
@@ -1997,7 +2007,6 @@ DEP_CPP_ARGV_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -2049,10 +2058,11 @@ DEP_CPP_ARGV_=\
".\ws2tcpip.h"\
NODEP_CPP_ARGV_=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_ARGV_=\
".\ACE.h"\
@@ -2069,7 +2079,6 @@ DEP_CPP_ARGV_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -2121,6 +2130,7 @@ DEP_CPP_ARGV_=\
".\ws2tcpip.h"\
NODEP_CPP_ARGV_=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -2150,7 +2160,6 @@ DEP_CPP_ASYNC=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -2237,6 +2246,7 @@ DEP_CPP_ASYNC=\
".\ws2tcpip.h"\
NODEP_CPP_ASYNC=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -2260,18 +2270,28 @@ DEP_CPP_ASYNC=\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\Hash_Map_Manager.cpp"\
".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
".\High_Res_Timer.h"\
".\High_Res_Timer.i"\
".\inc_user_config.h"\
@@ -2298,6 +2318,9 @@ DEP_CPP_ASYNC=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
".\Message_Queue.h"\
".\Message_Queue.i"\
".\Message_Queue_T.cpp"\
@@ -2310,6 +2333,8 @@ DEP_CPP_ASYNC=\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
".\Proactor.h"\
".\Proactor.i"\
".\Reactor.h"\
@@ -2397,7 +2422,6 @@ DEP_CPP_ASYNC=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -2484,6 +2508,7 @@ DEP_CPP_ASYNC=\
".\ws2tcpip.h"\
NODEP_CPP_ASYNC=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -2506,7 +2531,6 @@ DEP_CPP_ASYNC=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -2593,10 +2617,11 @@ DEP_CPP_ASYNC=\
".\ws2tcpip.h"\
NODEP_CPP_ASYNC=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_ASYNC=\
".\ACE.h"\
@@ -2615,7 +2640,6 @@ DEP_CPP_ASYNC=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -2702,10 +2726,11 @@ DEP_CPP_ASYNC=\
".\ws2tcpip.h"\
NODEP_CPP_ASYNC=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_ASYNC=\
".\ACE.h"\
@@ -2724,7 +2749,6 @@ DEP_CPP_ASYNC=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -2811,6 +2835,7 @@ DEP_CPP_ASYNC=\
".\ws2tcpip.h"\
NODEP_CPP_ASYNC=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -2835,7 +2860,6 @@ DEP_CPP_BASIC=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -2857,6 +2881,7 @@ DEP_CPP_BASIC=\
".\ws2tcpip.h"\
NODEP_CPP_BASIC=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -2878,9 +2903,11 @@ DEP_CPP_BASIC=\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
".\Dynamic.h"\
".\Dynamic.i"\
".\Event_Handler.h"\
@@ -2889,10 +2916,18 @@ DEP_CPP_BASIC=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\Hash_Map_Manager.cpp"\
".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
".\High_Res_Timer.h"\
".\High_Res_Timer.i"\
".\inc_user_config.h"\
@@ -2929,6 +2964,9 @@ DEP_CPP_BASIC=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
".\Message_Queue.h"\
".\Message_Queue.i"\
".\Message_Queue_T.cpp"\
@@ -3061,7 +3099,6 @@ DEP_CPP_BASIC=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -3083,6 +3120,7 @@ DEP_CPP_BASIC=\
".\ws2tcpip.h"\
NODEP_CPP_BASIC=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -3100,7 +3138,6 @@ DEP_CPP_BASIC=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -3122,10 +3159,11 @@ DEP_CPP_BASIC=\
".\ws2tcpip.h"\
NODEP_CPP_BASIC=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_BASIC=\
".\ACE.h"\
@@ -3139,7 +3177,6 @@ DEP_CPP_BASIC=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -3161,10 +3198,11 @@ DEP_CPP_BASIC=\
".\ws2tcpip.h"\
NODEP_CPP_BASIC=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_BASIC=\
".\ACE.h"\
@@ -3178,7 +3216,6 @@ DEP_CPP_BASIC=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -3200,6 +3237,7 @@ DEP_CPP_BASIC=\
".\ws2tcpip.h"\
NODEP_CPP_BASIC=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -3208,19 +3246,415 @@ NODEP_CPP_BASIC=\
# End Source File
# Begin Source File
+SOURCE=..\ace/config.h
+# End Source File
+# Begin Source File
+
SOURCE=.\Containers.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_CONTA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+NODEP_CPP_CONTA=\
+ ".\ace\config.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+DEP_CPP_CONTA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\config-win32-borland.h"\
+ ".\config-win32-common.h"\
+ ".\config-win32.h"\
+ ".\config-WinCE.h"\
+ ".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_CONTA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+NODEP_CPP_CONTA=\
+ ".\ace\config.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_CONTA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+NODEP_CPP_CONTA=\
+ ".\ace\config.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+
+DEP_CPP_CONTA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+NODEP_CPP_CONTA=\
+ ".\ace\config.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+DEP_CPP_CONTA=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\inc_user_config.h"\
+ ".\iosfwd.h"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+NODEP_CPP_CONTA=\
+ ".\ace\config.h"\
+
!ENDIF
@@ -3244,7 +3678,6 @@ DEP_CPP_DUMP_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Dump.h"\
".\Dump_T.cpp"\
".\Dump_T.h"\
@@ -3282,6 +3715,7 @@ DEP_CPP_DUMP_=\
".\ws2tcpip.h"\
NODEP_CPP_DUMP_=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -3353,7 +3787,6 @@ DEP_CPP_DUMP_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Dump.h"\
".\Dump_T.cpp"\
".\Dump_T.h"\
@@ -3391,6 +3824,7 @@ DEP_CPP_DUMP_=\
".\ws2tcpip.h"\
NODEP_CPP_DUMP_=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -3409,7 +3843,6 @@ DEP_CPP_DUMP_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Dump.h"\
".\Dump_T.cpp"\
".\Dump_T.h"\
@@ -3447,10 +3880,11 @@ DEP_CPP_DUMP_=\
".\ws2tcpip.h"\
NODEP_CPP_DUMP_=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_DUMP_=\
".\ACE.h"\
@@ -3465,7 +3899,6 @@ DEP_CPP_DUMP_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Dump.h"\
".\Dump_T.cpp"\
".\Dump_T.h"\
@@ -3503,10 +3936,11 @@ DEP_CPP_DUMP_=\
".\ws2tcpip.h"\
NODEP_CPP_DUMP_=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_DUMP_=\
".\ACE.h"\
@@ -3521,7 +3955,6 @@ DEP_CPP_DUMP_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Dump.h"\
".\Dump_T.cpp"\
".\Dump_T.h"\
@@ -3559,6 +3992,7 @@ DEP_CPP_DUMP_=\
".\ws2tcpip.h"\
NODEP_CPP_DUMP_=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -3583,7 +4017,6 @@ DEP_CPP_DYNAM=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Dynamic.h"\
".\Dynamic.i"\
".\inc_user_config.h"\
@@ -3607,6 +4040,7 @@ DEP_CPP_DYNAM=\
".\ws2tcpip.h"\
NODEP_CPP_DYNAM=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -3679,7 +4113,6 @@ DEP_CPP_DYNAM=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Dynamic.h"\
".\Dynamic.i"\
".\inc_user_config.h"\
@@ -3703,6 +4136,7 @@ DEP_CPP_DYNAM=\
".\ws2tcpip.h"\
NODEP_CPP_DYNAM=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -3720,7 +4154,6 @@ DEP_CPP_DYNAM=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Dynamic.h"\
".\Dynamic.i"\
".\inc_user_config.h"\
@@ -3744,10 +4177,11 @@ DEP_CPP_DYNAM=\
".\ws2tcpip.h"\
NODEP_CPP_DYNAM=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_DYNAM=\
".\ACE.h"\
@@ -3761,7 +4195,6 @@ DEP_CPP_DYNAM=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Dynamic.h"\
".\Dynamic.i"\
".\inc_user_config.h"\
@@ -3785,10 +4218,11 @@ DEP_CPP_DYNAM=\
".\ws2tcpip.h"\
NODEP_CPP_DYNAM=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_DYNAM=\
".\ACE.h"\
@@ -3802,7 +4236,6 @@ DEP_CPP_DYNAM=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Dynamic.h"\
".\Dynamic.i"\
".\inc_user_config.h"\
@@ -3826,6 +4259,7 @@ DEP_CPP_DYNAM=\
".\ws2tcpip.h"\
NODEP_CPP_DYNAM=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -3851,7 +4285,6 @@ DEP_CPP_EVENT=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -3905,6 +4338,7 @@ DEP_CPP_EVENT=\
".\ws2tcpip.h"\
NODEP_CPP_EVENT=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -3924,9 +4358,11 @@ DEP_CPP_EVENT=\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\Free_List.cpp"\
@@ -3955,6 +4391,9 @@ DEP_CPP_EVENT=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
@@ -4003,7 +4442,6 @@ DEP_CPP_EVENT=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -4057,6 +4495,7 @@ DEP_CPP_EVENT=\
".\ws2tcpip.h"\
NODEP_CPP_EVENT=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -4075,7 +4514,6 @@ DEP_CPP_EVENT=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -4129,10 +4567,11 @@ DEP_CPP_EVENT=\
".\ws2tcpip.h"\
NODEP_CPP_EVENT=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_EVENT=\
".\ACE.h"\
@@ -4147,7 +4586,6 @@ DEP_CPP_EVENT=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -4201,10 +4639,11 @@ DEP_CPP_EVENT=\
".\ws2tcpip.h"\
NODEP_CPP_EVENT=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_EVENT=\
".\ACE.h"\
@@ -4219,7 +4658,6 @@ DEP_CPP_EVENT=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -4273,6 +4711,7 @@ DEP_CPP_EVENT=\
".\ws2tcpip.h"\
NODEP_CPP_EVENT=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -4297,7 +4736,6 @@ DEP_CPP_GET_O=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Get_Opt.h"\
".\Get_Opt.i"\
".\inc_user_config.h"\
@@ -4321,6 +4759,7 @@ DEP_CPP_GET_O=\
".\ws2tcpip.h"\
NODEP_CPP_GET_O=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -4376,7 +4815,6 @@ DEP_CPP_GET_O=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Get_Opt.h"\
".\Get_Opt.i"\
".\inc_user_config.h"\
@@ -4400,6 +4838,7 @@ DEP_CPP_GET_O=\
".\ws2tcpip.h"\
NODEP_CPP_GET_O=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -4417,7 +4856,6 @@ DEP_CPP_GET_O=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Get_Opt.h"\
".\Get_Opt.i"\
".\inc_user_config.h"\
@@ -4441,10 +4879,11 @@ DEP_CPP_GET_O=\
".\ws2tcpip.h"\
NODEP_CPP_GET_O=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_GET_O=\
".\ACE.h"\
@@ -4458,7 +4897,6 @@ DEP_CPP_GET_O=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Get_Opt.h"\
".\Get_Opt.i"\
".\inc_user_config.h"\
@@ -4482,10 +4920,11 @@ DEP_CPP_GET_O=\
".\ws2tcpip.h"\
NODEP_CPP_GET_O=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_GET_O=\
".\ACE.h"\
@@ -4499,7 +4938,6 @@ DEP_CPP_GET_O=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Get_Opt.h"\
".\Get_Opt.i"\
".\inc_user_config.h"\
@@ -4523,6 +4961,7 @@ DEP_CPP_GET_O=\
".\ws2tcpip.h"\
NODEP_CPP_GET_O=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -4547,7 +4986,6 @@ DEP_CPP_HANDL=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Handle_Set.h"\
".\Handle_Set.i"\
".\inc_user_config.h"\
@@ -4571,6 +5009,7 @@ DEP_CPP_HANDL=\
".\ws2tcpip.h"\
NODEP_CPP_HANDL=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -4626,7 +5065,6 @@ DEP_CPP_HANDL=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Handle_Set.h"\
".\Handle_Set.i"\
".\inc_user_config.h"\
@@ -4650,6 +5088,7 @@ DEP_CPP_HANDL=\
".\ws2tcpip.h"\
NODEP_CPP_HANDL=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -4667,7 +5106,6 @@ DEP_CPP_HANDL=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Handle_Set.h"\
".\Handle_Set.i"\
".\inc_user_config.h"\
@@ -4691,10 +5129,11 @@ DEP_CPP_HANDL=\
".\ws2tcpip.h"\
NODEP_CPP_HANDL=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_HANDL=\
".\ACE.h"\
@@ -4708,7 +5147,6 @@ DEP_CPP_HANDL=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Handle_Set.h"\
".\Handle_Set.i"\
".\inc_user_config.h"\
@@ -4732,10 +5170,11 @@ DEP_CPP_HANDL=\
".\ws2tcpip.h"\
NODEP_CPP_HANDL=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_HANDL=\
".\ACE.h"\
@@ -4749,7 +5188,6 @@ DEP_CPP_HANDL=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Handle_Set.h"\
".\Handle_Set.i"\
".\inc_user_config.h"\
@@ -4773,6 +5211,7 @@ DEP_CPP_HANDL=\
".\ws2tcpip.h"\
NODEP_CPP_HANDL=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -4798,7 +5237,6 @@ DEP_CPP_HIGH_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\High_Res_Timer.h"\
@@ -4837,6 +5275,7 @@ DEP_CPP_HIGH_=\
".\ws2tcpip.h"\
NODEP_CPP_HIGH_=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -4856,8 +5295,16 @@ DEP_CPP_HIGH_=\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
".\High_Res_Timer.h"\
".\High_Res_Timer.i"\
".\inc_user_config.h"\
@@ -4866,14 +5313,25 @@ DEP_CPP_HIGH_=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
".\SString.h"\
".\SString.i"\
".\Stats.h"\
@@ -4909,7 +5367,6 @@ DEP_CPP_HIGH_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\High_Res_Timer.h"\
@@ -4948,6 +5405,7 @@ DEP_CPP_HIGH_=\
".\ws2tcpip.h"\
NODEP_CPP_HIGH_=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -4966,7 +5424,6 @@ DEP_CPP_HIGH_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\High_Res_Timer.h"\
@@ -5005,10 +5462,11 @@ DEP_CPP_HIGH_=\
".\ws2tcpip.h"\
NODEP_CPP_HIGH_=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_HIGH_=\
".\ACE.h"\
@@ -5023,7 +5481,6 @@ DEP_CPP_HIGH_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\High_Res_Timer.h"\
@@ -5062,10 +5519,11 @@ DEP_CPP_HIGH_=\
".\ws2tcpip.h"\
NODEP_CPP_HIGH_=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_HIGH_=\
".\ACE.h"\
@@ -5080,7 +5538,6 @@ DEP_CPP_HIGH_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\High_Res_Timer.h"\
@@ -5119,6 +5576,7 @@ DEP_CPP_HIGH_=\
".\ws2tcpip.h"\
NODEP_CPP_HIGH_=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -5145,7 +5603,6 @@ DEP_CPP_INET_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
@@ -5169,6 +5626,7 @@ DEP_CPP_INET_=\
".\ws2tcpip.h"\
NODEP_CPP_INET_=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -5228,7 +5686,6 @@ DEP_CPP_INET_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
@@ -5252,6 +5709,7 @@ DEP_CPP_INET_=\
".\ws2tcpip.h"\
NODEP_CPP_INET_=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -5271,7 +5729,6 @@ DEP_CPP_INET_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
@@ -5295,10 +5752,11 @@ DEP_CPP_INET_=\
".\ws2tcpip.h"\
NODEP_CPP_INET_=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_INET_=\
".\ACE.h"\
@@ -5314,7 +5772,6 @@ DEP_CPP_INET_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
@@ -5338,10 +5795,11 @@ DEP_CPP_INET_=\
".\ws2tcpip.h"\
NODEP_CPP_INET_=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_INET_=\
".\ACE.h"\
@@ -5357,7 +5815,6 @@ DEP_CPP_INET_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
@@ -5381,6 +5838,7 @@ DEP_CPP_INET_=\
".\ws2tcpip.h"\
NODEP_CPP_INET_=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -5399,9 +5857,9 @@ SOURCE=.\IO_Cntl_Msg.cpp
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
!ENDIF
@@ -5424,7 +5882,6 @@ DEP_CPP_IO_SA=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\IO_SAP.h"\
".\IO_SAP.i"\
@@ -5448,6 +5905,7 @@ DEP_CPP_IO_SA=\
".\ws2tcpip.h"\
NODEP_CPP_IO_SA=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -5503,7 +5961,6 @@ DEP_CPP_IO_SA=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\IO_SAP.h"\
".\IO_SAP.i"\
@@ -5527,6 +5984,7 @@ DEP_CPP_IO_SA=\
".\ws2tcpip.h"\
NODEP_CPP_IO_SA=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -5544,7 +6002,6 @@ DEP_CPP_IO_SA=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\IO_SAP.h"\
".\IO_SAP.i"\
@@ -5568,10 +6025,11 @@ DEP_CPP_IO_SA=\
".\ws2tcpip.h"\
NODEP_CPP_IO_SA=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_IO_SA=\
".\ACE.h"\
@@ -5585,7 +6043,6 @@ DEP_CPP_IO_SA=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\IO_SAP.h"\
".\IO_SAP.i"\
@@ -5609,10 +6066,11 @@ DEP_CPP_IO_SA=\
".\ws2tcpip.h"\
NODEP_CPP_IO_SA=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_IO_SA=\
".\ACE.h"\
@@ -5626,7 +6084,6 @@ DEP_CPP_IO_SA=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\IO_SAP.h"\
".\IO_SAP.i"\
@@ -5650,6 +6107,7 @@ DEP_CPP_IO_SA=\
".\ws2tcpip.h"\
NODEP_CPP_IO_SA=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -5674,7 +6132,6 @@ DEP_CPP_IPC_S=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\IPC_SAP.h"\
@@ -5698,6 +6155,7 @@ DEP_CPP_IPC_S=\
".\ws2tcpip.h"\
NODEP_CPP_IPC_S=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -5753,7 +6211,6 @@ DEP_CPP_IPC_S=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\IPC_SAP.h"\
@@ -5777,6 +6234,7 @@ DEP_CPP_IPC_S=\
".\ws2tcpip.h"\
NODEP_CPP_IPC_S=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -5794,7 +6252,6 @@ DEP_CPP_IPC_S=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\IPC_SAP.h"\
@@ -5818,10 +6275,11 @@ DEP_CPP_IPC_S=\
".\ws2tcpip.h"\
NODEP_CPP_IPC_S=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_IPC_S=\
".\ACE.h"\
@@ -5835,7 +6293,6 @@ DEP_CPP_IPC_S=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\IPC_SAP.h"\
@@ -5859,10 +6316,11 @@ DEP_CPP_IPC_S=\
".\ws2tcpip.h"\
NODEP_CPP_IPC_S=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_IPC_S=\
".\ACE.h"\
@@ -5876,7 +6334,6 @@ DEP_CPP_IPC_S=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\IPC_SAP.h"\
@@ -5900,6 +6357,7 @@ DEP_CPP_IPC_S=\
".\ws2tcpip.h"\
NODEP_CPP_IPC_S=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -5925,7 +6383,6 @@ DEP_CPP_LOCAL=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -6002,6 +6459,7 @@ DEP_CPP_LOCAL=\
".\ws2tcpip.h"\
NODEP_CPP_LOCAL=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -6021,9 +6479,11 @@ DEP_CPP_LOCAL=\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\Free_List.cpp"\
@@ -6112,7 +6572,6 @@ DEP_CPP_LOCAL=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -6189,6 +6648,7 @@ DEP_CPP_LOCAL=\
".\ws2tcpip.h"\
NODEP_CPP_LOCAL=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -6207,7 +6667,6 @@ DEP_CPP_LOCAL=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -6284,10 +6743,11 @@ DEP_CPP_LOCAL=\
".\ws2tcpip.h"\
NODEP_CPP_LOCAL=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_LOCAL=\
".\ACE.h"\
@@ -6302,7 +6762,6 @@ DEP_CPP_LOCAL=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -6379,10 +6838,11 @@ DEP_CPP_LOCAL=\
".\ws2tcpip.h"\
NODEP_CPP_LOCAL=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_LOCAL=\
".\ACE.h"\
@@ -6397,7 +6857,6 @@ DEP_CPP_LOCAL=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -6474,6 +6933,7 @@ DEP_CPP_LOCAL=\
".\ws2tcpip.h"\
NODEP_CPP_LOCAL=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -6501,7 +6961,6 @@ DEP_CPP_LOG_M=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -6576,6 +7035,7 @@ DEP_CPP_LOG_M=\
".\ws2tcpip.h"\
NODEP_CPP_LOG_M=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -6597,9 +7057,11 @@ DEP_CPP_LOG_M=\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\Free_List.cpp"\
@@ -6688,7 +7150,6 @@ DEP_CPP_LOG_M=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -6763,6 +7224,7 @@ DEP_CPP_LOG_M=\
".\ws2tcpip.h"\
NODEP_CPP_LOG_M=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -6783,7 +7245,6 @@ DEP_CPP_LOG_M=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -6858,10 +7319,11 @@ DEP_CPP_LOG_M=\
".\ws2tcpip.h"\
NODEP_CPP_LOG_M=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_LOG_M=\
".\ACE.h"\
@@ -6878,7 +7340,6 @@ DEP_CPP_LOG_M=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -6953,10 +7414,11 @@ DEP_CPP_LOG_M=\
".\ws2tcpip.h"\
NODEP_CPP_LOG_M=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_LOG_M=\
".\ACE.h"\
@@ -6973,7 +7435,6 @@ DEP_CPP_LOG_M=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -7048,6 +7509,7 @@ DEP_CPP_LOG_M=\
".\ws2tcpip.h"\
NODEP_CPP_LOG_M=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -7072,7 +7534,6 @@ DEP_CPP_LOG_R=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -7094,6 +7555,7 @@ DEP_CPP_LOG_R=\
".\ws2tcpip.h"\
NODEP_CPP_LOG_R=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -7147,7 +7609,6 @@ DEP_CPP_LOG_R=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -7169,6 +7630,7 @@ DEP_CPP_LOG_R=\
".\ws2tcpip.h"\
NODEP_CPP_LOG_R=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -7186,7 +7648,6 @@ DEP_CPP_LOG_R=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -7208,10 +7669,11 @@ DEP_CPP_LOG_R=\
".\ws2tcpip.h"\
NODEP_CPP_LOG_R=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_LOG_R=\
".\ACE.h"\
@@ -7225,7 +7687,6 @@ DEP_CPP_LOG_R=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -7247,10 +7708,11 @@ DEP_CPP_LOG_R=\
".\ws2tcpip.h"\
NODEP_CPP_LOG_R=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_LOG_R=\
".\ACE.h"\
@@ -7264,7 +7726,6 @@ DEP_CPP_LOG_R=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -7286,6 +7747,7 @@ DEP_CPP_LOG_R=\
".\ws2tcpip.h"\
NODEP_CPP_LOG_R=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -7311,7 +7773,6 @@ DEP_CPP_MALLO=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -7363,6 +7824,7 @@ DEP_CPP_MALLO=\
".\ws2tcpip.h"\
NODEP_CPP_MALLO=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -7382,9 +7844,11 @@ DEP_CPP_MALLO=\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\Free_List.cpp"\
@@ -7448,7 +7912,6 @@ DEP_CPP_MALLO=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -7500,6 +7963,7 @@ DEP_CPP_MALLO=\
".\ws2tcpip.h"\
NODEP_CPP_MALLO=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -7518,7 +7982,6 @@ DEP_CPP_MALLO=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -7570,10 +8033,11 @@ DEP_CPP_MALLO=\
".\ws2tcpip.h"\
NODEP_CPP_MALLO=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_MALLO=\
".\ACE.h"\
@@ -7588,7 +8052,6 @@ DEP_CPP_MALLO=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -7640,10 +8103,11 @@ DEP_CPP_MALLO=\
".\ws2tcpip.h"\
NODEP_CPP_MALLO=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_MALLO=\
".\ACE.h"\
@@ -7658,7 +8122,6 @@ DEP_CPP_MALLO=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -7710,6 +8173,7 @@ DEP_CPP_MALLO=\
".\ws2tcpip.h"\
NODEP_CPP_MALLO=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -7734,7 +8198,6 @@ DEP_CPP_MEM_M=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -7758,6 +8221,7 @@ DEP_CPP_MEM_M=\
".\ws2tcpip.h"\
NODEP_CPP_MEM_M=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -7813,7 +8277,6 @@ DEP_CPP_MEM_M=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -7837,6 +8300,7 @@ DEP_CPP_MEM_M=\
".\ws2tcpip.h"\
NODEP_CPP_MEM_M=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -7854,7 +8318,6 @@ DEP_CPP_MEM_M=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -7878,10 +8341,11 @@ DEP_CPP_MEM_M=\
".\ws2tcpip.h"\
NODEP_CPP_MEM_M=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_MEM_M=\
".\ACE.h"\
@@ -7895,7 +8359,6 @@ DEP_CPP_MEM_M=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -7919,10 +8382,11 @@ DEP_CPP_MEM_M=\
".\ws2tcpip.h"\
NODEP_CPP_MEM_M=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_MEM_M=\
".\ACE.h"\
@@ -7936,7 +8400,6 @@ DEP_CPP_MEM_M=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -7960,6 +8423,7 @@ DEP_CPP_MEM_M=\
".\ws2tcpip.h"\
NODEP_CPP_MEM_M=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -7985,7 +8449,6 @@ DEP_CPP_MEMOR=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -8037,6 +8500,7 @@ DEP_CPP_MEMOR=\
".\ws2tcpip.h"\
NODEP_CPP_MEMOR=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -8056,9 +8520,11 @@ DEP_CPP_MEMOR=\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\Free_List.cpp"\
@@ -8122,7 +8588,6 @@ DEP_CPP_MEMOR=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -8174,6 +8639,7 @@ DEP_CPP_MEMOR=\
".\ws2tcpip.h"\
NODEP_CPP_MEMOR=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -8192,7 +8658,6 @@ DEP_CPP_MEMOR=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -8244,10 +8709,11 @@ DEP_CPP_MEMOR=\
".\ws2tcpip.h"\
NODEP_CPP_MEMOR=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_MEMOR=\
".\ACE.h"\
@@ -8262,7 +8728,6 @@ DEP_CPP_MEMOR=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -8314,10 +8779,11 @@ DEP_CPP_MEMOR=\
".\ws2tcpip.h"\
NODEP_CPP_MEMOR=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_MEMOR=\
".\ACE.h"\
@@ -8332,7 +8798,6 @@ DEP_CPP_MEMOR=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -8384,6 +8849,7 @@ DEP_CPP_MEMOR=\
".\ws2tcpip.h"\
NODEP_CPP_MEMOR=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -8409,7 +8875,6 @@ DEP_CPP_MESSA=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -8463,6 +8928,7 @@ DEP_CPP_MESSA=\
".\ws2tcpip.h"\
NODEP_CPP_MESSA=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -8482,9 +8948,11 @@ DEP_CPP_MESSA=\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\Free_List.cpp"\
@@ -8513,6 +8981,9 @@ DEP_CPP_MESSA=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
@@ -8559,7 +9030,6 @@ DEP_CPP_MESSA=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -8613,6 +9083,7 @@ DEP_CPP_MESSA=\
".\ws2tcpip.h"\
NODEP_CPP_MESSA=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -8631,7 +9102,6 @@ DEP_CPP_MESSA=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -8685,10 +9155,11 @@ DEP_CPP_MESSA=\
".\ws2tcpip.h"\
NODEP_CPP_MESSA=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_MESSA=\
".\ACE.h"\
@@ -8703,7 +9174,6 @@ DEP_CPP_MESSA=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -8757,10 +9227,11 @@ DEP_CPP_MESSA=\
".\ws2tcpip.h"\
NODEP_CPP_MESSA=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_MESSA=\
".\ACE.h"\
@@ -8775,7 +9246,6 @@ DEP_CPP_MESSA=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -8829,6 +9299,7 @@ DEP_CPP_MESSA=\
".\ws2tcpip.h"\
NODEP_CPP_MESSA=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -8853,7 +9324,6 @@ DEP_CPP_METHO=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -8876,6 +9346,7 @@ DEP_CPP_METHO=\
".\ws2tcpip.h"\
NODEP_CPP_METHO=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -8930,7 +9401,6 @@ DEP_CPP_METHO=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -8953,6 +9423,7 @@ DEP_CPP_METHO=\
".\ws2tcpip.h"\
NODEP_CPP_METHO=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -8970,7 +9441,6 @@ DEP_CPP_METHO=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -8993,10 +9463,11 @@ DEP_CPP_METHO=\
".\ws2tcpip.h"\
NODEP_CPP_METHO=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_METHO=\
".\ACE.h"\
@@ -9010,7 +9481,6 @@ DEP_CPP_METHO=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -9033,10 +9503,11 @@ DEP_CPP_METHO=\
".\ws2tcpip.h"\
NODEP_CPP_METHO=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_METHO=\
".\ACE.h"\
@@ -9050,7 +9521,6 @@ DEP_CPP_METHO=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -9073,6 +9543,7 @@ DEP_CPP_METHO=\
".\ws2tcpip.h"\
NODEP_CPP_METHO=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -9101,7 +9572,6 @@ DEP_CPP_OBJEC=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -9201,6 +9671,7 @@ DEP_CPP_OBJEC=\
NODEP_CPP_OBJEC=\
".\Array.cpp"\
".\Array.i"\
+ ".\config.h"\
".\sys_conf.h"\
@@ -9222,9 +9693,11 @@ DEP_CPP_OBJEC=\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\Free_List.cpp"\
@@ -9337,7 +9810,6 @@ DEP_CPP_OBJEC=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -9437,6 +9909,7 @@ DEP_CPP_OBJEC=\
NODEP_CPP_OBJEC=\
".\Array.cpp"\
".\Array.i"\
+ ".\config.h"\
".\sys_conf.h"\
@@ -9458,7 +9931,6 @@ DEP_CPP_OBJEC=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -9558,10 +10030,11 @@ DEP_CPP_OBJEC=\
NODEP_CPP_OBJEC=\
".\Array.cpp"\
".\Array.i"\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_OBJEC=\
".\ACE.h"\
@@ -9579,7 +10052,6 @@ DEP_CPP_OBJEC=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -9679,10 +10151,11 @@ DEP_CPP_OBJEC=\
NODEP_CPP_OBJEC=\
".\Array.cpp"\
".\Array.i"\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_OBJEC=\
".\ACE.h"\
@@ -9700,7 +10173,6 @@ DEP_CPP_OBJEC=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -9800,6 +10272,7 @@ DEP_CPP_OBJEC=\
NODEP_CPP_OBJEC=\
".\Array.cpp"\
".\Array.i"\
+ ".\config.h"\
".\sys_conf.h"\
@@ -9825,7 +10298,6 @@ DEP_CPP_OBSTA=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -9879,6 +10351,7 @@ DEP_CPP_OBSTA=\
".\ws2tcpip.h"\
NODEP_CPP_OBSTA=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -9898,9 +10371,11 @@ DEP_CPP_OBSTA=\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\Free_List.cpp"\
@@ -9966,7 +10441,6 @@ DEP_CPP_OBSTA=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -10020,6 +10494,7 @@ DEP_CPP_OBSTA=\
".\ws2tcpip.h"\
NODEP_CPP_OBSTA=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -10038,7 +10513,6 @@ DEP_CPP_OBSTA=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -10092,10 +10566,11 @@ DEP_CPP_OBSTA=\
".\ws2tcpip.h"\
NODEP_CPP_OBSTA=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_OBSTA=\
".\ACE.h"\
@@ -10110,7 +10585,6 @@ DEP_CPP_OBSTA=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -10164,10 +10638,11 @@ DEP_CPP_OBSTA=\
".\ws2tcpip.h"\
NODEP_CPP_OBSTA=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_OBSTA=\
".\ACE.h"\
@@ -10182,7 +10657,6 @@ DEP_CPP_OBSTA=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -10236,6 +10710,7 @@ DEP_CPP_OBSTA=\
".\ws2tcpip.h"\
NODEP_CPP_OBSTA=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -10264,7 +10739,6 @@ DEP_CPP_OS_CP=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -10372,6 +10846,7 @@ DEP_CPP_OS_CP=\
NODEP_CPP_OS_CP=\
".\Array.cpp"\
".\Array.i"\
+ ".\config.h"\
".\sys_conf.h"\
@@ -10393,18 +10868,28 @@ DEP_CPP_OS_CP=\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\Hash_Map_Manager.cpp"\
".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
".\inc_user_config.h"\
".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
@@ -10427,6 +10912,9 @@ DEP_CPP_OS_CP=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
".\Message_Queue.h"\
".\Message_Queue.i"\
".\Message_Queue_T.cpp"\
@@ -10516,7 +11004,6 @@ DEP_CPP_OS_CP=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -10624,6 +11111,7 @@ DEP_CPP_OS_CP=\
NODEP_CPP_OS_CP=\
".\Array.cpp"\
".\Array.i"\
+ ".\config.h"\
".\sys_conf.h"\
@@ -10645,7 +11133,6 @@ DEP_CPP_OS_CP=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -10753,10 +11240,11 @@ DEP_CPP_OS_CP=\
NODEP_CPP_OS_CP=\
".\Array.cpp"\
".\Array.i"\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_OS_CP=\
".\ACE.h"\
@@ -10774,7 +11262,6 @@ DEP_CPP_OS_CP=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -10882,10 +11369,11 @@ DEP_CPP_OS_CP=\
NODEP_CPP_OS_CP=\
".\Array.cpp"\
".\Array.i"\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_OS_CP=\
".\ACE.h"\
@@ -10903,7 +11391,6 @@ DEP_CPP_OS_CP=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -11011,6 +11498,7 @@ DEP_CPP_OS_CP=\
NODEP_CPP_OS_CP=\
".\Array.cpp"\
".\Array.i"\
+ ".\config.h"\
".\sys_conf.h"\
@@ -11036,7 +11524,6 @@ DEP_CPP_PARSE=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -11142,6 +11629,7 @@ DEP_CPP_PARSE=\
".\ws2tcpip.h"\
NODEP_CPP_PARSE=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -11161,18 +11649,28 @@ DEP_CPP_PARSE=\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\Hash_Map_Manager.cpp"\
".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
".\inc_user_config.h"\
".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
@@ -11195,6 +11693,9 @@ DEP_CPP_PARSE=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
".\Message_Queue.h"\
".\Message_Queue.i"\
".\Message_Queue_T.cpp"\
@@ -11281,7 +11782,6 @@ DEP_CPP_PARSE=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -11387,6 +11887,7 @@ DEP_CPP_PARSE=\
".\ws2tcpip.h"\
NODEP_CPP_PARSE=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -11405,7 +11906,6 @@ DEP_CPP_PARSE=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -11511,10 +12011,11 @@ DEP_CPP_PARSE=\
".\ws2tcpip.h"\
NODEP_CPP_PARSE=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_PARSE=\
".\ACE.h"\
@@ -11529,7 +12030,6 @@ DEP_CPP_PARSE=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -11635,10 +12135,11 @@ DEP_CPP_PARSE=\
".\ws2tcpip.h"\
NODEP_CPP_PARSE=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_PARSE=\
".\ACE.h"\
@@ -11653,7 +12154,6 @@ DEP_CPP_PARSE=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -11759,6 +12259,7 @@ DEP_CPP_PARSE=\
".\ws2tcpip.h"\
NODEP_CPP_PARSE=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -11785,7 +12286,6 @@ DEP_CPP_PIPE_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
@@ -11824,6 +12324,7 @@ DEP_CPP_PIPE_=\
".\ws2tcpip.h"\
NODEP_CPP_PIPE_=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -11898,7 +12399,6 @@ DEP_CPP_PIPE_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
@@ -11937,6 +12437,7 @@ DEP_CPP_PIPE_=\
".\ws2tcpip.h"\
NODEP_CPP_PIPE_=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -11956,7 +12457,6 @@ DEP_CPP_PIPE_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
@@ -11995,10 +12495,11 @@ DEP_CPP_PIPE_=\
".\ws2tcpip.h"\
NODEP_CPP_PIPE_=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_PIPE_=\
".\ACE.h"\
@@ -12014,7 +12515,6 @@ DEP_CPP_PIPE_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
@@ -12053,10 +12553,11 @@ DEP_CPP_PIPE_=\
".\ws2tcpip.h"\
NODEP_CPP_PIPE_=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_PIPE_=\
".\ACE.h"\
@@ -12072,7 +12573,6 @@ DEP_CPP_PIPE_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
@@ -12111,6 +12611,7 @@ DEP_CPP_PIPE_=\
".\ws2tcpip.h"\
NODEP_CPP_PIPE_=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -12138,7 +12639,6 @@ DEP_CPP_PROCE=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -12192,6 +12692,7 @@ DEP_CPP_PROCE=\
".\ws2tcpip.h"\
NODEP_CPP_PROCE=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -12213,9 +12714,11 @@ DEP_CPP_PROCE=\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\Free_List.cpp"\
@@ -12283,7 +12786,6 @@ DEP_CPP_PROCE=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -12337,6 +12839,7 @@ DEP_CPP_PROCE=\
".\ws2tcpip.h"\
NODEP_CPP_PROCE=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -12357,7 +12860,6 @@ DEP_CPP_PROCE=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -12411,10 +12913,11 @@ DEP_CPP_PROCE=\
".\ws2tcpip.h"\
NODEP_CPP_PROCE=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_PROCE=\
".\ACE.h"\
@@ -12431,7 +12934,6 @@ DEP_CPP_PROCE=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -12485,10 +12987,11 @@ DEP_CPP_PROCE=\
".\ws2tcpip.h"\
NODEP_CPP_PROCE=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_PROCE=\
".\ACE.h"\
@@ -12505,7 +13008,6 @@ DEP_CPP_PROCE=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -12559,6 +13061,7 @@ DEP_CPP_PROCE=\
".\ws2tcpip.h"\
NODEP_CPP_PROCE=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -12584,7 +13087,6 @@ DEP_CPP_PROCES=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\inc_user_config.h"\
@@ -12623,6 +13125,7 @@ DEP_CPP_PROCES=\
".\ws2tcpip.h"\
NODEP_CPP_PROCES=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -12695,7 +13198,6 @@ DEP_CPP_PROCES=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\inc_user_config.h"\
@@ -12734,6 +13236,7 @@ DEP_CPP_PROCES=\
".\ws2tcpip.h"\
NODEP_CPP_PROCES=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -12752,7 +13255,6 @@ DEP_CPP_PROCES=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\inc_user_config.h"\
@@ -12791,10 +13293,11 @@ DEP_CPP_PROCES=\
".\ws2tcpip.h"\
NODEP_CPP_PROCES=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_PROCES=\
".\ACE.h"\
@@ -12809,7 +13312,6 @@ DEP_CPP_PROCES=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\inc_user_config.h"\
@@ -12848,10 +13350,11 @@ DEP_CPP_PROCES=\
".\ws2tcpip.h"\
NODEP_CPP_PROCES=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_PROCES=\
".\ACE.h"\
@@ -12866,7 +13369,6 @@ DEP_CPP_PROCES=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\inc_user_config.h"\
@@ -12905,6 +13407,7 @@ DEP_CPP_PROCES=\
".\ws2tcpip.h"\
NODEP_CPP_PROCES=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -12929,7 +13432,6 @@ DEP_CPP_PROFI=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\High_Res_Timer.h"\
".\High_Res_Timer.i"\
".\inc_user_config.h"\
@@ -12956,6 +13458,7 @@ DEP_CPP_PROFI=\
".\ws2tcpip.h"\
NODEP_CPP_PROFI=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -13014,7 +13517,6 @@ DEP_CPP_PROFI=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\High_Res_Timer.h"\
".\High_Res_Timer.i"\
".\inc_user_config.h"\
@@ -13041,6 +13543,7 @@ DEP_CPP_PROFI=\
".\ws2tcpip.h"\
NODEP_CPP_PROFI=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -13058,7 +13561,6 @@ DEP_CPP_PROFI=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\High_Res_Timer.h"\
".\High_Res_Timer.i"\
".\inc_user_config.h"\
@@ -13085,10 +13587,11 @@ DEP_CPP_PROFI=\
".\ws2tcpip.h"\
NODEP_CPP_PROFI=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_PROFI=\
".\ACE.h"\
@@ -13102,7 +13605,6 @@ DEP_CPP_PROFI=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\High_Res_Timer.h"\
".\High_Res_Timer.i"\
".\inc_user_config.h"\
@@ -13129,10 +13631,11 @@ DEP_CPP_PROFI=\
".\ws2tcpip.h"\
NODEP_CPP_PROFI=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_PROFI=\
".\ACE.h"\
@@ -13146,7 +13649,6 @@ DEP_CPP_PROFI=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\High_Res_Timer.h"\
".\High_Res_Timer.i"\
".\inc_user_config.h"\
@@ -13173,6 +13675,7 @@ DEP_CPP_PROFI=\
".\ws2tcpip.h"\
NODEP_CPP_PROFI=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -13198,7 +13701,6 @@ DEP_CPP_REACT=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -13306,6 +13808,7 @@ DEP_CPP_REACT=\
".\ws2tcpip.h"\
NODEP_CPP_REACT=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -13325,18 +13828,28 @@ DEP_CPP_REACT=\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\Hash_Map_Manager.cpp"\
".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
".\inc_user_config.h"\
".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
@@ -13364,6 +13877,9 @@ DEP_CPP_REACT=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
".\Message_Queue.h"\
".\Message_Queue.i"\
".\Message_Queue_T.cpp"\
@@ -13455,7 +13971,6 @@ DEP_CPP_REACT=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -13563,6 +14078,7 @@ DEP_CPP_REACT=\
".\ws2tcpip.h"\
NODEP_CPP_REACT=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -13581,7 +14097,6 @@ DEP_CPP_REACT=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -13689,10 +14204,11 @@ DEP_CPP_REACT=\
".\ws2tcpip.h"\
NODEP_CPP_REACT=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_REACT=\
".\ACE.h"\
@@ -13707,7 +14223,6 @@ DEP_CPP_REACT=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -13815,10 +14330,11 @@ DEP_CPP_REACT=\
".\ws2tcpip.h"\
NODEP_CPP_REACT=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_REACT=\
".\ACE.h"\
@@ -13833,7 +14349,6 @@ DEP_CPP_REACT=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -13941,6 +14456,7 @@ DEP_CPP_REACT=\
".\ws2tcpip.h"\
NODEP_CPP_REACT=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -13965,7 +14481,6 @@ DEP_CPP_SCHED=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -13989,6 +14504,7 @@ DEP_CPP_SCHED=\
".\ws2tcpip.h"\
NODEP_CPP_SCHED=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -14044,7 +14560,6 @@ DEP_CPP_SCHED=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -14068,6 +14583,7 @@ DEP_CPP_SCHED=\
".\ws2tcpip.h"\
NODEP_CPP_SCHED=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -14085,7 +14601,6 @@ DEP_CPP_SCHED=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -14109,10 +14624,11 @@ DEP_CPP_SCHED=\
".\ws2tcpip.h"\
NODEP_CPP_SCHED=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_SCHED=\
".\ACE.h"\
@@ -14126,7 +14642,6 @@ DEP_CPP_SCHED=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -14150,10 +14665,11 @@ DEP_CPP_SCHED=\
".\ws2tcpip.h"\
NODEP_CPP_SCHED=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_SCHED=\
".\ACE.h"\
@@ -14167,7 +14683,6 @@ DEP_CPP_SCHED=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -14191,6 +14706,7 @@ DEP_CPP_SCHED=\
".\ws2tcpip.h"\
NODEP_CPP_SCHED=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -14218,7 +14734,6 @@ DEP_CPP_SELEC=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -14317,6 +14832,7 @@ DEP_CPP_SELEC=\
".\ws2tcpip.h"\
NODEP_CPP_SELEC=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -14336,9 +14852,11 @@ DEP_CPP_SELEC=\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\Free_List.cpp"\
@@ -14441,7 +14959,6 @@ DEP_CPP_SELEC=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -14540,6 +15057,7 @@ DEP_CPP_SELEC=\
".\ws2tcpip.h"\
NODEP_CPP_SELEC=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -14560,7 +15078,6 @@ DEP_CPP_SELEC=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -14659,10 +15176,11 @@ DEP_CPP_SELEC=\
".\ws2tcpip.h"\
NODEP_CPP_SELEC=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_SELEC=\
".\ACE.h"\
@@ -14679,7 +15197,6 @@ DEP_CPP_SELEC=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -14778,10 +15295,11 @@ DEP_CPP_SELEC=\
".\ws2tcpip.h"\
NODEP_CPP_SELEC=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_SELEC=\
".\ACE.h"\
@@ -14798,7 +15316,6 @@ DEP_CPP_SELEC=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -14897,6 +15414,7 @@ DEP_CPP_SELEC=\
".\ws2tcpip.h"\
NODEP_CPP_SELEC=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -14909,6 +15427,106 @@ SOURCE=.\Select_Reactor_Base.cpp
!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+DEP_CPP_SELECT=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Select_Reactor_Base.h"\
+ ".\Select_Reactor_Base.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+NODEP_CPP_SELECT=\
+ ".\ace\config.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
DEP_CPP_SELECT=\
@@ -14927,9 +15545,11 @@ DEP_CPP_SELECT=\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\Free_List.cpp"\
@@ -15013,11 +15633,411 @@ DEP_CPP_SELECT=\
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+DEP_CPP_SELECT=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Select_Reactor_Base.h"\
+ ".\Select_Reactor_Base.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+NODEP_CPP_SELECT=\
+ ".\ace\config.h"\
+
+
!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+DEP_CPP_SELECT=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Select_Reactor_Base.h"\
+ ".\Select_Reactor_Base.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+NODEP_CPP_SELECT=\
+ ".\ace\config.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+
+DEP_CPP_SELECT=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Select_Reactor_Base.h"\
+ ".\Select_Reactor_Base.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+NODEP_CPP_SELECT=\
+ ".\ace\config.h"\
+
+
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+DEP_CPP_SELECT=\
+ ".\ACE.h"\
+ ".\ACE.i"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Basic_Types.h"\
+ ".\Basic_Types.i"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Log_Msg.h"\
+ ".\Log_Priority.h"\
+ ".\Log_Record.h"\
+ ".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
+ ".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
+ ".\Managed_Object.cpp"\
+ ".\Managed_Object.h"\
+ ".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
+ ".\Object_Manager.h"\
+ ".\Object_Manager.i"\
+ ".\OS.h"\
+ ".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Select_Reactor_Base.h"\
+ ".\Select_Reactor_Base.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Acceptor.h"\
+ ".\SOCK_Acceptor.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
+ ".\SString.h"\
+ ".\SString.i"\
+ ".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\Trace.h"\
+ ".\ws2tcpip.h"\
+
+NODEP_CPP_SELECT=\
+ ".\ace\config.h"\
+
!ENDIF
@@ -15047,7 +16067,6 @@ DEP_CPP_SERVI=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -15156,6 +16175,7 @@ DEP_CPP_SERVI=\
".\ws2tcpip.h"\
NODEP_CPP_SERVI=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -15181,20 +16201,30 @@ DEP_CPP_SERVI=\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
".\Get_Opt.h"\
".\Get_Opt.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\Hash_Map_Manager.cpp"\
".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
".\High_Res_Timer.h"\
".\High_Res_Timer.i"\
".\inc_user_config.h"\
@@ -15223,6 +16253,9 @@ DEP_CPP_SERVI=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
".\Message_Queue.h"\
".\Message_Queue.i"\
".\Message_Queue_T.cpp"\
@@ -15239,6 +16272,8 @@ DEP_CPP_SERVI=\
".\OS.i"\
".\Parse_Node.h"\
".\Parse_Node.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
".\Proactor.h"\
".\Proactor.i"\
".\Reactor.h"\
@@ -15340,7 +16375,6 @@ DEP_CPP_SERVI=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -15449,6 +16483,7 @@ DEP_CPP_SERVI=\
".\ws2tcpip.h"\
NODEP_CPP_SERVI=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -15473,7 +16508,6 @@ DEP_CPP_SERVI=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -15582,10 +16616,11 @@ DEP_CPP_SERVI=\
".\ws2tcpip.h"\
NODEP_CPP_SERVI=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_SERVI=\
".\ACE.h"\
@@ -15606,7 +16641,6 @@ DEP_CPP_SERVI=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -15715,10 +16749,11 @@ DEP_CPP_SERVI=\
".\ws2tcpip.h"\
NODEP_CPP_SERVI=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_SERVI=\
".\ACE.h"\
@@ -15739,7 +16774,6 @@ DEP_CPP_SERVI=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -15848,6 +16882,7 @@ DEP_CPP_SERVI=\
".\ws2tcpip.h"\
NODEP_CPP_SERVI=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -15875,7 +16910,6 @@ DEP_CPP_SERVIC=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -15985,6 +17019,7 @@ DEP_CPP_SERVIC=\
".\ws2tcpip.h"\
NODEP_CPP_SERVIC=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -16006,20 +17041,30 @@ DEP_CPP_SERVIC=\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
".\Get_Opt.h"\
".\Get_Opt.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\Hash_Map_Manager.cpp"\
".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
@@ -16046,6 +17091,9 @@ DEP_CPP_SERVIC=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
".\Message_Queue.h"\
".\Message_Queue.i"\
".\Message_Queue_T.cpp"\
@@ -16132,7 +17180,6 @@ DEP_CPP_SERVIC=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -16242,6 +17289,7 @@ DEP_CPP_SERVIC=\
".\ws2tcpip.h"\
NODEP_CPP_SERVIC=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -16262,7 +17310,6 @@ DEP_CPP_SERVIC=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -16372,10 +17419,11 @@ DEP_CPP_SERVIC=\
".\ws2tcpip.h"\
NODEP_CPP_SERVIC=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_SERVIC=\
".\ACE.h"\
@@ -16392,7 +17440,6 @@ DEP_CPP_SERVIC=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -16502,10 +17549,11 @@ DEP_CPP_SERVIC=\
".\ws2tcpip.h"\
NODEP_CPP_SERVIC=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_SERVIC=\
".\ACE.h"\
@@ -16522,7 +17570,6 @@ DEP_CPP_SERVIC=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -16632,6 +17679,7 @@ DEP_CPP_SERVIC=\
".\ws2tcpip.h"\
NODEP_CPP_SERVIC=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -16657,7 +17705,6 @@ DEP_CPP_SERVICE=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\inc_user_config.h"\
@@ -16698,6 +17745,7 @@ DEP_CPP_SERVICE=\
".\ws2tcpip.h"\
NODEP_CPP_SERVICE=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -16772,7 +17820,6 @@ DEP_CPP_SERVICE=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\inc_user_config.h"\
@@ -16813,6 +17860,7 @@ DEP_CPP_SERVICE=\
".\ws2tcpip.h"\
NODEP_CPP_SERVICE=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -16831,7 +17879,6 @@ DEP_CPP_SERVICE=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\inc_user_config.h"\
@@ -16872,10 +17919,11 @@ DEP_CPP_SERVICE=\
".\ws2tcpip.h"\
NODEP_CPP_SERVICE=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_SERVICE=\
".\ACE.h"\
@@ -16890,7 +17938,6 @@ DEP_CPP_SERVICE=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\inc_user_config.h"\
@@ -16931,10 +17978,11 @@ DEP_CPP_SERVICE=\
".\ws2tcpip.h"\
NODEP_CPP_SERVICE=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_SERVICE=\
".\ACE.h"\
@@ -16949,7 +17997,6 @@ DEP_CPP_SERVICE=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\inc_user_config.h"\
@@ -16990,6 +18037,7 @@ DEP_CPP_SERVICE=\
".\ws2tcpip.h"\
NODEP_CPP_SERVICE=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -17015,7 +18063,6 @@ DEP_CPP_SERVICE_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\inc_user_config.h"\
@@ -17058,6 +18105,7 @@ DEP_CPP_SERVICE_=\
".\ws2tcpip.h"\
NODEP_CPP_SERVICE_=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -17134,7 +18182,6 @@ DEP_CPP_SERVICE_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\inc_user_config.h"\
@@ -17177,6 +18224,7 @@ DEP_CPP_SERVICE_=\
".\ws2tcpip.h"\
NODEP_CPP_SERVICE_=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -17195,7 +18243,6 @@ DEP_CPP_SERVICE_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\inc_user_config.h"\
@@ -17238,10 +18285,11 @@ DEP_CPP_SERVICE_=\
".\ws2tcpip.h"\
NODEP_CPP_SERVICE_=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_SERVICE_=\
".\ACE.h"\
@@ -17256,7 +18304,6 @@ DEP_CPP_SERVICE_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\inc_user_config.h"\
@@ -17299,10 +18346,11 @@ DEP_CPP_SERVICE_=\
".\ws2tcpip.h"\
NODEP_CPP_SERVICE_=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_SERVICE_=\
".\ACE.h"\
@@ -17317,7 +18365,6 @@ DEP_CPP_SERVICE_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\inc_user_config.h"\
@@ -17360,6 +18407,7 @@ DEP_CPP_SERVICE_=\
".\ws2tcpip.h"\
NODEP_CPP_SERVICE_=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -17385,7 +18433,6 @@ DEP_CPP_SERVICE_T=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -17493,6 +18540,7 @@ DEP_CPP_SERVICE_T=\
".\ws2tcpip.h"\
NODEP_CPP_SERVICE_T=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -17512,18 +18560,28 @@ DEP_CPP_SERVICE_T=\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\Hash_Map_Manager.cpp"\
".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
".\inc_user_config.h"\
".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
@@ -17546,6 +18604,9 @@ DEP_CPP_SERVICE_T=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
".\Message_Queue.h"\
".\Message_Queue.i"\
".\Message_Queue_T.cpp"\
@@ -17634,7 +18695,6 @@ DEP_CPP_SERVICE_T=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -17742,6 +18802,7 @@ DEP_CPP_SERVICE_T=\
".\ws2tcpip.h"\
NODEP_CPP_SERVICE_T=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -17760,7 +18821,6 @@ DEP_CPP_SERVICE_T=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -17868,10 +18928,11 @@ DEP_CPP_SERVICE_T=\
".\ws2tcpip.h"\
NODEP_CPP_SERVICE_T=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_SERVICE_T=\
".\ACE.h"\
@@ -17886,7 +18947,6 @@ DEP_CPP_SERVICE_T=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -17994,10 +19054,11 @@ DEP_CPP_SERVICE_T=\
".\ws2tcpip.h"\
NODEP_CPP_SERVICE_T=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_SERVICE_T=\
".\ACE.h"\
@@ -18012,7 +19073,6 @@ DEP_CPP_SERVICE_T=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -18120,6 +19180,7 @@ DEP_CPP_SERVICE_T=\
".\ws2tcpip.h"\
NODEP_CPP_SERVICE_T=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -18144,7 +19205,6 @@ DEP_CPP_SHARE=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -18168,6 +19228,7 @@ DEP_CPP_SHARE=\
".\ws2tcpip.h"\
NODEP_CPP_SHARE=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -18223,7 +19284,6 @@ DEP_CPP_SHARE=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -18247,6 +19307,7 @@ DEP_CPP_SHARE=\
".\ws2tcpip.h"\
NODEP_CPP_SHARE=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -18264,7 +19325,6 @@ DEP_CPP_SHARE=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -18288,10 +19348,11 @@ DEP_CPP_SHARE=\
".\ws2tcpip.h"\
NODEP_CPP_SHARE=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_SHARE=\
".\ACE.h"\
@@ -18305,7 +19366,6 @@ DEP_CPP_SHARE=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -18329,10 +19389,11 @@ DEP_CPP_SHARE=\
".\ws2tcpip.h"\
NODEP_CPP_SHARE=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_SHARE=\
".\ACE.h"\
@@ -18346,7 +19407,6 @@ DEP_CPP_SHARE=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -18370,6 +19430,7 @@ DEP_CPP_SHARE=\
".\ws2tcpip.h"\
NODEP_CPP_SHARE=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -18395,7 +19456,6 @@ DEP_CPP_SIGNA=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -18447,6 +19507,7 @@ DEP_CPP_SIGNA=\
".\ws2tcpip.h"\
NODEP_CPP_SIGNA=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -18466,9 +19527,11 @@ DEP_CPP_SIGNA=\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\Free_List.cpp"\
@@ -18532,7 +19595,6 @@ DEP_CPP_SIGNA=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -18584,6 +19646,7 @@ DEP_CPP_SIGNA=\
".\ws2tcpip.h"\
NODEP_CPP_SIGNA=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -18602,7 +19665,6 @@ DEP_CPP_SIGNA=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -18654,10 +19716,11 @@ DEP_CPP_SIGNA=\
".\ws2tcpip.h"\
NODEP_CPP_SIGNA=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_SIGNA=\
".\ACE.h"\
@@ -18672,7 +19735,6 @@ DEP_CPP_SIGNA=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -18724,10 +19786,11 @@ DEP_CPP_SIGNA=\
".\ws2tcpip.h"\
NODEP_CPP_SIGNA=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_SIGNA=\
".\ACE.h"\
@@ -18742,7 +19805,6 @@ DEP_CPP_SIGNA=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -18794,6 +19856,7 @@ DEP_CPP_SIGNA=\
".\ws2tcpip.h"\
NODEP_CPP_SIGNA=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -18820,7 +19883,6 @@ DEP_CPP_SOCK_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\IPC_SAP.h"\
@@ -18846,6 +19908,7 @@ DEP_CPP_SOCK_=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -18907,7 +19970,6 @@ DEP_CPP_SOCK_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\IPC_SAP.h"\
@@ -18933,6 +19995,7 @@ DEP_CPP_SOCK_=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -18952,7 +20015,6 @@ DEP_CPP_SOCK_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\IPC_SAP.h"\
@@ -18978,10 +20040,11 @@ DEP_CPP_SOCK_=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_SOCK_=\
".\ACE.h"\
@@ -18997,7 +20060,6 @@ DEP_CPP_SOCK_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\IPC_SAP.h"\
@@ -19023,10 +20085,11 @@ DEP_CPP_SOCK_=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_SOCK_=\
".\ACE.h"\
@@ -19042,7 +20105,6 @@ DEP_CPP_SOCK_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\IPC_SAP.h"\
@@ -19068,6 +20130,7 @@ DEP_CPP_SOCK_=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -19095,7 +20158,6 @@ DEP_CPP_SOCK_A=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\inc_user_config.h"\
@@ -19143,6 +20205,7 @@ DEP_CPP_SOCK_A=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_A=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -19228,7 +20291,6 @@ DEP_CPP_SOCK_A=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\inc_user_config.h"\
@@ -19276,6 +20338,7 @@ DEP_CPP_SOCK_A=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_A=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -19296,7 +20359,6 @@ DEP_CPP_SOCK_A=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\inc_user_config.h"\
@@ -19344,10 +20406,11 @@ DEP_CPP_SOCK_A=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_A=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_SOCK_A=\
".\ACE.h"\
@@ -19364,7 +20427,6 @@ DEP_CPP_SOCK_A=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\inc_user_config.h"\
@@ -19412,10 +20474,11 @@ DEP_CPP_SOCK_A=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_A=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_SOCK_A=\
".\ACE.h"\
@@ -19432,7 +20495,6 @@ DEP_CPP_SOCK_A=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\inc_user_config.h"\
@@ -19480,6 +20542,7 @@ DEP_CPP_SOCK_A=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_A=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -19506,7 +20569,6 @@ DEP_CPP_SOCK_C=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\IPC_SAP.h"\
@@ -19536,6 +20598,7 @@ DEP_CPP_SOCK_C=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_C=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -19601,7 +20664,6 @@ DEP_CPP_SOCK_C=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\IPC_SAP.h"\
@@ -19631,6 +20693,7 @@ DEP_CPP_SOCK_C=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_C=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -19650,7 +20713,6 @@ DEP_CPP_SOCK_C=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\IPC_SAP.h"\
@@ -19680,10 +20742,11 @@ DEP_CPP_SOCK_C=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_C=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_SOCK_C=\
".\ACE.h"\
@@ -19699,7 +20762,6 @@ DEP_CPP_SOCK_C=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\IPC_SAP.h"\
@@ -19729,10 +20791,11 @@ DEP_CPP_SOCK_C=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_C=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_SOCK_C=\
".\ACE.h"\
@@ -19748,7 +20811,6 @@ DEP_CPP_SOCK_C=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\IPC_SAP.h"\
@@ -19778,6 +20840,7 @@ DEP_CPP_SOCK_C=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_C=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -19804,7 +20867,6 @@ DEP_CPP_SOCK_CO=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Handle_Set.h"\
".\Handle_Set.i"\
".\inc_user_config.h"\
@@ -19841,6 +20903,7 @@ DEP_CPP_SOCK_CO=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_CO=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -19913,7 +20976,6 @@ DEP_CPP_SOCK_CO=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Handle_Set.h"\
".\Handle_Set.i"\
".\inc_user_config.h"\
@@ -19950,6 +21012,7 @@ DEP_CPP_SOCK_CO=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_CO=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -19969,7 +21032,6 @@ DEP_CPP_SOCK_CO=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Handle_Set.h"\
".\Handle_Set.i"\
".\inc_user_config.h"\
@@ -20006,10 +21068,11 @@ DEP_CPP_SOCK_CO=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_CO=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_SOCK_CO=\
".\ACE.h"\
@@ -20025,7 +21088,6 @@ DEP_CPP_SOCK_CO=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Handle_Set.h"\
".\Handle_Set.i"\
".\inc_user_config.h"\
@@ -20062,10 +21124,11 @@ DEP_CPP_SOCK_CO=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_CO=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_SOCK_CO=\
".\ACE.h"\
@@ -20081,7 +21144,6 @@ DEP_CPP_SOCK_CO=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Handle_Set.h"\
".\Handle_Set.i"\
".\inc_user_config.h"\
@@ -20118,6 +21180,7 @@ DEP_CPP_SOCK_CO=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_CO=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -20145,7 +21208,6 @@ DEP_CPP_SOCK_D=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\Handle_Set.h"\
@@ -20188,6 +21250,7 @@ DEP_CPP_SOCK_D=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_D=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -20268,7 +21331,6 @@ DEP_CPP_SOCK_D=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\Handle_Set.h"\
@@ -20311,6 +21373,7 @@ DEP_CPP_SOCK_D=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_D=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -20331,7 +21394,6 @@ DEP_CPP_SOCK_D=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\Handle_Set.h"\
@@ -20374,10 +21436,11 @@ DEP_CPP_SOCK_D=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_D=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_SOCK_D=\
".\ACE.h"\
@@ -20394,7 +21457,6 @@ DEP_CPP_SOCK_D=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\Handle_Set.h"\
@@ -20437,10 +21499,11 @@ DEP_CPP_SOCK_D=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_D=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_SOCK_D=\
".\ACE.h"\
@@ -20457,7 +21520,6 @@ DEP_CPP_SOCK_D=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\Handle_Set.h"\
@@ -20500,6 +21562,7 @@ DEP_CPP_SOCK_D=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_D=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -20526,7 +21589,6 @@ DEP_CPP_SOCK_DG=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
@@ -20558,6 +21620,7 @@ DEP_CPP_SOCK_DG=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_DG=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -20625,7 +21688,6 @@ DEP_CPP_SOCK_DG=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
@@ -20657,6 +21719,7 @@ DEP_CPP_SOCK_DG=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_DG=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -20676,7 +21739,6 @@ DEP_CPP_SOCK_DG=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
@@ -20708,10 +21770,11 @@ DEP_CPP_SOCK_DG=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_DG=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_SOCK_DG=\
".\ACE.h"\
@@ -20727,7 +21790,6 @@ DEP_CPP_SOCK_DG=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
@@ -20759,10 +21821,11 @@ DEP_CPP_SOCK_DG=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_DG=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_SOCK_DG=\
".\ACE.h"\
@@ -20778,7 +21841,6 @@ DEP_CPP_SOCK_DG=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
@@ -20810,6 +21872,7 @@ DEP_CPP_SOCK_DG=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_DG=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -20836,7 +21899,6 @@ DEP_CPP_SOCK_DGR=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
@@ -20868,6 +21930,7 @@ DEP_CPP_SOCK_DGR=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_DGR=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -20935,7 +21998,6 @@ DEP_CPP_SOCK_DGR=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
@@ -20967,6 +22029,7 @@ DEP_CPP_SOCK_DGR=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_DGR=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -20986,7 +22049,6 @@ DEP_CPP_SOCK_DGR=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
@@ -21018,10 +22080,11 @@ DEP_CPP_SOCK_DGR=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_DGR=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_SOCK_DGR=\
".\ACE.h"\
@@ -21037,7 +22100,6 @@ DEP_CPP_SOCK_DGR=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
@@ -21069,10 +22131,11 @@ DEP_CPP_SOCK_DGR=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_DGR=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_SOCK_DGR=\
".\ACE.h"\
@@ -21088,7 +22151,6 @@ DEP_CPP_SOCK_DGR=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
@@ -21120,6 +22182,7 @@ DEP_CPP_SOCK_DGR=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_DGR=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -21146,7 +22209,6 @@ DEP_CPP_SOCK_I=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\IPC_SAP.h"\
@@ -21174,6 +22236,7 @@ DEP_CPP_SOCK_I=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_I=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -21194,6 +22257,8 @@ DEP_CPP_SOCK_I=\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\IPC_SAP.h"\
@@ -21237,7 +22302,6 @@ DEP_CPP_SOCK_I=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\IPC_SAP.h"\
@@ -21265,6 +22329,7 @@ DEP_CPP_SOCK_I=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_I=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -21284,7 +22349,6 @@ DEP_CPP_SOCK_I=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\IPC_SAP.h"\
@@ -21312,10 +22376,11 @@ DEP_CPP_SOCK_I=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_I=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_SOCK_I=\
".\ACE.h"\
@@ -21331,7 +22396,6 @@ DEP_CPP_SOCK_I=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\IPC_SAP.h"\
@@ -21359,10 +22423,11 @@ DEP_CPP_SOCK_I=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_I=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_SOCK_I=\
".\ACE.h"\
@@ -21378,7 +22443,6 @@ DEP_CPP_SOCK_I=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\IPC_SAP.h"\
@@ -21406,6 +22470,7 @@ DEP_CPP_SOCK_I=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_I=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -21432,7 +22497,6 @@ DEP_CPP_SOCK_S=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
@@ -21464,6 +22528,7 @@ DEP_CPP_SOCK_S=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_S=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -21531,7 +22596,6 @@ DEP_CPP_SOCK_S=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
@@ -21563,6 +22627,7 @@ DEP_CPP_SOCK_S=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_S=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -21582,7 +22647,6 @@ DEP_CPP_SOCK_S=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
@@ -21614,10 +22678,11 @@ DEP_CPP_SOCK_S=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_S=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_SOCK_S=\
".\ACE.h"\
@@ -21633,7 +22698,6 @@ DEP_CPP_SOCK_S=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
@@ -21665,10 +22729,11 @@ DEP_CPP_SOCK_S=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_S=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_SOCK_S=\
".\ACE.h"\
@@ -21684,7 +22749,6 @@ DEP_CPP_SOCK_S=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
@@ -21716,6 +22780,7 @@ DEP_CPP_SOCK_S=\
".\ws2tcpip.h"\
NODEP_CPP_SOCK_S=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -21741,7 +22806,6 @@ DEP_CPP_SSTRI=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -21809,6 +22873,7 @@ DEP_CPP_SSTRI=\
".\ws2tcpip.h"\
NODEP_CPP_SSTRI=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -21828,9 +22893,11 @@ DEP_CPP_SSTRI=\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\Free_List.cpp"\
@@ -21910,7 +22977,6 @@ DEP_CPP_SSTRI=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -21978,6 +23044,7 @@ DEP_CPP_SSTRI=\
".\ws2tcpip.h"\
NODEP_CPP_SSTRI=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -21996,7 +23063,6 @@ DEP_CPP_SSTRI=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -22064,10 +23130,11 @@ DEP_CPP_SSTRI=\
".\ws2tcpip.h"\
NODEP_CPP_SSTRI=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_SSTRI=\
".\ACE.h"\
@@ -22082,7 +23149,6 @@ DEP_CPP_SSTRI=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -22150,10 +23216,11 @@ DEP_CPP_SSTRI=\
".\ws2tcpip.h"\
NODEP_CPP_SSTRI=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_SSTRI=\
".\ACE.h"\
@@ -22168,7 +23235,6 @@ DEP_CPP_SSTRI=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -22236,6 +23302,7 @@ DEP_CPP_SSTRI=\
".\ws2tcpip.h"\
NODEP_CPP_SSTRI=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -22260,7 +23327,6 @@ DEP_CPP_STATS=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -22284,6 +23350,7 @@ DEP_CPP_STATS=\
".\ws2tcpip.h"\
NODEP_CPP_STATS=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -22292,6 +23359,7 @@ NODEP_CPP_STATS=\
DEP_CPP_STATS=\
".\ACE.h"\
".\ACE.i"\
+ ".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
@@ -22302,25 +23370,57 @@ DEP_CPP_STATS=\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
+ ".\Malloc.h"\
+ ".\Malloc.i"\
".\Malloc_Base.h"\
+ ".\Malloc_T.cpp"\
+ ".\Malloc_T.h"\
+ ".\Malloc_T.i"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\Memory_Pool.i"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
".\SString.h"\
".\SString.i"\
".\Stats.h"\
".\Stats.i"\
".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
".\Trace.h"\
".\ws2tcpip.h"\
@@ -22339,7 +23439,6 @@ DEP_CPP_STATS=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -22363,6 +23462,7 @@ DEP_CPP_STATS=\
".\ws2tcpip.h"\
NODEP_CPP_STATS=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -22380,7 +23480,6 @@ DEP_CPP_STATS=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -22404,10 +23503,11 @@ DEP_CPP_STATS=\
".\ws2tcpip.h"\
NODEP_CPP_STATS=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_STATS=\
".\ACE.h"\
@@ -22421,7 +23521,6 @@ DEP_CPP_STATS=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -22445,10 +23544,11 @@ DEP_CPP_STATS=\
".\ws2tcpip.h"\
NODEP_CPP_STATS=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_STATS=\
".\ACE.h"\
@@ -22462,7 +23562,6 @@ DEP_CPP_STATS=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -22486,6 +23585,7 @@ DEP_CPP_STATS=\
".\ws2tcpip.h"\
NODEP_CPP_STATS=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -22511,7 +23611,6 @@ DEP_CPP_STRAT=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -22604,6 +23703,7 @@ DEP_CPP_STRAT=\
".\ws2tcpip.h"\
NODEP_CPP_STRAT=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -22623,18 +23723,28 @@ DEP_CPP_STRAT=\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\Hash_Map_Manager.cpp"\
".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
".\inc_user_config.h"\
".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
@@ -22657,6 +23767,9 @@ DEP_CPP_STRAT=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
".\Message_Queue.h"\
".\Message_Queue.i"\
".\Message_Queue_T.cpp"\
@@ -22730,7 +23843,6 @@ DEP_CPP_STRAT=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -22823,6 +23935,7 @@ DEP_CPP_STRAT=\
".\ws2tcpip.h"\
NODEP_CPP_STRAT=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -22841,7 +23954,6 @@ DEP_CPP_STRAT=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -22934,10 +24046,11 @@ DEP_CPP_STRAT=\
".\ws2tcpip.h"\
NODEP_CPP_STRAT=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_STRAT=\
".\ACE.h"\
@@ -22952,7 +24065,6 @@ DEP_CPP_STRAT=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -23045,10 +24157,11 @@ DEP_CPP_STRAT=\
".\ws2tcpip.h"\
NODEP_CPP_STRAT=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_STRAT=\
".\ACE.h"\
@@ -23063,7 +24176,6 @@ DEP_CPP_STRAT=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -23156,6 +24268,7 @@ DEP_CPP_STRAT=\
".\ws2tcpip.h"\
NODEP_CPP_STRAT=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -23181,7 +24294,6 @@ DEP_CPP_SVC_C=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -23256,6 +24368,7 @@ DEP_CPP_SVC_C=\
".\ws2tcpip.h"\
NODEP_CPP_SVC_C=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -23275,9 +24388,11 @@ DEP_CPP_SVC_C=\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\Free_List.cpp"\
@@ -23364,7 +24479,6 @@ DEP_CPP_SVC_C=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -23439,6 +24553,7 @@ DEP_CPP_SVC_C=\
".\ws2tcpip.h"\
NODEP_CPP_SVC_C=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -23457,7 +24572,6 @@ DEP_CPP_SVC_C=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -23532,10 +24646,11 @@ DEP_CPP_SVC_C=\
".\ws2tcpip.h"\
NODEP_CPP_SVC_C=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_SVC_C=\
".\ACE.h"\
@@ -23550,7 +24665,6 @@ DEP_CPP_SVC_C=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -23625,10 +24739,11 @@ DEP_CPP_SVC_C=\
".\ws2tcpip.h"\
NODEP_CPP_SVC_C=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_SVC_C=\
".\ACE.h"\
@@ -23643,7 +24758,6 @@ DEP_CPP_SVC_C=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -23718,6 +24832,7 @@ DEP_CPP_SVC_C=\
".\ws2tcpip.h"\
NODEP_CPP_SVC_C=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -23745,7 +24860,6 @@ DEP_CPP_SVC_CO=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -23858,6 +24972,7 @@ DEP_CPP_SVC_CO=\
".\ws2tcpip.h"\
NODEP_CPP_SVC_CO=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -23879,18 +24994,28 @@ DEP_CPP_SVC_CO=\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\Hash_Map_Manager.cpp"\
".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
".\inc_user_config.h"\
".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
@@ -23913,6 +25038,9 @@ DEP_CPP_SVC_CO=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
".\Message_Queue.h"\
".\Message_Queue.i"\
".\Message_Queue_T.cpp"\
@@ -24008,7 +25136,6 @@ DEP_CPP_SVC_CO=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -24121,6 +25248,7 @@ DEP_CPP_SVC_CO=\
".\ws2tcpip.h"\
NODEP_CPP_SVC_CO=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -24141,7 +25269,6 @@ DEP_CPP_SVC_CO=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -24254,10 +25381,11 @@ DEP_CPP_SVC_CO=\
".\ws2tcpip.h"\
NODEP_CPP_SVC_CO=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_SVC_CO=\
".\ACE.h"\
@@ -24274,7 +25402,6 @@ DEP_CPP_SVC_CO=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -24387,10 +25514,11 @@ DEP_CPP_SVC_CO=\
".\ws2tcpip.h"\
NODEP_CPP_SVC_CO=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_SVC_CO=\
".\ACE.h"\
@@ -24407,7 +25535,6 @@ DEP_CPP_SVC_CO=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -24520,6 +25647,7 @@ DEP_CPP_SVC_CO=\
".\ws2tcpip.h"\
NODEP_CPP_SVC_CO=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -24545,7 +25673,6 @@ DEP_CPP_SYNCH=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\inc_user_config.h"\
@@ -24580,6 +25707,7 @@ DEP_CPP_SYNCH=\
".\ws2tcpip.h"\
NODEP_CPP_SYNCH=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -24648,7 +25776,6 @@ DEP_CPP_SYNCH=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\inc_user_config.h"\
@@ -24683,6 +25810,7 @@ DEP_CPP_SYNCH=\
".\ws2tcpip.h"\
NODEP_CPP_SYNCH=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -24701,7 +25829,6 @@ DEP_CPP_SYNCH=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\inc_user_config.h"\
@@ -24736,10 +25863,11 @@ DEP_CPP_SYNCH=\
".\ws2tcpip.h"\
NODEP_CPP_SYNCH=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_SYNCH=\
".\ACE.h"\
@@ -24754,7 +25882,6 @@ DEP_CPP_SYNCH=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\inc_user_config.h"\
@@ -24789,10 +25916,11 @@ DEP_CPP_SYNCH=\
".\ws2tcpip.h"\
NODEP_CPP_SYNCH=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_SYNCH=\
".\ACE.h"\
@@ -24807,7 +25935,6 @@ DEP_CPP_SYNCH=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\inc_user_config.h"\
@@ -24842,6 +25969,7 @@ DEP_CPP_SYNCH=\
".\ws2tcpip.h"\
NODEP_CPP_SYNCH=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -24866,7 +25994,6 @@ DEP_CPP_SYNCH_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -24890,6 +26017,7 @@ DEP_CPP_SYNCH_=\
".\ws2tcpip.h"\
NODEP_CPP_SYNCH_=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -24945,7 +26073,6 @@ DEP_CPP_SYNCH_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -24969,6 +26096,7 @@ DEP_CPP_SYNCH_=\
".\ws2tcpip.h"\
NODEP_CPP_SYNCH_=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -24986,7 +26114,6 @@ DEP_CPP_SYNCH_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -25010,10 +26137,11 @@ DEP_CPP_SYNCH_=\
".\ws2tcpip.h"\
NODEP_CPP_SYNCH_=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_SYNCH_=\
".\ACE.h"\
@@ -25027,7 +26155,6 @@ DEP_CPP_SYNCH_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -25051,10 +26178,11 @@ DEP_CPP_SYNCH_=\
".\ws2tcpip.h"\
NODEP_CPP_SYNCH_=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_SYNCH_=\
".\ACE.h"\
@@ -25068,7 +26196,6 @@ DEP_CPP_SYNCH_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -25092,6 +26219,7 @@ DEP_CPP_SYNCH_=\
".\ws2tcpip.h"\
NODEP_CPP_SYNCH_=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -25117,7 +26245,6 @@ DEP_CPP_SYSTE=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -25170,6 +26297,7 @@ DEP_CPP_SYSTE=\
".\ws2tcpip.h"\
NODEP_CPP_SYSTE=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -25189,9 +26317,11 @@ DEP_CPP_SYSTE=\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\Free_List.cpp"\
@@ -25256,7 +26386,6 @@ DEP_CPP_SYSTE=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -25309,6 +26438,7 @@ DEP_CPP_SYSTE=\
".\ws2tcpip.h"\
NODEP_CPP_SYSTE=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -25327,7 +26457,6 @@ DEP_CPP_SYSTE=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -25380,10 +26509,11 @@ DEP_CPP_SYSTE=\
".\ws2tcpip.h"\
NODEP_CPP_SYSTE=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_SYSTE=\
".\ACE.h"\
@@ -25398,7 +26528,6 @@ DEP_CPP_SYSTE=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -25451,10 +26580,11 @@ DEP_CPP_SYSTE=\
".\ws2tcpip.h"\
NODEP_CPP_SYSTE=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_SYSTE=\
".\ACE.h"\
@@ -25469,7 +26599,6 @@ DEP_CPP_SYSTE=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -25522,6 +26651,7 @@ DEP_CPP_SYSTE=\
".\ws2tcpip.h"\
NODEP_CPP_SYSTE=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -25547,7 +26677,6 @@ DEP_CPP_TASK_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -25651,6 +26780,7 @@ DEP_CPP_TASK_=\
".\ws2tcpip.h"\
NODEP_CPP_TASK_=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -25670,18 +26800,28 @@ DEP_CPP_TASK_=\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\Hash_Map_Manager.cpp"\
".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
".\inc_user_config.h"\
".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
@@ -25704,6 +26844,9 @@ DEP_CPP_TASK_=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
".\Message_Queue.h"\
".\Message_Queue.i"\
".\Message_Queue_T.cpp"\
@@ -25788,7 +26931,6 @@ DEP_CPP_TASK_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -25892,6 +27034,7 @@ DEP_CPP_TASK_=\
".\ws2tcpip.h"\
NODEP_CPP_TASK_=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -25910,7 +27053,6 @@ DEP_CPP_TASK_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -26014,10 +27156,11 @@ DEP_CPP_TASK_=\
".\ws2tcpip.h"\
NODEP_CPP_TASK_=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_TASK_=\
".\ACE.h"\
@@ -26032,7 +27175,6 @@ DEP_CPP_TASK_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -26136,10 +27278,11 @@ DEP_CPP_TASK_=\
".\ws2tcpip.h"\
NODEP_CPP_TASK_=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_TASK_=\
".\ACE.h"\
@@ -26154,7 +27297,6 @@ DEP_CPP_TASK_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -26258,6 +27400,7 @@ DEP_CPP_TASK_=\
".\ws2tcpip.h"\
NODEP_CPP_TASK_=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -26282,7 +27425,6 @@ DEP_CPP_THREA=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -26306,6 +27448,7 @@ DEP_CPP_THREA=\
".\ws2tcpip.h"\
NODEP_CPP_THREA=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -26361,7 +27504,6 @@ DEP_CPP_THREA=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -26385,6 +27527,7 @@ DEP_CPP_THREA=\
".\ws2tcpip.h"\
NODEP_CPP_THREA=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -26402,7 +27545,6 @@ DEP_CPP_THREA=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -26426,10 +27568,11 @@ DEP_CPP_THREA=\
".\ws2tcpip.h"\
NODEP_CPP_THREA=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_THREA=\
".\ACE.h"\
@@ -26443,7 +27586,6 @@ DEP_CPP_THREA=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -26467,10 +27609,11 @@ DEP_CPP_THREA=\
".\ws2tcpip.h"\
NODEP_CPP_THREA=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_THREA=\
".\ACE.h"\
@@ -26484,7 +27627,6 @@ DEP_CPP_THREA=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -26508,6 +27650,7 @@ DEP_CPP_THREA=\
".\ws2tcpip.h"\
NODEP_CPP_THREA=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -26533,7 +27676,6 @@ DEP_CPP_THREAD=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -26592,6 +27734,7 @@ DEP_CPP_THREAD=\
".\ws2tcpip.h"\
NODEP_CPP_THREAD=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -26611,9 +27754,11 @@ DEP_CPP_THREAD=\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
".\Dynamic.h"\
".\Dynamic.i"\
".\Event_Handler.h"\
@@ -26684,7 +27829,6 @@ DEP_CPP_THREAD=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -26743,6 +27887,7 @@ DEP_CPP_THREAD=\
".\ws2tcpip.h"\
NODEP_CPP_THREAD=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -26761,7 +27906,6 @@ DEP_CPP_THREAD=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -26820,10 +27964,11 @@ DEP_CPP_THREAD=\
".\ws2tcpip.h"\
NODEP_CPP_THREAD=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_THREAD=\
".\ACE.h"\
@@ -26838,7 +27983,6 @@ DEP_CPP_THREAD=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -26897,10 +28041,11 @@ DEP_CPP_THREAD=\
".\ws2tcpip.h"\
NODEP_CPP_THREAD=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_THREAD=\
".\ACE.h"\
@@ -26915,7 +28060,6 @@ DEP_CPP_THREAD=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -26974,6 +28118,7 @@ DEP_CPP_THREAD=\
".\ws2tcpip.h"\
NODEP_CPP_THREAD=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -26999,7 +28144,6 @@ DEP_CPP_TOKEN=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\inc_user_config.h"\
@@ -27036,6 +28180,7 @@ DEP_CPP_TOKEN=\
".\ws2tcpip.h"\
NODEP_CPP_TOKEN=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -27106,7 +28251,6 @@ DEP_CPP_TOKEN=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\inc_user_config.h"\
@@ -27143,6 +28287,7 @@ DEP_CPP_TOKEN=\
".\ws2tcpip.h"\
NODEP_CPP_TOKEN=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -27161,7 +28306,6 @@ DEP_CPP_TOKEN=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\inc_user_config.h"\
@@ -27198,10 +28342,11 @@ DEP_CPP_TOKEN=\
".\ws2tcpip.h"\
NODEP_CPP_TOKEN=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_TOKEN=\
".\ACE.h"\
@@ -27216,7 +28361,6 @@ DEP_CPP_TOKEN=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\inc_user_config.h"\
@@ -27253,10 +28397,11 @@ DEP_CPP_TOKEN=\
".\ws2tcpip.h"\
NODEP_CPP_TOKEN=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_TOKEN=\
".\ACE.h"\
@@ -27271,7 +28416,6 @@ DEP_CPP_TOKEN=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\inc_user_config.h"\
@@ -27308,6 +28452,7 @@ DEP_CPP_TOKEN=\
".\ws2tcpip.h"\
NODEP_CPP_TOKEN=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -27333,7 +28478,6 @@ DEP_CPP_TOKEN_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -27410,6 +28554,7 @@ DEP_CPP_TOKEN_=\
".\ws2tcpip.h"\
NODEP_CPP_TOKEN_=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -27429,9 +28574,11 @@ DEP_CPP_TOKEN_=\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\Free_List.cpp"\
@@ -27520,7 +28667,6 @@ DEP_CPP_TOKEN_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -27597,6 +28743,7 @@ DEP_CPP_TOKEN_=\
".\ws2tcpip.h"\
NODEP_CPP_TOKEN_=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -27615,7 +28762,6 @@ DEP_CPP_TOKEN_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -27692,10 +28838,11 @@ DEP_CPP_TOKEN_=\
".\ws2tcpip.h"\
NODEP_CPP_TOKEN_=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_TOKEN_=\
".\ACE.h"\
@@ -27710,7 +28857,6 @@ DEP_CPP_TOKEN_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -27787,10 +28933,11 @@ DEP_CPP_TOKEN_=\
".\ws2tcpip.h"\
NODEP_CPP_TOKEN_=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_TOKEN_=\
".\ACE.h"\
@@ -27805,7 +28952,6 @@ DEP_CPP_TOKEN_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -27882,6 +29028,7 @@ DEP_CPP_TOKEN_=\
".\ws2tcpip.h"\
NODEP_CPP_TOKEN_=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -27907,7 +29054,6 @@ DEP_CPP_TP_RE=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -27990,6 +29136,7 @@ DEP_CPP_TP_RE=\
".\ws2tcpip.h"\
NODEP_CPP_TP_RE=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -28009,9 +29156,11 @@ DEP_CPP_TP_RE=\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\Free_List.cpp"\
@@ -28114,7 +29263,6 @@ DEP_CPP_TP_RE=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -28197,6 +29345,7 @@ DEP_CPP_TP_RE=\
".\ws2tcpip.h"\
NODEP_CPP_TP_RE=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -28215,7 +29364,6 @@ DEP_CPP_TP_RE=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -28298,10 +29446,11 @@ DEP_CPP_TP_RE=\
".\ws2tcpip.h"\
NODEP_CPP_TP_RE=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_TP_RE=\
".\ACE.h"\
@@ -28316,7 +29465,6 @@ DEP_CPP_TP_RE=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -28399,10 +29547,11 @@ DEP_CPP_TP_RE=\
".\ws2tcpip.h"\
NODEP_CPP_TP_RE=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_TP_RE=\
".\ACE.h"\
@@ -28417,7 +29566,6 @@ DEP_CPP_TP_RE=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -28500,6 +29648,7 @@ DEP_CPP_TP_RE=\
".\ws2tcpip.h"\
NODEP_CPP_TP_RE=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -28524,7 +29673,6 @@ DEP_CPP_TRACE=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -28547,6 +29695,7 @@ DEP_CPP_TRACE=\
".\ws2tcpip.h"\
NODEP_CPP_TRACE=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -28601,7 +29750,6 @@ DEP_CPP_TRACE=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -28624,6 +29772,7 @@ DEP_CPP_TRACE=\
".\ws2tcpip.h"\
NODEP_CPP_TRACE=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -28641,7 +29790,6 @@ DEP_CPP_TRACE=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -28664,10 +29812,11 @@ DEP_CPP_TRACE=\
".\ws2tcpip.h"\
NODEP_CPP_TRACE=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_TRACE=\
".\ACE.h"\
@@ -28681,7 +29830,6 @@ DEP_CPP_TRACE=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -28704,10 +29852,11 @@ DEP_CPP_TRACE=\
".\ws2tcpip.h"\
NODEP_CPP_TRACE=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_TRACE=\
".\ACE.h"\
@@ -28721,7 +29870,6 @@ DEP_CPP_TRACE=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -28744,6 +29892,7 @@ DEP_CPP_TRACE=\
".\ws2tcpip.h"\
NODEP_CPP_TRACE=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -28769,7 +29918,6 @@ DEP_CPP_WFMO_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -28865,6 +30013,7 @@ DEP_CPP_WFMO_=\
".\ws2tcpip.h"\
NODEP_CPP_WFMO_=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -28884,18 +30033,28 @@ DEP_CPP_WFMO_=\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
+ ".\Functor.h"\
+ ".\Functor.i"\
+ ".\Functor_T.cpp"\
+ ".\Functor_T.h"\
+ ".\Functor_T.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\Hash_Map_Manager.cpp"\
".\Hash_Map_Manager.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
".\inc_user_config.h"\
".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
@@ -28918,6 +30077,9 @@ DEP_CPP_WFMO_=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
".\Message_Queue.h"\
".\Message_Queue.i"\
".\Message_Queue_T.cpp"\
@@ -28994,7 +30156,6 @@ DEP_CPP_WFMO_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -29090,6 +30251,7 @@ DEP_CPP_WFMO_=\
".\ws2tcpip.h"\
NODEP_CPP_WFMO_=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -29108,7 +30270,6 @@ DEP_CPP_WFMO_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -29204,10 +30365,11 @@ DEP_CPP_WFMO_=\
".\ws2tcpip.h"\
NODEP_CPP_WFMO_=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_WFMO_=\
".\ACE.h"\
@@ -29222,7 +30384,6 @@ DEP_CPP_WFMO_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -29318,10 +30479,11 @@ DEP_CPP_WFMO_=\
".\ws2tcpip.h"\
NODEP_CPP_WFMO_=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_WFMO_=\
".\ACE.h"\
@@ -29336,7 +30498,6 @@ DEP_CPP_WFMO_=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -29432,6 +30593,7 @@ DEP_CPP_WFMO_=\
".\ws2tcpip.h"\
NODEP_CPP_WFMO_=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -29459,7 +30621,6 @@ DEP_CPP_XTREA=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -29556,6 +30717,7 @@ DEP_CPP_XTREA=\
".\XtReactor.h"\
NODEP_CPP_XTREA=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -29577,9 +30739,11 @@ DEP_CPP_XTREA=\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
".\Free_List.cpp"\
@@ -29698,7 +30862,6 @@ DEP_CPP_XTREA=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -29795,6 +30958,7 @@ DEP_CPP_XTREA=\
".\XtReactor.h"\
NODEP_CPP_XTREA=\
+ ".\config.h"\
".\sys_conf.h"\
@@ -29815,7 +30979,6 @@ DEP_CPP_XTREA=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -29912,10 +31075,11 @@ DEP_CPP_XTREA=\
".\XtReactor.h"\
NODEP_CPP_XTREA=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Release"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
DEP_CPP_XTREA=\
".\ACE.h"\
@@ -29932,7 +31096,6 @@ DEP_CPP_XTREA=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -30029,10 +31192,11 @@ DEP_CPP_XTREA=\
".\XtReactor.h"\
NODEP_CPP_XTREA=\
+ ".\config.h"\
".\sys_conf.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH) Debug"
+!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
DEP_CPP_XTREA=\
".\ACE.h"\
@@ -30049,7 +31213,6 @@ DEP_CPP_XTREA=\
".\config-win32-common.h"\
".\config-win32.h"\
".\config-WinCE.h"\
- ".\config.h"\
".\Containers.cpp"\
".\Containers.h"\
".\Containers.i"\
@@ -30146,6 +31309,7 @@ DEP_CPP_XTREA=\
".\XtReactor.h"\
NODEP_CPP_XTREA=\
+ ".\config.h"\
".\sys_conf.h"\