summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-04-27 19:25:08 +0000
committerbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-04-27 19:25:08 +0000
commit90d90920c117f772d54283b1a0858a63338d5dd9 (patch)
treee9aedfb4a3df6aafac7b633ff05355a5f61ede00
parent843d454c02e74d928f37cbec18ee9ec6e5e18d32 (diff)
downloadATCD-90d90920c117f772d54283b1a0858a63338d5dd9.tar.gz
ChangeLogTag:Thu Apr 27 10:55:11 2000 Darrell Brunsch <brunsch@uci.edu>
-rw-r--r--ChangeLog128
-rw-r--r--ChangeLogs/ChangeLog-02a128
-rw-r--r--ChangeLogs/ChangeLog-03a128
-rw-r--r--ace/ACE.cpp11
-rw-r--r--ace/ARGV.cpp2
-rw-r--r--ace/Memory_Pool.cpp4
-rw-r--r--ace/OS.cpp25
-rw-r--r--ace/OS.h10
-rw-r--r--ace/OS.i191
-rw-r--r--ace/Service_Config.i3
-rw-r--r--ace/Svc_Conf.h2
-rw-r--r--ace/Svc_Conf.l6
-rw-r--r--ace/Svc_Conf.y2
-rw-r--r--ace/Svc_Conf_l.cpp2
-rw-r--r--ace/Svc_Conf_y.cpp6
-rw-r--r--ace/ace_ce.dsw14
-rw-r--r--ace/ace_dll_ce.dsp (renamed from ace/ace_ce_dll.dsp)11630
-rw-r--r--ace/ace_wchar.h31
-rw-r--r--ace/config-WinCE.h54
-rw-r--r--ace/config-win32-common.h4
20 files changed, 8397 insertions, 3984 deletions
diff --git a/ChangeLog b/ChangeLog
index 254d75ade08..80ffb6428d2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,131 @@
+Thu Apr 27 10:55:11 2000 Darrell Brunsch <brunsch@uci.edu>
+
+ These changes bring the Windows CE port up to date. It currently
+ supports Windows CE 2.11 on the H/PC Pro. I am looking into the 2.11
+ P/PC port, but there are other problems with it still. Hopefully
+ the WinCE 3.0 SDK will be more mature.
+
+ * ace/ace_dll_ce.dsp: (added)
+ * ace/ace_ce_dll.dsp: (removed)
+ * ace/ace_ce.dsw:
+
+ Created a new dsp file from scratch from CE to see how the
+ toolkit sets up the projects. Removed the old one.
+
+ * ace/ACE.cpp:
+
+ format_hexdump (): Changed usage of isprint to ACE_OS::ace_isprint.
+
+ get_ip_interfaces (): Changed use of deprecated ACE_TEXT_STRING to
+ ACE_TString. Also added an ACE_TEXT_CHAR_TO_TCHAR to a use
+ of the ACE_INET_Addr constructor.
+
+ * ace/ARGV.cpp:
+
+ create_buf_from_queue (): We were not adjusting the size of a
+ ACE_TCHAR buffer by sizeof ACE_TCHAR when we did a memcopy.
+ Thanks to Valery Arkhangorodsky <valerya@servicesoft.com>
+ for reporting this.
+
+ * ace/Memory_Pool.cpp:
+
+ seh_selector (): Changed use of LPEXCEPTION_POINTERS to
+ EXCEPTION_POINTERS * since it seems like that definition is
+ missing in some WinCE configs.
+
+ * ace/ace_wchar.h:
+
+ Added deprecated definition of ACE_TEXT_STRING.
+
+ convert (): Changed the conversions from CharToOem to
+ MultiByteToWideChar, since it is more widely supported in Win32.
+ Also removed the loading of user32.lib since it was only needed
+ for CharToOem.
+
+ * ace/config-win32-common.h:
+
+ Changed the _MT check so it doesn't do anything on CE. Some
+ CE targets do not have the Multithreaded DLL generation option.
+
+ * ace/config-WinCE.h:
+
+ Changed ACE_DEFAULT_LD_SEARCH_PATH to use ACE_TEXT.
+
+ Added a define for ACE_HAS_WCHAR and a check to always define
+ ACE_USES_WCHAR.
+
+ Commented out the ACE_HAS_MFC check.
+
+ Defined FILE, since it seems to be missing from CE 2.11 H/PC Pro.
+
+ Added a definition for EXCEPTION_ACCESS_VIOLATION that was in
+ older SDK's.
+
+ Removed some UNDER_CE < 2.11 defines. < 2.11 CE will not be
+ supported anymore.
+
+ Removed definition of is_print, since it was moved into ACE_OS.
+
+ Added a definition for the operator placement new, which is
+ missing when MFC isn't used.
+
+ * ace/OS.h:
+
+ Enabled is_atty for Windows CE. Added ace_isprint and made
+ ace_isspace an ACE_TCHAR method.
+
+ * ace/OS.i:
+
+ chdir (): NOTSUP on CE 2.11
+
+ tempnam (): Also NOTSUP on CE 2.11
+
+ abort (): changed ::exit to exit to get it to compile.
+
+ ace_isspace (): Changed to use ACE_TCHAR, but also made it
+ NOTSUP on CE 2.11.
+
+ ace_isprint (): Added, but NOTSUP on CE 2.11.
+
+ sema_init (): Needed to cast an void *arg to ACE_mutexattr_t.
+
+ dlsym (): Changed the way ACE declares symbolname so it uses
+ the right one on Win32 (WinNT always uses char *, CE always uses
+ wchar_t *). The function still takes in ACE_TCHAR * though.
+ Thanks to "Jeff Greif" <jmg@trivida.com> for reporting this.
+
+ Removed a few global function definitions that were just for
+ CE (like fwrite, fread, getc, etc.). These are either supported
+ in newer CE's or is disabled in the ACE_OS methods.
+
+ is_atty (): Enabled on CE.
+
+ * ace/OS.cpp:
+
+ Enabled fopen on CE by using _wfopen (but not sure if this will
+ work correctly, since on other Win32 platforms we have a lot more
+ stuff.
+
+ Enabled several printf methods on CE.
+
+ open (): Removed the use of FILE_SHARE_DELETE on CE.
+
+ * ace/Service_Config.i:
+
+ initialize (): Added an ACE_TEXT_CHAR_TO_TCHAR and replaced
+ an ACE_WIDE_STRING with it also.
+
+ * ace/Svc_Conf.h:
+ * ace/Svc_Conf.y:
+ * ace/Svc_Conf_y.cpp:
+
+ ace_yyerror (): Takes an ACE_TCHAR * instead of char * now.
+
+ * ace/Svc_Conf.l:
+ * ace/Svc_Conf_l.cpp:
+
+ Changed to use ACE_OS::isatty () and ACE_OS::ace_isprint.
+
Thu Apr 27 11:49:52 2000 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
* ace/OS.i (memchr): Do not cast away constness when emulating
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index 254d75ade08..80ffb6428d2 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,131 @@
+Thu Apr 27 10:55:11 2000 Darrell Brunsch <brunsch@uci.edu>
+
+ These changes bring the Windows CE port up to date. It currently
+ supports Windows CE 2.11 on the H/PC Pro. I am looking into the 2.11
+ P/PC port, but there are other problems with it still. Hopefully
+ the WinCE 3.0 SDK will be more mature.
+
+ * ace/ace_dll_ce.dsp: (added)
+ * ace/ace_ce_dll.dsp: (removed)
+ * ace/ace_ce.dsw:
+
+ Created a new dsp file from scratch from CE to see how the
+ toolkit sets up the projects. Removed the old one.
+
+ * ace/ACE.cpp:
+
+ format_hexdump (): Changed usage of isprint to ACE_OS::ace_isprint.
+
+ get_ip_interfaces (): Changed use of deprecated ACE_TEXT_STRING to
+ ACE_TString. Also added an ACE_TEXT_CHAR_TO_TCHAR to a use
+ of the ACE_INET_Addr constructor.
+
+ * ace/ARGV.cpp:
+
+ create_buf_from_queue (): We were not adjusting the size of a
+ ACE_TCHAR buffer by sizeof ACE_TCHAR when we did a memcopy.
+ Thanks to Valery Arkhangorodsky <valerya@servicesoft.com>
+ for reporting this.
+
+ * ace/Memory_Pool.cpp:
+
+ seh_selector (): Changed use of LPEXCEPTION_POINTERS to
+ EXCEPTION_POINTERS * since it seems like that definition is
+ missing in some WinCE configs.
+
+ * ace/ace_wchar.h:
+
+ Added deprecated definition of ACE_TEXT_STRING.
+
+ convert (): Changed the conversions from CharToOem to
+ MultiByteToWideChar, since it is more widely supported in Win32.
+ Also removed the loading of user32.lib since it was only needed
+ for CharToOem.
+
+ * ace/config-win32-common.h:
+
+ Changed the _MT check so it doesn't do anything on CE. Some
+ CE targets do not have the Multithreaded DLL generation option.
+
+ * ace/config-WinCE.h:
+
+ Changed ACE_DEFAULT_LD_SEARCH_PATH to use ACE_TEXT.
+
+ Added a define for ACE_HAS_WCHAR and a check to always define
+ ACE_USES_WCHAR.
+
+ Commented out the ACE_HAS_MFC check.
+
+ Defined FILE, since it seems to be missing from CE 2.11 H/PC Pro.
+
+ Added a definition for EXCEPTION_ACCESS_VIOLATION that was in
+ older SDK's.
+
+ Removed some UNDER_CE < 2.11 defines. < 2.11 CE will not be
+ supported anymore.
+
+ Removed definition of is_print, since it was moved into ACE_OS.
+
+ Added a definition for the operator placement new, which is
+ missing when MFC isn't used.
+
+ * ace/OS.h:
+
+ Enabled is_atty for Windows CE. Added ace_isprint and made
+ ace_isspace an ACE_TCHAR method.
+
+ * ace/OS.i:
+
+ chdir (): NOTSUP on CE 2.11
+
+ tempnam (): Also NOTSUP on CE 2.11
+
+ abort (): changed ::exit to exit to get it to compile.
+
+ ace_isspace (): Changed to use ACE_TCHAR, but also made it
+ NOTSUP on CE 2.11.
+
+ ace_isprint (): Added, but NOTSUP on CE 2.11.
+
+ sema_init (): Needed to cast an void *arg to ACE_mutexattr_t.
+
+ dlsym (): Changed the way ACE declares symbolname so it uses
+ the right one on Win32 (WinNT always uses char *, CE always uses
+ wchar_t *). The function still takes in ACE_TCHAR * though.
+ Thanks to "Jeff Greif" <jmg@trivida.com> for reporting this.
+
+ Removed a few global function definitions that were just for
+ CE (like fwrite, fread, getc, etc.). These are either supported
+ in newer CE's or is disabled in the ACE_OS methods.
+
+ is_atty (): Enabled on CE.
+
+ * ace/OS.cpp:
+
+ Enabled fopen on CE by using _wfopen (but not sure if this will
+ work correctly, since on other Win32 platforms we have a lot more
+ stuff.
+
+ Enabled several printf methods on CE.
+
+ open (): Removed the use of FILE_SHARE_DELETE on CE.
+
+ * ace/Service_Config.i:
+
+ initialize (): Added an ACE_TEXT_CHAR_TO_TCHAR and replaced
+ an ACE_WIDE_STRING with it also.
+
+ * ace/Svc_Conf.h:
+ * ace/Svc_Conf.y:
+ * ace/Svc_Conf_y.cpp:
+
+ ace_yyerror (): Takes an ACE_TCHAR * instead of char * now.
+
+ * ace/Svc_Conf.l:
+ * ace/Svc_Conf_l.cpp:
+
+ Changed to use ACE_OS::isatty () and ACE_OS::ace_isprint.
+
Thu Apr 27 11:49:52 2000 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
* ace/OS.i (memchr): Do not cast away constness when emulating
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 254d75ade08..80ffb6428d2 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,131 @@
+Thu Apr 27 10:55:11 2000 Darrell Brunsch <brunsch@uci.edu>
+
+ These changes bring the Windows CE port up to date. It currently
+ supports Windows CE 2.11 on the H/PC Pro. I am looking into the 2.11
+ P/PC port, but there are other problems with it still. Hopefully
+ the WinCE 3.0 SDK will be more mature.
+
+ * ace/ace_dll_ce.dsp: (added)
+ * ace/ace_ce_dll.dsp: (removed)
+ * ace/ace_ce.dsw:
+
+ Created a new dsp file from scratch from CE to see how the
+ toolkit sets up the projects. Removed the old one.
+
+ * ace/ACE.cpp:
+
+ format_hexdump (): Changed usage of isprint to ACE_OS::ace_isprint.
+
+ get_ip_interfaces (): Changed use of deprecated ACE_TEXT_STRING to
+ ACE_TString. Also added an ACE_TEXT_CHAR_TO_TCHAR to a use
+ of the ACE_INET_Addr constructor.
+
+ * ace/ARGV.cpp:
+
+ create_buf_from_queue (): We were not adjusting the size of a
+ ACE_TCHAR buffer by sizeof ACE_TCHAR when we did a memcopy.
+ Thanks to Valery Arkhangorodsky <valerya@servicesoft.com>
+ for reporting this.
+
+ * ace/Memory_Pool.cpp:
+
+ seh_selector (): Changed use of LPEXCEPTION_POINTERS to
+ EXCEPTION_POINTERS * since it seems like that definition is
+ missing in some WinCE configs.
+
+ * ace/ace_wchar.h:
+
+ Added deprecated definition of ACE_TEXT_STRING.
+
+ convert (): Changed the conversions from CharToOem to
+ MultiByteToWideChar, since it is more widely supported in Win32.
+ Also removed the loading of user32.lib since it was only needed
+ for CharToOem.
+
+ * ace/config-win32-common.h:
+
+ Changed the _MT check so it doesn't do anything on CE. Some
+ CE targets do not have the Multithreaded DLL generation option.
+
+ * ace/config-WinCE.h:
+
+ Changed ACE_DEFAULT_LD_SEARCH_PATH to use ACE_TEXT.
+
+ Added a define for ACE_HAS_WCHAR and a check to always define
+ ACE_USES_WCHAR.
+
+ Commented out the ACE_HAS_MFC check.
+
+ Defined FILE, since it seems to be missing from CE 2.11 H/PC Pro.
+
+ Added a definition for EXCEPTION_ACCESS_VIOLATION that was in
+ older SDK's.
+
+ Removed some UNDER_CE < 2.11 defines. < 2.11 CE will not be
+ supported anymore.
+
+ Removed definition of is_print, since it was moved into ACE_OS.
+
+ Added a definition for the operator placement new, which is
+ missing when MFC isn't used.
+
+ * ace/OS.h:
+
+ Enabled is_atty for Windows CE. Added ace_isprint and made
+ ace_isspace an ACE_TCHAR method.
+
+ * ace/OS.i:
+
+ chdir (): NOTSUP on CE 2.11
+
+ tempnam (): Also NOTSUP on CE 2.11
+
+ abort (): changed ::exit to exit to get it to compile.
+
+ ace_isspace (): Changed to use ACE_TCHAR, but also made it
+ NOTSUP on CE 2.11.
+
+ ace_isprint (): Added, but NOTSUP on CE 2.11.
+
+ sema_init (): Needed to cast an void *arg to ACE_mutexattr_t.
+
+ dlsym (): Changed the way ACE declares symbolname so it uses
+ the right one on Win32 (WinNT always uses char *, CE always uses
+ wchar_t *). The function still takes in ACE_TCHAR * though.
+ Thanks to "Jeff Greif" <jmg@trivida.com> for reporting this.
+
+ Removed a few global function definitions that were just for
+ CE (like fwrite, fread, getc, etc.). These are either supported
+ in newer CE's or is disabled in the ACE_OS methods.
+
+ is_atty (): Enabled on CE.
+
+ * ace/OS.cpp:
+
+ Enabled fopen on CE by using _wfopen (but not sure if this will
+ work correctly, since on other Win32 platforms we have a lot more
+ stuff.
+
+ Enabled several printf methods on CE.
+
+ open (): Removed the use of FILE_SHARE_DELETE on CE.
+
+ * ace/Service_Config.i:
+
+ initialize (): Added an ACE_TEXT_CHAR_TO_TCHAR and replaced
+ an ACE_WIDE_STRING with it also.
+
+ * ace/Svc_Conf.h:
+ * ace/Svc_Conf.y:
+ * ace/Svc_Conf_y.cpp:
+
+ ace_yyerror (): Takes an ACE_TCHAR * instead of char * now.
+
+ * ace/Svc_Conf.l:
+ * ace/Svc_Conf_l.cpp:
+
+ Changed to use ACE_OS::isatty () and ACE_OS::ace_isprint.
+
Thu Apr 27 11:49:52 2000 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
* ace/OS.i (memchr): Do not cast away constness when emulating
diff --git a/ace/ACE.cpp b/ace/ACE.cpp
index b1d543b7f8e..7bf68fc4332 100644
--- a/ace/ACE.cpp
+++ b/ace/ACE.cpp
@@ -2817,7 +2817,7 @@ ACE::format_hexdump (const char *buffer,
ACE_TEXT (" "));
obuf++;
}
- textver[j] = isprint (c) ? c : '.';
+ textver[j] = ACE_OS::ace_isprint (c) ? c : '.';
}
textver[j] = 0;
@@ -2845,7 +2845,7 @@ ACE::format_hexdump (const char *buffer,
ACE_TEXT (" "));
obuf++;
}
- textver[i] = isprint (c) ? c : '.';
+ textver[i] = ACE_OS::ace_isprint (c) ? c : '.';
}
for (i = size % 16; i < 16; i++)
@@ -4212,8 +4212,8 @@ ACE::get_ip_interfaces (size_t &count,
for (int i = 0; i < n_interfaces; i++)
{
// a. construct name to access IPAddress for this interface
- ACE_TEXT_STRING ifdevkey (SVCS_KEY1);
- ACE_TEXT_STRING the_dev = dev_names.next ();
+ ACE_TString ifdevkey (SVCS_KEY1);
+ ACE_TString the_dev = dev_names.next ();
// chop off the "\Device" and keep last name.
if (the_dev.length() < 8)
@@ -4240,8 +4240,7 @@ ACE::get_ip_interfaces (size_t &count,
// c. store in hostinfo object array and up the counter
addrs[count++] =
- ACE_INET_Addr ((u_short) 0,
- ACE_TEXT_CHAR_TO_TCHAR (buffer));
+ ACE_INET_Addr ((u_short) 0, buffer);
}
}
return 0;
diff --git a/ace/ARGV.cpp b/ace/ARGV.cpp
index 4927f760712..bb3f4670ef2 100644
--- a/ace/ARGV.cpp
+++ b/ace/ARGV.cpp
@@ -308,7 +308,7 @@ ACE_ARGV::create_buf_from_queue (void)
// Copy the argument into buf_
ACE_OS::memcpy ((void *) ptr,
(const void *) (*arg),
- len);
+ len * sizeof (ACE_TCHAR));
// Move the pointer down.
ptr += len;
diff --git a/ace/Memory_Pool.cpp b/ace/Memory_Pool.cpp
index 5b1cf7d68bc..3667ab0749b 100644
--- a/ace/Memory_Pool.cpp
+++ b/ace/Memory_Pool.cpp
@@ -400,12 +400,12 @@ ACE_MMAP_Memory_Pool::init_acquire (size_t nbytes,
int
ACE_MMAP_Memory_Pool::seh_selector (void *ep)
{
- int ecode = ((LPEXCEPTION_POINTERS) ep)->ExceptionRecord->ExceptionCode;
+ int ecode = ((EXCEPTION_POINTERS *) ep)->ExceptionRecord->ExceptionCode;
if (ecode == EXCEPTION_ACCESS_VIOLATION)
{
void * fault_addr = (void *)
- ((LPEXCEPTION_POINTERS) ep)->ExceptionRecord->ExceptionInformation[1];
+ ((EXCEPTION_POINTERS *) ep)->ExceptionRecord->ExceptionInformation[1];
if (this->remap (fault_addr) == 0)
return 1;
diff --git a/ace/OS.cpp b/ace/OS.cpp
index bc1e53c3293..f3691c4aec1 100644
--- a/ace/OS.cpp
+++ b/ace/OS.cpp
@@ -898,7 +898,15 @@ ACE_TRACE ("ACE_OS::mutex_lock_cleanup");
#endif /* ACE_HAS_THREADS */
}
-#if defined (ACE_WIN32) && !defined (ACE_HAS_WINCE)
+#if defined (ACE_HAS_WINCE)
+FILE *
+ACE_OS::fopen (const ACE_TCHAR *filename,
+ const ACE_TCHAR *mode)
+{
+ return ::_wfopen (filename, mode);
+}
+
+#elif defined (ACE_WIN32)
FILE *
ACE_OS::fopen (const ACE_TCHAR *filename,
const ACE_TCHAR *mode)
@@ -931,7 +939,7 @@ ACE_OS::fopen (const ACE_TCHAR *filename,
}
return NULL;
}
-#endif /* ACE_WIN32 && !ACE_HAS_WINCE */
+#endif /* ACE_WIN32 */
// The following *printf functions aren't inline because
// they use varargs.
@@ -970,8 +978,6 @@ ACE_OS::fprintf (FILE *fp, const wchar_t *format, ...)
}
#endif /* ACE_HAS_WCHAR */
-#if !defined (ACE_HAS_WINCE)
-
int
ACE_OS::printf (const char *format, ...)
{
@@ -1041,15 +1047,6 @@ ACE_OS::gets (char *str, int n)
return (c == EOF) ? 0 : str;
}
-#else /* ACE_HAS_WINCE */
-int
-fprintf (FILE *fp, char *format, const char *msg)
-{
- ACE_DEBUG ((LM_DEBUG, format, msg));
- return 0;
-}
-#endif /* ! ACE_HAS_WINCE */
-
int
ACE_OS::execl (const char * /* path */, const char * /* arg0 */, ...)
{
@@ -5060,9 +5057,11 @@ ACE_OS::open (const ACE_TCHAR *filename,
}
DWORD shared_mode = FILE_SHARE_READ | FILE_SHARE_WRITE;
+#if !defined (ACE_HAS_WINCE) // CE doesn't have FILE_SHARE_DELETE
if (ACE_OS::get_win32_versioninfo().dwPlatformId ==
VER_PLATFORM_WIN32_NT)
shared_mode |= FILE_SHARE_DELETE;
+#endif /* ACE_HAS_WINCE */
ACE_HANDLE h = ACE_TEXT_CreateFile (filename, access,
shared_mode,
diff --git a/ace/OS.h b/ace/OS.h
index 00c78f230f5..f546490d956 100644
--- a/ace/OS.h
+++ b/ace/OS.h
@@ -5806,9 +5806,9 @@ public:
// or SIO_GET_QOS.
static int isastream (ACE_HANDLE handle);
static int isatty (int handle);
-#if defined (ACE_WIN32) && !defined (ACE_HAS_WINCE)
+#if defined (ACE_WIN32)
static int isatty (ACE_HANDLE handle);
-#endif /* ACE_WIN32 && !ACE_HAS_WINCE */
+#endif /* ACE_WIN32 */
static off_t lseek (ACE_HANDLE handle,
off_t offset,
int whence);
@@ -6326,10 +6326,8 @@ public:
static double strtod (const wchar_t *s, wchar_t **endptr);
#endif /* ACE_HAS_WCHAR */
- static int ace_isspace (const char s);
-#if defined (ACE_HAS_WCHAR)
- static int ace_isspace (wchar_t c);
-#endif /* ACE_HAS_WCHAR */
+ static int ace_isspace (const ACE_TCHAR s);
+ static int ace_isprint (const ACE_TCHAR s);
// @@ UNICODE: (brunsch) Can this be handled better?
// The following WChar typedef and functions are used by TAO. TAO
diff --git a/ace/OS.i b/ace/OS.i
index 7b6239eed1a..1d8b1f36991 100644
--- a/ace/OS.i
+++ b/ace/OS.i
@@ -539,20 +539,24 @@ ACE_OS::chdir (const ACE_TCHAR *path)
# if defined (VXWORKS)
ACE_OSCALL_RETURN (::chdir (ACE_const_cast (char *, path)), int, -1);
-#elif defined (ACE_PSOS_LACKS_PHILE)
+# elif defined (ACE_PSOS_LACKS_PHILE)
ACE_UNUSED_ARG (path);
ACE_NOTSUP_RETURN (-1);
-#elif defined (ACE_PSOS)
+# elif defined (ACE_PSOS)
ACE_OSCALL_RETURN (ACE_ADAPT_RETVAL (::change_dir ((char *) path), ace_result_),
int, -1);
-#elif defined (__IBMCPP__) && (__IBMCPP__ >= 400)
+# elif defined (__IBMCPP__) && (__IBMCPP__ >= 400)
ACE_OSCALL_RETURN (::_chdir (path), int, -1);
+#elif defined (ACE_HAS_WINCE)
+ ACE_UNUSED_ARG (path);
+ ACE_NOTSUP_RETURN (-1);
+
#elif defined (ACE_WIN32) && defined (ACE_USES_WCHAR)
ACE_OSCALL_RETURN (::_wchdir (path), int, -1);
-
+
#else
ACE_OSCALL_RETURN (::chdir (path), int, -1);
@@ -1151,6 +1155,10 @@ ACE_OS::tempnam (const ACE_TCHAR *dir, const ACE_TCHAR *pfx)
ACE_OSCALL_RETURN (::tmpnam ((char *) dir), char *, 0);
#elif defined (__BORLANDC__) || (__IBMCPP__)
ACE_OSCALL_RETURN (::_tempnam ((char *) dir, (char *) pfx), char *, 0);
+#elif defined (ACE_HAS_WINCE)
+ ACE_UNUSED_ARG (dir);
+ ACE_UNUSED_ARG (pfx);
+ ACE_NOTSUP_RETURN (0);
#elif defined (ACE_WIN32) && defined (ACE_USES_WCHAR)
ACE_OSCALL_RETURN (::_wtempnam (dir, pfx), wchar_t *, 0);
#else /* VXWORKS */
@@ -1287,7 +1295,7 @@ ACE_OS::abort (void)
::abort ();
#else
// @@ CE doesn't support abort?
- ::exit (1);
+ exit (1);
#endif /* ACE_HAS_WINCE */
}
@@ -2196,23 +2204,30 @@ ACE_OS::strtod (const wchar_t *s, wchar_t **endptr)
#endif /* ACE_HAS_WCHAR */
ACE_INLINE int
-ACE_OS::ace_isspace (const char s)
+ACE_OS::ace_isspace (const ACE_TCHAR s)
{
-#if !defined (ACE_HAS_WINCE)
- return isspace (s);
-#else
+#if defined (ACE_HAS_WINCE)
ACE_UNUSED_ARG (s);
ACE_NOTSUP_RETURN (0);
+#elif defined (ACE_USES_WCHAR)
+ return iswspace (s);
+#else
+ return isspace (s);
#endif /* ACE_HAS_WINCE */
}
-#if defined (ACE_HAS_WCHAR)
ACE_INLINE int
-ACE_OS::ace_isspace (wchar_t c)
+ACE_OS::ace_isprint (const ACE_TCHAR s)
{
- return iswspace (c);
+#if defined (ACE_HAS_WINCE)
+ ACE_UNUSED_ARG (s);
+ ACE_NOTSUP_RETURN (0);
+#elif defined (ACE_USES_WCHAR)
+ return iswprint (s);
+#else
+ return isprint (s);
+#endif /* ACE_HAS_WINCE */
}
-#endif /* ACE_HAS_WCHAR */
ACE_INLINE long
ACE_OS::sysconf (int name)
@@ -3836,7 +3851,7 @@ ACE_OS::sema_init (ACE_sema_t *s,
// any security attribute whatsoever. However, since this
// semaphore implementation only works within a process, there
// shouldn't any security issue at all.
- if (ACE_OS::thread_mutex_init (&s->lock_, type, name, arg) == 0
+ if (ACE_OS::thread_mutex_init (&s->lock_, type, name, (ACE_mutexattr_t *)arg) == 0
&& ACE_OS::event_init (&s->count_nonzero_, 1,
count > 0, type, name, arg, sa) == 0
&& ACE_OS::thread_mutex_lock (&s->lock_) == 0)
@@ -9302,30 +9317,28 @@ ACE_OS::dlsym (ACE_SHLIB_HANDLE handle,
ACE_TRACE ("ACE_OS::dlsym");
// Get the correct OS type.
-# if defined (ACE_HAS_CHARPTR_DL)
-typedef char * ACE_DL_SYM_TYPE;
-# else
-typedef const char * ACE_DL_SYM_TYPE;
-# endif /* ACE_HAS_CHARPTR_DL */
-
- ACE_DL_SYM_TYPE symbolname = ACE_const_cast (ACE_DL_SYM_TYPE, sname);
+#if defined (ACE_HAS_WINCE)
+ const wchar_t *symbolname = sname;
+#elif defined (ACE_HAS_WIN32) && defined (ACE_USES_WCHAR)
+ char *symbolname = ACE_TEXT_ALWAYS_CHAR (sname);
+#elif defined (ACE_HAS_CHARPTR_DL)
+ char *symbolname = ACE_const_cast (char *, sname);
+#else
+ const char *symbolname = sname;
+#endif /* ACE_HAS_CHARPTR_DL */
# if defined (ACE_HAS_SVR4_DYNAMIC_LINKING)
+
# if defined (ACE_LACKS_POSIX_PROTOTYPES)
ACE_OSCALL_RETURN (::dlsym (handle, symbolname), void *, 0);
# elif defined (ACE_USES_ASM_SYMBOL_IN_DLSYM)
int l = ACE_OS::strlen (symbolname) + 2;
char *asm_symbolname = 0;
- ACE_NEW_RETURN (asm_symbolname,
- char[l],
- 0);
- ACE_OS::strcpy (asm_symbolname,
- "_") ;
- ACE_OS::strcpy (asm_symbolname + 1,
- symbolname) ;
+ ACE_NEW_RETURN (asm_symbolname, char[l], 0);
+ ACE_OS::strcpy (asm_symbolname, "_") ;
+ ACE_OS::strcpy (asm_symbolname + 1, symbolname) ;
void *ace_result;
- ACE_OSCALL (::dlsym (handle, asm_symbolname), void *, 0,
- ace_result);
+ ACE_OSCALL (::dlsym (handle, asm_symbolname), void *, 0, ace_result);
delete [] asm_symbolname;
return ace_result;
# elif defined (_M_UNIX)
@@ -9333,14 +9346,11 @@ typedef const char * ACE_DL_SYM_TYPE;
# else
ACE_OSCALL_RETURN (::dlsym (handle, symbolname), void *, 0);
# endif /* ACE_LACKS_POSIX_PROTOTYPES */
+
# elif defined (ACE_WIN32)
-# if !defined (ACE_HAS_WINCE)
- ACE_WIN32CALL_RETURN (::GetProcAddress (handle, symbolname),
- void *, 0);
-# else /* ACE_HAS_WINCE */
- ACE_WIN32CALL_RETURN (::GetProcAddress (handle, symbolname),
- void *, 0);
-# endif /* ACE_HAS_WINCE */
+
+ ACE_WIN32CALL_RETURN (::GetProcAddress (handle, symbolname), void *, 0);
+
# elif defined (__hpux)
void *value;
@@ -9350,9 +9360,11 @@ typedef const char * ACE_DL_SYM_TYPE;
return status == 0 ? value : NULL;
# else
+
ACE_UNUSED_ARG (handle);
ACE_UNUSED_ARG (symbolname);
ACE_NOTSUP_RETURN (0);
+
# endif /* ACE_HAS_SVR4_DYNAMIC_LINKING */
}
@@ -12019,94 +12031,6 @@ ACE_Thread_Adapter::entry_point (void)
return this->entry_point_;
}
-#if defined (ACE_HAS_WINCE)
-
-// **** Warning ****
-// You should not use the following functions under CE at all.
-// These functions are used to make Svc_Conf_l.cpp compile
-// under WinCE. Most of them doesn't do what they are expected
-// to do under regular environments.
-// **** Warning ****
-
-ACE_INLINE size_t
-fwrite (void *buf, size_t sz, size_t count, FILE *fp)
-{
- return ACE_OS::fwrite (buf, sz, count, fp);
-}
-
-ACE_INLINE size_t
-fread (void *buf, size_t sz, size_t count, FILE *fp)
-{
- return ACE_OS::fread (buf, sz, count, fp);
-}
-
-ACE_INLINE int
-getc (FILE *fp)
-{
- char retv;
- if (ACE_OS::fread (&retv, 1, 1, fp) != 1)
- return EOF;
- else
- return retv;
-}
-
-ACE_INLINE int
-ferror (FILE *fp)
-{
- // @@ Hey! What should I implement here?
- return 0;
-}
-
-// **** Warning ****
-// You should not use these functions under CE at all.
-// These functions are used to make Svc_Conf_l.cpp compile
-// under WinCE. Most of them doesn't do what they are expected
-// to do under regular environments.
-// **** Warning ****
-
-ACE_INLINE int
-isatty (int h)
-{
- return ACE_OS::isatty (h);
-}
-
-int ACE_HANDLE
-fileno (FILE *fp)
-{
- return fp;
-}
-
-ACE_INLINE int
-fflush (FILE *fp)
-{
- return ACE_OS::fflush (fp);
-}
-
-// **** Warning ****
-// You should not use these functions under CE at all.
-// These functions are used to make Svc_Conf_l.cpp compile
-// under WinCE. Most of them doesn't do what they are expected
-// to do under regular environments.
-// **** Warning ****
-
-ACE_INLINE int
-printf (const char *format, ...)
-{
- ACE_UNUSED_ARG (format);
- return 0;
-}
-
-ACE_INLINE int
-putchar (int c)
-{
- ACE_UNUSED_ARG (c);
- return c;
-}
-
-// **** End CE Warning ****
-
-#endif /* ACE_HAS_WINCE */
-
#if defined (ACE_PSOS)
ACE_INLINE int
isatty (int h)
@@ -12413,7 +12337,7 @@ ACE_OS::setuid (uid_t uid)
# elif defined (ACE_WIN32) || defined(CHORUS)
ACE_UNUSED_ARG (uid);
ACE_NOTSUP_RETURN (-1);
-#else
+# else
ACE_OSCALL_RETURN (::setuid (uid), int, -1);
# endif /* VXWORKS */
}
@@ -12427,7 +12351,7 @@ ACE_OS::getuid (void)
return 0;
# elif defined (ACE_WIN32) || defined(CHORUS)
ACE_NOTSUP_RETURN (ACE_static_cast (uid_t, -1));
-#else
+# else
ACE_OSCALL_RETURN (::getuid (), uid_t, (uid_t) -1);
# endif /* VXWORKS */
}
@@ -12443,7 +12367,7 @@ ACE_OS::setgid (gid_t gid)
# elif defined (ACE_WIN32) || defined(CHORUS)
ACE_UNUSED_ARG (gid);
ACE_NOTSUP_RETURN (-1);
-#else
+# else
ACE_OSCALL_RETURN (::setgid (gid), int, -1);
# endif /* VXWORKS */
}
@@ -12457,7 +12381,7 @@ ACE_OS::getgid (void)
return 0;
# elif defined (ACE_WIN32) || defined(CHORUS)
ACE_NOTSUP_RETURN (ACE_static_cast (gid_t, -1));
-#else
+# else
ACE_OSCALL_RETURN (::getgid (), gid_t, (gid_t) -1);
# endif /* VXWORKS */
}
@@ -12470,6 +12394,7 @@ ACE_OS::set_exit_hook (ACE_EXIT_HOOK exit_hook)
return old_hook;
}
+#if defined (ACE_WIN32)
ACE_INLINE int
ACE_OS::isatty (int handle)
{
@@ -12485,15 +12410,17 @@ ACE_OS::isatty (int handle)
# endif /* defined (ACE_LACKS_ISATTY) */
}
-#if defined (ACE_WIN32)
-# if !defined (ACE_HAS_WINCE)
ACE_INLINE int
ACE_OS::isatty (ACE_HANDLE handle)
{
+#if defined (ACE_LACKS_ISATTY)
+ ACE_UNUSED_ARG (handle);
+ return 0;
+#else
int fd = ::_open_osfhandle ((long) handle, 0);
return ::_isatty (fd);
+#endif /* ACE_LACKS_ISATTY */
}
-# endif /* !ACE_HAS_WINCE */
ACE_INLINE void
ACE_OS::fopen_mode_to_open_mode_converter (ACE_TCHAR x, int &hmode)
diff --git a/ace/Service_Config.i b/ace/Service_Config.i
index aab1230c0d7..5ed6f3dd09f 100644
--- a/ace/Service_Config.i
+++ b/ace/Service_Config.i
@@ -69,7 +69,8 @@ ACE_Service_Config::initialize (const ACE_Service_Type *sp, char parameters[])
ACE_INLINE int
ACE_Service_Config::initialize (const char svc_name[], char parameters[])
{
- return ACE_Service_Config::initialize (svc_name, ACE_WIDE_STRING (parameters));
+ return ACE_Service_Config::initialize (ACE_TEXT_CHAR_TO_TCHAR (svc_name),
+ ACE_TEXT_CHAR_TO_TCHAR (parameters));
}
ACE_INLINE int
diff --git a/ace/Svc_Conf.h b/ace/Svc_Conf.h
index bde55d39e1b..d6b58298231 100644
--- a/ace/Svc_Conf.h
+++ b/ace/Svc_Conf.h
@@ -71,7 +71,7 @@ extern FILE *ace_yyin;
&& ferror( ace_yyin ) ) \
ACE_YY_FATAL_ERROR( ACE_TEXT ("input in flex scanner failed") );
-void ace_yyerror (const char *);
+void ace_yyerror (const ACE_TCHAR *);
// Error handling routine required by YACC or BISON
extern int ace_yylineno;
diff --git a/ace/Svc_Conf.l b/ace/Svc_Conf.l
index 17b4f1d03ea..135db466159 100644
--- a/ace/Svc_Conf.l
+++ b/ace/Svc_Conf.l
@@ -81,8 +81,10 @@ inactive { return token (ACE_INACTIVE); }
}
{white_space}+ ; /* EMPTY */
{newline} { yylineno++; }
-{other} { ACE_ERROR ((LM_ERROR, ACE_TEXT ("unknown character = (%d"), *yytext));
- if (isprint (*yytext))
+{other} { ACE_ERROR ((LM_ERROR,
+ ACE_TEXT ("unknown character = (%d"),
+ *yytext));
+ if (ACE_OS::ace_isprint (*yytext))
ACE_ERROR ((LM_ERROR, ACE_TEXT ("|%c"), *yytext));
ACE_ERROR ((LM_ERROR, ACE_TEXT (")\n")));
}
diff --git a/ace/Svc_Conf.y b/ace/Svc_Conf.y
index 9573de5f930..76c1689b2e6 100644
--- a/ace/Svc_Conf.y
+++ b/ace/Svc_Conf.y
@@ -315,7 +315,7 @@ pathname
// messages.
void
-yyerror (const char *s)
+yyerror (const ACE_TCHAR *s)
{
#if defined (ACE_NLOGGING)
ACE_UNUSED_ARG (s);
diff --git a/ace/Svc_Conf_l.cpp b/ace/Svc_Conf_l.cpp
index 70bec4f92e5..30dfda25396 100644
--- a/ace/Svc_Conf_l.cpp
+++ b/ace/Svc_Conf_l.cpp
@@ -912,7 +912,7 @@ case 24:
ACE_YY_RULE_SETUP
#line 84 "Svc_Conf.l"
{ ACE_ERROR ((LM_ERROR, ACE_TEXT ("unknown character = (%d"), *ace_yytext));
- if (isprint (*ace_yytext))
+ if (ACE_OS::ace_isprint (*ace_yytext))
ACE_ERROR ((LM_ERROR, ACE_TEXT ("|%c"), *ace_yytext));
ACE_ERROR ((LM_ERROR, ACE_TEXT (")\n")));
}
diff --git a/ace/Svc_Conf_y.cpp b/ace/Svc_Conf_y.cpp
index 0054186ab20..59b4426e0fa 100644
--- a/ace/Svc_Conf_y.cpp
+++ b/ace/Svc_Conf_y.cpp
@@ -254,7 +254,7 @@ ACE_YYSTYPE ace_yyvs[ACE_YYSTACKSIZE];
// messages.
void
-ace_yyerror (const char *s)
+ace_yyerror (const ACE_TCHAR *s)
{
#if defined (ACE_NLOGGING)
ACE_UNUSED_ARG (s);
@@ -621,7 +621,7 @@ ace_yyloop:
goto ace_yynewerror;
#endif
- ace_yyerror("syntax error");
+ ace_yyerror(ACE_TEXT ("syntax error"));
#ifdef lint
goto ace_yyerrlab;
#endif
@@ -1033,7 +1033,7 @@ to state %d\n", *ace_yyssp, ace_yystate);
*++ace_yyvsp = ace_yyval;
goto ace_yyloop;
ace_yyoverflow:
- ace_yyerror("yacc stack overflow");
+ ace_yyerror(ACE_TEXT ("yacc stack overflow"));
ace_yyabort:
return (1);
ace_yyaccept:
diff --git a/ace/ace_ce.dsw b/ace/ace_ce.dsw
index cf0eab7be34..51d98e25343 100644
--- a/ace/ace_ce.dsw
+++ b/ace/ace_ce.dsw
@@ -3,19 +3,7 @@ Microsoft Developer Studio Workspace File, Format Version 6.00
###############################################################################
-Project: "ace_ce_dll"=.\ace_ce_dll.dsp - Package Owner=<4>
-
-Package=<5>
-{{{
-}}}
-
-Package=<4>
-{{{
-}}}
-
-###############################################################################
-
-Project: "ace_wce_dll"=.\ace_wce_dll.dsp - Package Owner=<4>
+Project: "ace_dll_ce"=.\ace_dll_ce.dsp - Package Owner=<4>
Package=<5>
{{{
diff --git a/ace/ace_ce_dll.dsp b/ace/ace_dll_ce.dsp
index fceb65c5054..1dac45c908d 100644
--- a/ace/ace_ce_dll.dsp
+++ b/ace/ace_dll_ce.dsp
@@ -1,30 +1,30 @@
-# Microsoft Developer Studio Project File - Name="ace_ce_dll" - Package Owner=<4>
+# Microsoft Developer Studio Project File - Name="ace_dll_ce" - Package Owner=<4>
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
-# TARGTYPE "Win32 (WCE SH3) Dynamic-Link Library" 0x8102
# TARGTYPE "Win32 (WCE x86em) Dynamic-Link Library" 0x7f02
+# TARGTYPE "Win32 (WCE SH3) Dynamic-Link Library" 0x8102
# TARGTYPE "Win32 (WCE MIPS) Dynamic-Link Library" 0x8202
-CFG=ace_ce_dll - Win32 (WCE x86em) Debug
+CFG=ace_dll_ce - Win32 (WCE SH3) Debug
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
!MESSAGE use the Export Makefile command and run
!MESSAGE
-!MESSAGE NMAKE /f "ace_ce_dll.mak".
+!MESSAGE NMAKE /f "ace_dll_ce.mak".
!MESSAGE
!MESSAGE You can specify a configuration when running NMAKE
!MESSAGE by defining the macro CFG on the command line. For example:
!MESSAGE
-!MESSAGE NMAKE /f "ace_ce_dll.mak" CFG="ace_ce_dll - Win32 (WCE x86em) Debug"
+!MESSAGE NMAKE /f "ace_dll_ce.mak" CFG="ace_dll_ce - Win32 (WCE SH3) 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 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 "ace_dll_ce - Win32 (WCE SH3) Release" (based on "Win32 (WCE SH3) Dynamic-Link Library")
+!MESSAGE "ace_dll_ce - Win32 (WCE SH3) Debug" (based on "Win32 (WCE SH3) Dynamic-Link Library")
+!MESSAGE "ace_dll_ce - Win32 (WCE MIPS) Release" (based on "Win32 (WCE MIPS) Dynamic-Link Library")
+!MESSAGE "ace_dll_ce - Win32 (WCE MIPS) Debug" (based on "Win32 (WCE MIPS) Dynamic-Link Library")
+!MESSAGE "ace_dll_ce - Win32 (WCE x86em) Release" (based on "Win32 (WCE x86em) Dynamic-Link Library")
+!MESSAGE "ace_dll_ce - Win32 (WCE x86em) Debug" (based on "Win32 (WCE x86em) Dynamic-Link Library")
!MESSAGE
# Begin Project
@@ -33,61 +33,60 @@ CFG=ace_ce_dll - Win32 (WCE x86em) Debug
# PROP Scc_LocalPath "H/PC Ver. 2.00"
# PROP WCE_FormatVersion "6.0"
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
-# PROP BASE Output_Dir "x86emRel"
-# PROP BASE Intermediate_Dir "x86emRel"
+# PROP BASE Output_Dir "WCESH3Rel"
+# PROP BASE Intermediate_Dir "WCESH3Rel"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
-# PROP Output_Dir "WCE/x86em"
-# PROP Intermediate_Dir "WCE/x86em/Release"
+# PROP Output_Dir "DLL\Release\SH3"
+# PROP Intermediate_Dir "DLL\Release\SH3"
# 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
+PFILE=pfile.exe
+CPP=shcl.exe
+# ADD BASE CPP /nologo /M$(CECrt) /W3 /O2 /D _WIN32_WCE=$(CEVersion) /D "$(CEConfigName)" /D "NDEBUG" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_MBCS" /D "_USRDLL" /D "ACE_DLL_CE_EXPORTS" /YX /c
+# ADD CPP /nologo /M$(CECrtMT) /W3 /O2 /I "../" /D _WIN32_WCE=$(CEVersion) /D "$(CEConfigName)" /D "NDEBUG" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "ACE_BUILD_DLL" /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 "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"
+# ADD BASE RSC /l 0x409 /r /d "SHx" /d "SH3" /d "_SH3_" /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "$(CEConfigName)" /d "UNICODE" /d "NDEBUG"
+# ADD RSC /l 0x409 /r /d "SHx" /d "SH3" /d "_SH3_" /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "$(CEConfigName)" /d "UNICODE" /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 /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 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 msvcrt.lib libcmt.lib winsockm.lib /nologo /subsystem:windows /dll /machine:I386 /nodefaultlib:"msvcrt.lib" /nodefaultlib:"$(CENoDefaultLib)" /out:"WCE\x86em\ace.dll" /windowsce:emulation
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /dll /machine:SH3 /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /STACK:65536,4096
+# SUBTRACT BASE LINK32 /pdb:none /nodefaultlib
+# ADD LINK32 commctrl.lib coredll.lib /nologo /dll /machine:SH3 /nodefaultlib:"$(CENoDefaultLib)" /out:"DLL\Release\SH3\ace.dll" /subsystem:$(CESubsystem) /STACK:65536,4096
+# SUBTRACT LINK32 /pdb:none /nodefaultlib
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
-# PROP BASE Output_Dir "x86emDbg"
-# PROP BASE Intermediate_Dir "x86emDbg"
+# PROP BASE Output_Dir "WCESH3Dbg"
+# PROP BASE Intermediate_Dir "WCESH3Dbg"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
-# PROP Output_Dir "WCE/x86em"
-# PROP Intermediate_Dir "WCE/x86em/Debug"
+# PROP Output_Dir "DLL\Debug\SH3"
+# PROP Intermediate_Dir "DLL\Debug\SH3"
# 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
+PFILE=pfile.exe
+CPP=shcl.exe
+# ADD BASE CPP /nologo /M$(CECrtDebug) /W3 /Zi /Od /D _WIN32_WCE=$(CEVersion) /D "$(CEConfigName)" /D "DEBUG" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_MBCS" /D "_USRDLL" /D "ACE_DLL_CE_EXPORTS" /YX /c
+# ADD CPP /nologo /M$(CECrtMTDebug) /W3 /Zi /Od /I "../" /D _WIN32_WCE=$(CEVersion) /D "$(CEConfigName)" /D "DEBUG" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "ACE_BUILD_DLL" /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_"
+# ADD BASE RSC /l 0x409 /r /d "SHx" /d "SH3" /d "_SH3_" /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "$(CEConfigName)" /d "UNICODE" /d "DEBUG"
+# ADD RSC /l 0x409 /r /d "SHx" /d "SH3" /d "_SH3_" /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "$(CEConfigName)" /d "UNICODE" /d "DEBUG"
MTL=midl.exe
# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
@@ -95,31 +94,32 @@ 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 msvcrtd.lib libcmtd.lib winsockm.lib /nologo /subsystem:windows /dll /debug /machine:I386 /nodefaultlib:"msvcrtd.lib" /nodefaultlib:"$(CENoDefaultLib)" /out:"WCE\x86em\aced.dll" /windowsce:emulation
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /dll /debug /machine:SH3 /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /STACK:65536,4096
+# SUBTRACT BASE LINK32 /pdb:none /nodefaultlib
+# ADD LINK32 commctrl.lib coredll.lib winsock.lib corelibc.lib /nologo /dll /debug /machine:SH3 /nodefaultlib:"$(CENoDefaultLib)" /out:"DLL\Debug\SH3\aced.dll" /subsystem:$(CESubsystem) /STACK:65536,4096
+# SUBTRACT LINK32 /pdb:none /nodefaultlib
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
-# PROP BASE Output_Dir "WMIPSRel"
-# PROP BASE Intermediate_Dir "WMIPSRel"
+# PROP BASE Output_Dir "ace_dll_ce___Win32__WCE_MIPS__Release"
+# PROP BASE Intermediate_Dir "ace_dll_ce___Win32__WCE_MIPS__Release"
+# PROP BASE Ignore_Export_Lib 0
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
-# PROP Output_Dir "WCE/MIPS"
-# PROP Intermediate_Dir "WCE/MIPS/Release"
+# PROP Output_Dir "DLL\Release\MIPS"
+# PROP Intermediate_Dir "DLL\Release\MIPS"
# 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 /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
+# ADD BASE CPP /nologo /M$(CECrt) /W3 /O2 /D _WIN32_WCE=$(CEVersion) /D "$(CEConfigName)" /D "NDEBUG" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "ACE_BUILD_DLL" /YX /QMRWCE /c
+# ADD CPP /nologo /M$(CECrt) /W3 /O2 /I "../" /D _WIN32_WCE=$(CEVersion) /D "$(CEConfigName)" /D "NDEBUG" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "ACE_BUILD_DLL" /QMRWCE /c
+# SUBTRACT CPP /YX
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
+# ADD BASE RSC /l 0x409 /r /d "MIPS" /d "_MIPS_" /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "$(CEConfigName)" /d "UNICODE" /d "NDEBUG"
+# ADD RSC /l 0x409 /r /d "MIPS" /d "_MIPS_" /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "$(CEConfigName)" /d "UNICODE" /d "NDEBUG"
MTL=midl.exe
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
@@ -127,33 +127,32 @@ 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
+# ADD BASE LINK32 $(CEx86Corelibc) commctrl.lib coredll.lib /nologo /dll /machine:MIPS /nodefaultlib:"$(CENoDefaultLib)" /windowsce:emulation
# SUBTRACT BASE LINK32 /pdb:none /nodefaultlib
-# ADD LINK32 msvcrt.lib libcmt.lib winsock.lib /nologo /dll /machine:MIPS /nodefaultlib:"wsock32.lib" /nodefaultlib:"$(CENoDefaultLib)" /out:"WCE\MIPS\ace.dll" /subsystem:windowsce,2.0
+# ADD LINK32 commctrl.lib coredll.lib /nologo /dll /machine:MIPS /nodefaultlib:"$(CENoDefaultLib)" /out:"DLL\Release\MIPS\ace.dll" /subsystem:$(CESubsystem)
# SUBTRACT LINK32 /pdb:none
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
-# PROP BASE Output_Dir "WMIPSDbg"
-# PROP BASE Intermediate_Dir "WMIPSDbg"
+# PROP BASE Output_Dir "ace_dll_ce___Win32__WCE_MIPS__Debug"
+# PROP BASE Intermediate_Dir "ace_dll_ce___Win32__WCE_MIPS__Debug"
+# PROP BASE Ignore_Export_Lib 0
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
-# PROP Output_Dir "WCE/MIPS"
-# PROP Intermediate_Dir "WCE/MIPS/Debug"
+# PROP Output_Dir "DLL\Debug\MIPS"
+# PROP Intermediate_Dir "DLL\Debug\MIPS"
# 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 /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
+# ADD BASE CPP /nologo /M$(CECrtDebug) /W3 /Zi /Od /D _WIN32_WCE=$(CEVersion) /D "$(CEConfigName)" /D "DEBUG" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "ACE_BUILD_DLL" /YX /QMRWCE /c
+# ADD CPP /nologo /M$(CECrtMTDebug) /W3 /Zi /Od /I "../" /D _WIN32_WCE=$(CEVersion) /D "$(CEConfigName)" /D "DEBUG" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "ACE_BUILD_DLL" /QMRWCE /c
+# SUBTRACT CPP /YX
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
+# ADD BASE RSC /l 0x409 /r /d "MIPS" /d "_MIPS_" /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "$(CEConfigName)" /d "UNICODE" /d "DEBUG"
+# ADD RSC /l 0x409 /r /d "MIPS" /d "_MIPS_" /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "$(CEConfigName)" /d "UNICODE" /d "DEBUG"
MTL=midl.exe
# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
@@ -161,33 +160,32 @@ 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
+# ADD BASE LINK32 $(CEx86Corelibc) winsock.lib commctrl.lib coredll.lib /nologo /dll /debug /machine:MIPS /nodefaultlib:"$(CENoDefaultLib)" /windowsce:emulation
# SUBTRACT BASE LINK32 /pdb:none /nodefaultlib
-# ADD LINK32 msvcrtd.lib libcmtd.lib winsock.lib /nologo /dll /debug /machine:MIPS /nodefaultlib:"wsock32.lib" /nodefaultlib:"$(CENoDefaultLib)" /out:"WCE\MIPS\aced.dll" /subsystem:windowsce,2.0
+# ADD LINK32 winsock.lib commctrl.lib coredll.lib /nologo /dll /debug /machine:MIPS /nodefaultlib:"$(CENoDefaultLib)" /out:"DLL\Debug\MIPS\aced.dll" /subsystem:$(CESubsystem)
# SUBTRACT LINK32 /pdb:none
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
-# PROP BASE Output_Dir "WCESHRel"
-# PROP BASE Intermediate_Dir "WCESHRel"
+# PROP BASE Output_Dir "x86emRel"
+# PROP BASE Intermediate_Dir "x86emRel"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
-# PROP Output_Dir "WCE/SH"
-# PROP Intermediate_Dir "WCE/SH/Release"
+# PROP Output_Dir "DLL\Release\x86\"
+# PROP Intermediate_Dir "DLL\Release\x86\"
# 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 /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
+EMPFILE=empfile.exe
+CPP=cl.exe
+# ADD BASE CPP /nologo /ML /W3 /O2 /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "WIN32" /D "STRICT" /D _WIN32_WCE=$(CEVersion) /D "$(CEConfigName)" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "NDEBUG" /D "x86" /D "i486" /D "_x86_" /D "_MBCS" /D "_USRDLL" /D "ACE_DLL_CE_EXPORTS" /YX /c
+# ADD CPP /nologo /W3 /O2 /I "../" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "WIN32" /D "STRICT" /D _WIN32_WCE=$(CEVersion) /D "$(CEConfigName)" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "NDEBUG" /D "x86" /D "i486" /D "_x86_" /D "ACE_BUILD_DLL" /c
+# SUBTRACT CPP /YX
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
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "WIN32" /d "STRICT" /d _WIN32_WCE=$(CEVersion) /d "$(CEConfigName)" /d "_WIN32_WCE_EMULATION" /d "INTERNATIONAL" /d "USA" /d "INTLMSG_CODEPAGE" /d "NDEBUG"
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "WIN32" /d "STRICT" /d _WIN32_WCE=$(CEVersion) /d "$(CEConfigName)" /d "_WIN32_WCE_EMULATION" /d "INTERNATIONAL" /d "USA" /d "INTLMSG_CODEPAGE" /d "NDEBUG"
MTL=midl.exe
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
@@ -195,33 +193,30 @@ 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 msvcrt.lib libcmt.lib winsock.lib /nologo /dll /machine:SH3 /nodefaultlib:"wsock32.lib" /nodefaultlib:"$(CENoDefaultLib)" /out:"WCE\SH\ace.dll" /subsystem:windowsce,2.0
-# SUBTRACT LINK32 /pdb:none
+# ADD BASE LINK32 $(CEx86Corelibc) commctrl.lib coredll.lib /nologo /stack:0x10000,0x1000 /dll /machine:I386 /nodefaultlib:"$(CENoDefaultLib)" /windowsce:emulation
+# ADD LINK32 $(CEx86Corelibc) commctrl.lib coredll.lib /nologo /stack:0x10000,0x1000 /dll /machine:I386 /nodefaultlib:"$(CENoDefaultLib)" /out:"DLL\Release\x86\ace.dll" /windowsce:emulation
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
-# PROP BASE Output_Dir "WCESHDbg"
-# PROP BASE Intermediate_Dir "WCESHDbg"
+# PROP BASE Output_Dir "x86emDbg"
+# PROP BASE Intermediate_Dir "x86emDbg"
# PROP BASE Target_Dir ""
-# PROP Use_MFC 2
+# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
-# PROP Output_Dir "WCE/SH"
-# PROP Intermediate_Dir "WCE/SH/Debug"
+# PROP Output_Dir "DLL\Debug\x86"
+# PROP Intermediate_Dir "DLL\Debug\x86"
# 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 /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
+EMPFILE=empfile.exe
+CPP=cl.exe
+# ADD BASE CPP /nologo /MLd /W3 /Gm /Zi /Od /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "WIN32" /D "STRICT" /D _WIN32_WCE=$(CEVersion) /D "$(CEConfigName)" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "_DEBUG" /D "x86" /D "i486" /D "_x86_" /D "_MBCS" /D "_USRDLL" /D "ACE_DLL_CE_EXPORTS" /YX /c
+# ADD CPP /nologo /W3 /Gm /Zi /Od /I "../" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "WIN32" /D "STRICT" /D _WIN32_WCE=$(CEVersion) /D "$(CEConfigName)" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "_DEBUG" /D "x86" /D "i486" /D "_x86_" /D "ACE_BUILD_DLL" /c
+# SUBTRACT CPP /YX
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"
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "WIN32" /d "STRICT" /d _WIN32_WCE=$(CEVersion) /d "$(CEConfigName)" /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=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "WIN32" /d "STRICT" /d _WIN32_WCE=$(CEVersion) /d "$(CEConfigName)" /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
@@ -229,46 +224,58 @@ 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 msvcrtd.lib libcmtd.lib winsock.lib /nologo /dll /incremental:no /debug /machine:SH3 /nodefaultlib:"$(CENoDefaultLib)" /out:"WCE\SH\aced.dll" /subsystem:windowsce,2.0
-# SUBTRACT LINK32 /pdb:none
+# ADD BASE LINK32 $(CEx86Corelibc) commctrl.lib coredll.lib /nologo /stack:0x10000,0x1000 /dll /debug /machine:I386 /nodefaultlib:"$(CENoDefaultLib)" /windowsce:emulation
+# ADD LINK32 $(CEx86Corelibc) commctrl.lib coredll.lib winsock.lib /nologo /stack:0x10000,0x1000 /dll /debug /machine:I386 /nodefaultlib:"$(CENoDefaultLib)" /nodefaultlib /out:"DLL\Debug\x86\aced.dll" /windowsce:emulation
!ENDIF
# Begin Target
-# Name "ace_ce_dll - Win32 (WCE x86em) Release"
-# 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 SH3) Release"
-# Name "ace_ce_dll - Win32 (WCE SH3) Debug"
+# Name "ace_dll_ce - Win32 (WCE SH3) Release"
+# Name "ace_dll_ce - Win32 (WCE SH3) Debug"
+# Name "ace_dll_ce - Win32 (WCE MIPS) Release"
+# Name "ace_dll_ce - Win32 (WCE MIPS) Debug"
+# Name "ace_dll_ce - Win32 (WCE x86em) Release"
+# Name "ace_dll_ce - Win32 (WCE x86em) Debug"
+# Begin Group "Source Files"
+
+# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
# Begin Source File
SOURCE=.\ACE.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_ACE_C=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
@@ -276,12 +283,9 @@ DEP_CPP_ACE_C=\
".\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"\
@@ -299,17 +303,23 @@ DEP_CPP_ACE_C=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Process.h"\
- ".\Process.i"\
- ".\Reactor.h"\
- ".\Reactor.i"\
- ".\Reactor_Impl.h"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -317,6 +327,7 @@ DEP_CPP_ACE_C=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -324,39 +335,50 @@ DEP_CPP_ACE_C=\
".\Synch_T.i"\
".\Thread.h"\
".\Thread.i"\
- ".\Thread_Manager.h"\
- ".\Thread_Manager.i"\
- ".\Timer_Queue.h"\
- ".\Timer_Queue_T.cpp"\
- ".\Timer_Queue_T.h"\
- ".\Timer_Queue_T.i"\
".\Trace.h"\
".\Version.h"\
".\ws2tcpip.h"\
-NODEP_CPP_ACE_C=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_ACE_C=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
+ ".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.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"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -364,43 +386,88 @@ DEP_CPP_ACE_C=\
".\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"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
".\Trace.h"\
".\Version.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_ACE_C=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
@@ -408,12 +475,9 @@ DEP_CPP_ACE_C=\
".\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"\
@@ -431,17 +495,23 @@ DEP_CPP_ACE_C=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Process.h"\
- ".\Process.i"\
- ".\Reactor.h"\
- ".\Reactor.i"\
- ".\Reactor_Impl.h"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -449,6 +519,7 @@ DEP_CPP_ACE_C=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -456,41 +527,43 @@ DEP_CPP_ACE_C=\
".\Synch_T.i"\
".\Thread.h"\
".\Thread.i"\
- ".\Thread_Manager.h"\
- ".\Thread_Manager.i"\
- ".\Timer_Queue.h"\
- ".\Timer_Queue_T.cpp"\
- ".\Timer_Queue_T.h"\
- ".\Timer_Queue_T.i"\
".\Trace.h"\
".\Version.h"\
".\ws2tcpip.h"\
-NODEP_CPP_ACE_C=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_ACE_C=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
@@ -498,12 +571,9 @@ DEP_CPP_ACE_C=\
".\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"\
@@ -521,17 +591,23 @@ DEP_CPP_ACE_C=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Process.h"\
- ".\Process.i"\
- ".\Reactor.h"\
- ".\Reactor.i"\
- ".\Reactor_Impl.h"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -539,6 +615,7 @@ DEP_CPP_ACE_C=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -546,40 +623,50 @@ DEP_CPP_ACE_C=\
".\Synch_T.i"\
".\Thread.h"\
".\Thread.i"\
- ".\Thread_Manager.h"\
- ".\Thread_Manager.i"\
- ".\Timer_Queue.h"\
- ".\Timer_Queue_T.cpp"\
- ".\Timer_Queue_T.h"\
- ".\Timer_Queue_T.i"\
".\Trace.h"\
".\Version.h"\
".\ws2tcpip.h"\
-NODEP_CPP_ACE_C=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_ACE_C=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
+ ".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.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"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -587,45 +674,95 @@ DEP_CPP_ACE_C=\
".\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"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
".\Trace.h"\
".\Version.h"\
".\ws2tcpip.h"\
-NODEP_CPP_ACE_C=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_ACE_C=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
+ ".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.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"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -633,24 +770,55 @@ DEP_CPP_ACE_C=\
".\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"\
+ ".\Message_Block.h"\
+ ".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
".\Trace.h"\
".\Version.h"\
".\ws2tcpip.h"\
-NODEP_CPP_ACE_C=\
- ".\ce.h"\
-
!ENDIF
@@ -659,37 +827,52 @@ NODEP_CPP_ACE_C=\
SOURCE=.\Activation_Queue.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_ACTIV=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Activation_Queue.h"\
".\Activation_Queue.i"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -711,16 +894,22 @@ 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"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
".\Method_Request.h"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -736,6 +925,9 @@ DEP_CPP_ACTIV=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -749,6 +941,7 @@ DEP_CPP_ACTIV=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -769,15 +962,14 @@ DEP_CPP_ACTIV=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_ACTIV=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_ACTIV=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Activation_Queue.h"\
".\Activation_Queue.i"\
".\Atomic_Op.i"\
@@ -787,7 +979,11 @@ DEP_CPP_ACTIV=\
".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -813,7 +1009,6 @@ DEP_CPP_ACTIV=\
".\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"\
".\Log_Msg.h"\
@@ -844,10 +1039,13 @@ DEP_CPP_ACTIV=\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
".\Method_Request.h"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -879,6 +1077,7 @@ DEP_CPP_ACTIV=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -900,37 +1099,52 @@ DEP_CPP_ACTIV=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_ACTIV=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Activation_Queue.h"\
".\Activation_Queue.i"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -952,16 +1166,22 @@ 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"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
".\Method_Request.h"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -977,6 +1197,9 @@ DEP_CPP_ACTIV=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -990,6 +1213,7 @@ DEP_CPP_ACTIV=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -1010,41 +1234,53 @@ DEP_CPP_ACTIV=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_ACTIV=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_ACTIV=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Activation_Queue.h"\
".\Activation_Queue.i"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -1066,16 +1302,22 @@ 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"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
".\Method_Request.h"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -1091,6 +1333,9 @@ DEP_CPP_ACTIV=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -1104,6 +1349,7 @@ DEP_CPP_ACTIV=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -1124,22 +1370,28 @@ DEP_CPP_ACTIV=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_ACTIV=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_ACTIV=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Activation_Queue.h"\
".\Activation_Queue.i"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -1165,7 +1417,6 @@ DEP_CPP_ACTIV=\
".\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"\
".\Log_Msg.h"\
@@ -1196,10 +1447,13 @@ DEP_CPP_ACTIV=\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
".\Method_Request.h"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -1215,6 +1469,9 @@ DEP_CPP_ACTIV=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -1228,6 +1485,7 @@ DEP_CPP_ACTIV=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -1248,22 +1506,28 @@ DEP_CPP_ACTIV=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_ACTIV=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_ACTIV=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Activation_Queue.h"\
".\Activation_Queue.i"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -1289,7 +1553,6 @@ DEP_CPP_ACTIV=\
".\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"\
".\Log_Msg.h"\
@@ -1320,10 +1583,13 @@ DEP_CPP_ACTIV=\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
".\Method_Request.h"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -1339,6 +1605,9 @@ DEP_CPP_ACTIV=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -1352,6 +1621,7 @@ DEP_CPP_ACTIV=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -1372,9 +1642,6 @@ DEP_CPP_ACTIV=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_ACTIV=\
- ".\ce.h"\
-
!ENDIF
@@ -1383,20 +1650,30 @@ NODEP_CPP_ACTIV=\
SOURCE=.\Active_Map_Manager.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_ACTIVE=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Active_Map_Manager.h"\
".\Active_Map_Manager.i"\
".\Active_Map_Manager_T.cpp"\
".\Active_Map_Manager_T.h"\
".\Active_Map_Manager_T.i"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -1412,7 +1689,6 @@ DEP_CPP_ACTIVE=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -1434,10 +1710,13 @@ DEP_CPP_ACTIVE=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -1449,6 +1728,9 @@ DEP_CPP_ACTIVE=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -1457,6 +1739,7 @@ DEP_CPP_ACTIVE=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -1472,11 +1755,13 @@ DEP_CPP_ACTIVE=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_ACTIVE=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Active_Map_Manager.h"\
".\Active_Map_Manager.i"\
".\Active_Map_Manager_T.cpp"\
@@ -1489,7 +1774,11 @@ DEP_CPP_ACTIVE=\
".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -1505,7 +1794,6 @@ DEP_CPP_ACTIVE=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -1527,10 +1815,13 @@ DEP_CPP_ACTIVE=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -1553,6 +1844,7 @@ DEP_CPP_ACTIVE=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -1568,20 +1860,30 @@ DEP_CPP_ACTIVE=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_ACTIVE=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Active_Map_Manager.h"\
".\Active_Map_Manager.i"\
".\Active_Map_Manager_T.cpp"\
".\Active_Map_Manager_T.h"\
".\Active_Map_Manager_T.i"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -1597,7 +1899,6 @@ DEP_CPP_ACTIVE=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -1619,10 +1920,13 @@ DEP_CPP_ACTIVE=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -1634,6 +1938,9 @@ DEP_CPP_ACTIVE=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -1642,6 +1949,7 @@ DEP_CPP_ACTIVE=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -1657,20 +1965,30 @@ DEP_CPP_ACTIVE=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_ACTIVE=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Active_Map_Manager.h"\
".\Active_Map_Manager.i"\
".\Active_Map_Manager_T.cpp"\
".\Active_Map_Manager_T.h"\
".\Active_Map_Manager_T.i"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -1686,7 +2004,6 @@ DEP_CPP_ACTIVE=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -1708,10 +2025,13 @@ DEP_CPP_ACTIVE=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -1723,6 +2043,9 @@ DEP_CPP_ACTIVE=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -1731,6 +2054,7 @@ DEP_CPP_ACTIVE=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -1746,20 +2070,30 @@ DEP_CPP_ACTIVE=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_ACTIVE=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Active_Map_Manager.h"\
".\Active_Map_Manager.i"\
".\Active_Map_Manager_T.cpp"\
".\Active_Map_Manager_T.h"\
".\Active_Map_Manager_T.i"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -1775,7 +2109,6 @@ DEP_CPP_ACTIVE=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -1797,10 +2130,13 @@ DEP_CPP_ACTIVE=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -1812,6 +2148,9 @@ DEP_CPP_ACTIVE=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -1820,6 +2159,7 @@ DEP_CPP_ACTIVE=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -1835,20 +2175,30 @@ DEP_CPP_ACTIVE=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_ACTIVE=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Active_Map_Manager.h"\
".\Active_Map_Manager.i"\
".\Active_Map_Manager_T.cpp"\
".\Active_Map_Manager_T.h"\
".\Active_Map_Manager_T.i"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -1864,7 +2214,6 @@ DEP_CPP_ACTIVE=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -1886,10 +2235,13 @@ DEP_CPP_ACTIVE=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -1901,6 +2253,9 @@ DEP_CPP_ACTIVE=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -1909,6 +2264,7 @@ DEP_CPP_ACTIVE=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -1931,61 +2287,65 @@ DEP_CPP_ACTIVE=\
SOURCE=.\Addr.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_ADDR_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_ADDR_=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_ADDR_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -1994,172 +2354,178 @@ DEP_CPP_ADDR_=\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_ADDR_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_ADDR_=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_ADDR_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_ADDR_=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_ADDR_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_ADDR_=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_ADDR_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_ADDR_=\
- ".\ce.h"\
-
!ENDIF
@@ -2168,33 +2534,40 @@ NODEP_CPP_ADDR_=\
SOURCE=.\ARGV.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_ARGV_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\ARGV.h"\
".\ARGV.i"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -2213,19 +2586,24 @@ DEP_CPP_ARGV_=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -2236,15 +2614,14 @@ DEP_CPP_ARGV_=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_ARGV_=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_ARGV_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\ARGV.h"\
".\ARGV.i"\
".\Atomic_Op.i"\
@@ -2254,7 +2631,11 @@ DEP_CPP_ARGV_=\
".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -2268,7 +2649,6 @@ DEP_CPP_ARGV_=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -2287,10 +2667,13 @@ DEP_CPP_ARGV_=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
".\Singleton.cpp"\
@@ -2301,6 +2684,7 @@ DEP_CPP_ARGV_=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -2312,33 +2696,40 @@ DEP_CPP_ARGV_=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_ARGV_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\ARGV.h"\
".\ARGV.i"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -2357,19 +2748,24 @@ DEP_CPP_ARGV_=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -2380,37 +2776,41 @@ DEP_CPP_ARGV_=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_ARGV_=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_ARGV_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\ARGV.h"\
".\ARGV.i"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -2429,19 +2829,24 @@ DEP_CPP_ARGV_=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -2452,22 +2857,28 @@ DEP_CPP_ARGV_=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_ARGV_=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_ARGV_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\ARGV.h"\
".\ARGV.i"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -2481,7 +2892,6 @@ DEP_CPP_ARGV_=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -2500,19 +2910,24 @@ DEP_CPP_ARGV_=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -2523,22 +2938,28 @@ DEP_CPP_ARGV_=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_ARGV_=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_ARGV_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\ARGV.h"\
".\ARGV.i"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -2552,7 +2973,6 @@ DEP_CPP_ARGV_=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -2571,19 +2991,24 @@ DEP_CPP_ARGV_=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -2594,9 +3019,6 @@ DEP_CPP_ARGV_=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_ARGV_=\
- ".\ce.h"\
-
!ENDIF
@@ -2605,39 +3027,46 @@ NODEP_CPP_ARGV_=\
SOURCE=.\Asynch_IO.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_ASYNC=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Asynch_IO.h"\
".\Asynch_IO.i"\
+ ".\Asynch_IO_Impl.h"\
+ ".\Asynch_IO_Impl.i"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\Handle_Set.h"\
- ".\Handle_Set.i"\
".\High_Res_Timer.h"\
".\High_Res_Timer.i"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -2660,31 +3089,29 @@ DEP_CPP_ASYNC=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Proactor.h"\
".\Proactor.i"\
- ".\Reactor.h"\
- ".\Reactor.i"\
- ".\Reactor_Impl.h"\
- ".\Service_Config.h"\
- ".\Service_Config.i"\
- ".\Service_Object.h"\
- ".\Service_Object.i"\
- ".\Shared_Object.h"\
- ".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
- ".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -2710,15 +3137,14 @@ DEP_CPP_ASYNC=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_ASYNC=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_ASYNC=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Asynch_IO.h"\
@@ -2732,7 +3158,11 @@ DEP_CPP_ASYNC=\
".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -2748,7 +3178,6 @@ DEP_CPP_ASYNC=\
".\Free_List.i"\
".\High_Res_Timer.h"\
".\High_Res_Timer.i"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -2774,10 +3203,13 @@ DEP_CPP_ASYNC=\
".\Message_Block_T.cpp"\
".\Message_Block_T.h"\
".\Message_Block_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Proactor.h"\
".\Proactor.i"\
".\Signal.h"\
@@ -2790,6 +3222,7 @@ DEP_CPP_ASYNC=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -2816,39 +3249,46 @@ DEP_CPP_ASYNC=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_ASYNC=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Asynch_IO.h"\
".\Asynch_IO.i"\
+ ".\Asynch_IO_Impl.h"\
+ ".\Asynch_IO_Impl.i"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\Handle_Set.h"\
- ".\Handle_Set.i"\
".\High_Res_Timer.h"\
".\High_Res_Timer.i"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -2871,31 +3311,29 @@ DEP_CPP_ASYNC=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Proactor.h"\
".\Proactor.i"\
- ".\Reactor.h"\
- ".\Reactor.i"\
- ".\Reactor_Impl.h"\
- ".\Service_Config.h"\
- ".\Service_Config.i"\
- ".\Service_Object.h"\
- ".\Service_Object.i"\
- ".\Shared_Object.h"\
- ".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
- ".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -2921,43 +3359,47 @@ DEP_CPP_ASYNC=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_ASYNC=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_ASYNC=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Asynch_IO.h"\
".\Asynch_IO.i"\
+ ".\Asynch_IO_Impl.h"\
+ ".\Asynch_IO_Impl.i"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\Handle_Set.h"\
- ".\Handle_Set.i"\
".\High_Res_Timer.h"\
".\High_Res_Timer.i"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -2980,31 +3422,29 @@ DEP_CPP_ASYNC=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Proactor.h"\
".\Proactor.i"\
- ".\Reactor.h"\
- ".\Reactor.i"\
- ".\Reactor_Impl.h"\
- ".\Service_Config.h"\
- ".\Service_Config.i"\
- ".\Service_Object.h"\
- ".\Service_Object.i"\
- ".\Shared_Object.h"\
- ".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
- ".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -3030,15 +3470,14 @@ DEP_CPP_ASYNC=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_ASYNC=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_ASYNC=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Asynch_IO.h"\
@@ -3046,10 +3485,17 @@ DEP_CPP_ASYNC=\
".\Asynch_IO_Impl.h"\
".\Asynch_IO_Impl.i"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -3063,7 +3509,8 @@ DEP_CPP_ASYNC=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\inc_user_config.h"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -3089,21 +3536,26 @@ DEP_CPP_ASYNC=\
".\Message_Block_T.cpp"\
".\Message_Block_T.h"\
".\Message_Block_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Proactor.h"\
".\Proactor.i"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -3111,18 +3563,32 @@ DEP_CPP_ASYNC=\
".\Synch_T.i"\
".\Thread.h"\
".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Timer_Wheel.h"\
+ ".\Timer_Wheel_T.cpp"\
+ ".\Timer_Wheel_T.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_ASYNC=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_ASYNC=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Asynch_IO.h"\
@@ -3130,10 +3596,17 @@ DEP_CPP_ASYNC=\
".\Asynch_IO_Impl.h"\
".\Asynch_IO_Impl.i"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -3147,7 +3620,8 @@ DEP_CPP_ASYNC=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\inc_user_config.h"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -3173,21 +3647,26 @@ DEP_CPP_ASYNC=\
".\Message_Block_T.cpp"\
".\Message_Block_T.h"\
".\Message_Block_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Proactor.h"\
".\Proactor.i"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -3195,12 +3674,24 @@ DEP_CPP_ASYNC=\
".\Synch_T.i"\
".\Thread.h"\
".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Timer_Wheel.h"\
+ ".\Timer_Wheel_T.cpp"\
+ ".\Timer_Wheel_T.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_ASYNC=\
- ".\ce.h"\
-
!ENDIF
@@ -3209,11 +3700,13 @@ NODEP_CPP_ASYNC=\
SOURCE=.\Based_Pointer_Repository.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_BASED=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Based_Pointer_Repository.h"\
".\Based_Pointer_T.cpp"\
@@ -3221,7 +3714,11 @@ DEP_CPP_BASED=\
".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -3237,7 +3734,6 @@ DEP_CPP_BASED=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -3259,10 +3755,13 @@ DEP_CPP_BASED=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -3285,6 +3784,7 @@ DEP_CPP_BASED=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -3300,11 +3800,13 @@ DEP_CPP_BASED=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_BASED=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Based_Pointer_Repository.h"\
".\Based_Pointer_T.cpp"\
@@ -3312,7 +3814,11 @@ DEP_CPP_BASED=\
".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -3328,7 +3834,6 @@ DEP_CPP_BASED=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -3350,10 +3855,13 @@ DEP_CPP_BASED=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -3376,6 +3884,7 @@ DEP_CPP_BASED=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -3391,11 +3900,13 @@ DEP_CPP_BASED=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_BASED=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Based_Pointer_Repository.h"\
".\Based_Pointer_T.cpp"\
@@ -3403,7 +3914,11 @@ DEP_CPP_BASED=\
".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -3419,7 +3934,6 @@ DEP_CPP_BASED=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -3441,10 +3955,13 @@ DEP_CPP_BASED=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -3467,6 +3984,7 @@ DEP_CPP_BASED=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -3482,11 +4000,13 @@ DEP_CPP_BASED=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_BASED=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Based_Pointer_Repository.h"\
".\Based_Pointer_T.cpp"\
@@ -3494,7 +4014,11 @@ DEP_CPP_BASED=\
".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -3510,7 +4034,6 @@ DEP_CPP_BASED=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -3532,10 +4055,13 @@ DEP_CPP_BASED=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -3558,6 +4084,7 @@ DEP_CPP_BASED=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -3573,11 +4100,13 @@ DEP_CPP_BASED=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_BASED=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Based_Pointer_Repository.h"\
".\Based_Pointer_T.cpp"\
@@ -3585,7 +4114,11 @@ DEP_CPP_BASED=\
".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -3601,7 +4134,6 @@ DEP_CPP_BASED=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -3623,10 +4155,13 @@ DEP_CPP_BASED=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -3649,6 +4184,7 @@ DEP_CPP_BASED=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -3664,11 +4200,13 @@ DEP_CPP_BASED=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_BASED=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Based_Pointer_Repository.h"\
".\Based_Pointer_T.cpp"\
@@ -3676,7 +4214,11 @@ DEP_CPP_BASED=\
".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -3692,7 +4234,6 @@ DEP_CPP_BASED=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -3714,10 +4255,13 @@ DEP_CPP_BASED=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -3740,6 +4284,7 @@ DEP_CPP_BASED=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -3762,50 +4307,226 @@ DEP_CPP_BASED=\
SOURCE=.\Basic_Types.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_BASIC=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Dynamic.h"\
+ ".\Dynamic.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Filecache.h"\
+ ".\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.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"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Local_Name_Space.h"\
+ ".\Local_Name_Space_T.cpp"\
+ ".\Local_Name_Space_T.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.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"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\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"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Name_Proxy.h"\
+ ".\Name_Request_Reply.h"\
+ ".\Name_Space.h"\
+ ".\Naming_Context.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
+ ".\Obstack.h"\
+ ".\Obstack.i"\
".\OS.h"\
".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Remote_Tokens.h"\
+ ".\Remote_Tokens.i"\
+ ".\Select_Reactor.h"\
+ ".\Select_Reactor.i"\
+ ".\Select_Reactor_Base.h"\
+ ".\Select_Reactor_Base.i"\
+ ".\Select_Reactor_T.cpp"\
+ ".\Select_Reactor_T.h"\
+ ".\Select_Reactor_T.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
".\SString.h"\
".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream.cpp"\
+ ".\Stream.h"\
+ ".\Stream.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Template_Instantiations.cpp"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Hash.h"\
+ ".\Timer_Hash_T.cpp"\
+ ".\Timer_Hash_T.h"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Timer_Wheel_T.cpp"\
+ ".\Timer_Wheel_T.h"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\Token_Invariants.h"\
+ ".\Token_Invariants.i"\
+ ".\Token_Request_Reply.h"\
+ ".\Token_Request_Reply.i"\
".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_BASIC=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_BASIC=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Atomic_Op.i"\
@@ -3818,7 +4539,11 @@ DEP_CPP_BASIC=\
".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -3849,7 +4574,6 @@ DEP_CPP_BASIC=\
".\Hash_Map_Manager_T.i"\
".\High_Res_Timer.h"\
".\High_Res_Timer.i"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\IO_Cntl_Msg.h"\
@@ -3891,6 +4615,7 @@ DEP_CPP_BASIC=\
".\Message_Queue_T.cpp"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Module.cpp"\
".\Module.h"\
".\Module.i"\
@@ -3906,6 +4631,9 @@ DEP_CPP_BASIC=\
".\OS.i"\
".\Pipe.h"\
".\Pipe.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -3960,6 +4688,7 @@ DEP_CPP_BASIC=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -4004,99 +4733,456 @@ DEP_CPP_BASIC=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_BASIC=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Dynamic.h"\
+ ".\Dynamic.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Filecache.h"\
+ ".\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.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"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Local_Name_Space.h"\
+ ".\Local_Name_Space_T.cpp"\
+ ".\Local_Name_Space_T.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.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"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\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"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Name_Proxy.h"\
+ ".\Name_Request_Reply.h"\
+ ".\Name_Space.h"\
+ ".\Naming_Context.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
+ ".\Obstack.h"\
+ ".\Obstack.i"\
".\OS.h"\
".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Remote_Tokens.h"\
+ ".\Remote_Tokens.i"\
+ ".\Select_Reactor.h"\
+ ".\Select_Reactor.i"\
+ ".\Select_Reactor_Base.h"\
+ ".\Select_Reactor_Base.i"\
+ ".\Select_Reactor_T.cpp"\
+ ".\Select_Reactor_T.h"\
+ ".\Select_Reactor_T.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
".\SString.h"\
".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream.cpp"\
+ ".\Stream.h"\
+ ".\Stream.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Template_Instantiations.cpp"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Hash.h"\
+ ".\Timer_Hash_T.cpp"\
+ ".\Timer_Hash_T.h"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Timer_Wheel_T.cpp"\
+ ".\Timer_Wheel_T.h"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\Token_Invariants.h"\
+ ".\Token_Invariants.i"\
+ ".\Token_Request_Reply.h"\
+ ".\Token_Request_Reply.i"\
".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_BASIC=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_BASIC=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
+ ".\Addr.h"\
+ ".\Addr.i"\
+ ".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
+ ".\Containers.h"\
+ ".\Containers.i"\
+ ".\Containers_T.cpp"\
+ ".\Containers_T.h"\
+ ".\Containers_T.i"\
+ ".\Dynamic.h"\
+ ".\Dynamic.i"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
+ ".\Filecache.h"\
+ ".\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.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"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
+ ".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
+ ".\IPC_SAP.h"\
+ ".\IPC_SAP.i"\
+ ".\Local_Name_Space.h"\
+ ".\Local_Name_Space_T.cpp"\
+ ".\Local_Name_Space_T.h"\
+ ".\Local_Tokens.h"\
+ ".\Local_Tokens.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"\
+ ".\Map_Manager.cpp"\
+ ".\Map_Manager.h"\
+ ".\Map_Manager.i"\
+ ".\Mem_Map.h"\
+ ".\Mem_Map.i"\
+ ".\Memory_Pool.h"\
+ ".\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"\
+ ".\Message_Queue_T.h"\
+ ".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
+ ".\Module.cpp"\
+ ".\Module.h"\
+ ".\Module.i"\
+ ".\Name_Proxy.h"\
+ ".\Name_Request_Reply.h"\
+ ".\Name_Space.h"\
+ ".\Naming_Context.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
+ ".\Obstack.h"\
+ ".\Obstack.i"\
".\OS.h"\
".\OS.i"\
+ ".\Pipe.h"\
+ ".\Pipe.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Remote_Tokens.h"\
+ ".\Remote_Tokens.i"\
+ ".\Select_Reactor.h"\
+ ".\Select_Reactor.i"\
+ ".\Select_Reactor_Base.h"\
+ ".\Select_Reactor_Base.i"\
+ ".\Select_Reactor_T.cpp"\
+ ".\Select_Reactor_T.h"\
+ ".\Select_Reactor_T.i"\
+ ".\Service_Config.h"\
+ ".\Service_Config.i"\
+ ".\Service_Object.h"\
+ ".\Service_Object.i"\
+ ".\Service_Repository.h"\
+ ".\Service_Repository.i"\
+ ".\Service_Types.h"\
+ ".\Service_Types.i"\
+ ".\Shared_Object.h"\
+ ".\Shared_Object.i"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
+ ".\SOCK.h"\
+ ".\SOCK.i"\
+ ".\SOCK_Connector.h"\
+ ".\SOCK_Connector.i"\
+ ".\SOCK_IO.h"\
+ ".\SOCK_IO.i"\
+ ".\SOCK_Stream.h"\
+ ".\SOCK_Stream.i"\
".\SString.h"\
".\SString.i"\
+ ".\Strategies.h"\
+ ".\Strategies.i"\
+ ".\Strategies_T.cpp"\
+ ".\Strategies_T.h"\
+ ".\Strategies_T.i"\
+ ".\Stream.cpp"\
+ ".\Stream.h"\
+ ".\Stream.i"\
+ ".\Stream_Modules.cpp"\
+ ".\Stream_Modules.h"\
+ ".\Stream_Modules.i"\
".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_Options.h"\
+ ".\Synch_Options.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Task.h"\
+ ".\Task.i"\
+ ".\Task_T.cpp"\
+ ".\Task_T.h"\
+ ".\Task_T.i"\
+ ".\Template_Instantiations.cpp"\
+ ".\Thread.h"\
+ ".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Time_Value.h"\
+ ".\Timer_Hash.h"\
+ ".\Timer_Hash_T.cpp"\
+ ".\Timer_Hash_T.h"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
+ ".\Timer_Wheel_T.cpp"\
+ ".\Timer_Wheel_T.h"\
+ ".\Token.h"\
+ ".\Token.i"\
+ ".\Token_Invariants.h"\
+ ".\Token_Invariants.i"\
+ ".\Token_Request_Reply.h"\
+ ".\Token_Request_Reply.i"\
".\Trace.h"\
+ ".\WFMO_Reactor.h"\
+ ".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_BASIC=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_BASIC=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -4127,7 +5213,6 @@ DEP_CPP_BASIC=\
".\Hash_Map_Manager_T.i"\
".\High_Res_Timer.h"\
".\High_Res_Timer.i"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\IO_Cntl_Msg.h"\
@@ -4169,6 +5254,7 @@ DEP_CPP_BASIC=\
".\Message_Queue_T.cpp"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Module.cpp"\
".\Module.h"\
".\Module.i"\
@@ -4184,6 +5270,9 @@ DEP_CPP_BASIC=\
".\OS.i"\
".\Pipe.h"\
".\Pipe.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -4238,6 +5327,7 @@ DEP_CPP_BASIC=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -4281,25 +5371,31 @@ DEP_CPP_BASIC=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_BASIC=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_BASIC=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -4330,7 +5426,6 @@ DEP_CPP_BASIC=\
".\Hash_Map_Manager_T.i"\
".\High_Res_Timer.h"\
".\High_Res_Timer.i"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\IO_Cntl_Msg.h"\
@@ -4372,6 +5467,7 @@ DEP_CPP_BASIC=\
".\Message_Queue_T.cpp"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Module.cpp"\
".\Module.h"\
".\Module.i"\
@@ -4387,6 +5483,9 @@ DEP_CPP_BASIC=\
".\OS.i"\
".\Pipe.h"\
".\Pipe.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -4441,6 +5540,7 @@ DEP_CPP_BASIC=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -4484,9 +5584,6 @@ DEP_CPP_BASIC=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_BASIC=\
- ".\ce.h"\
-
!ENDIF
@@ -4495,15 +5592,25 @@ NODEP_CPP_BASIC=\
SOURCE=.\Containers.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_CONTA=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -4517,7 +5624,6 @@ DEP_CPP_CONTA=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -4536,17 +5642,24 @@ DEP_CPP_CONTA=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -4558,11 +5671,13 @@ DEP_CPP_CONTA=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_CONTA=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Based_Pointer_Repository.h"\
".\Based_Pointer_T.cpp"\
@@ -4570,7 +5685,11 @@ DEP_CPP_CONTA=\
".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -4584,7 +5703,6 @@ DEP_CPP_CONTA=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -4603,10 +5721,13 @@ DEP_CPP_CONTA=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
".\Singleton.cpp"\
@@ -4617,6 +5738,7 @@ DEP_CPP_CONTA=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -4628,15 +5750,25 @@ DEP_CPP_CONTA=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_CONTA=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -4650,7 +5782,6 @@ DEP_CPP_CONTA=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -4669,17 +5800,24 @@ DEP_CPP_CONTA=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -4691,15 +5829,25 @@ DEP_CPP_CONTA=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_CONTA=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -4713,7 +5861,6 @@ DEP_CPP_CONTA=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -4732,17 +5879,24 @@ DEP_CPP_CONTA=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -4754,16 +5908,25 @@ DEP_CPP_CONTA=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_CONTA=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -4777,7 +5940,6 @@ DEP_CPP_CONTA=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -4796,19 +5958,24 @@ DEP_CPP_CONTA=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -4819,20 +5986,26 @@ DEP_CPP_CONTA=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_CONTA=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_CONTA=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -4846,7 +6019,6 @@ DEP_CPP_CONTA=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -4865,19 +6037,24 @@ DEP_CPP_CONTA=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -4888,9 +6065,6 @@ DEP_CPP_CONTA=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_CONTA=\
- ".\ce.h"\
-
!ENDIF
@@ -4899,19 +6073,24 @@ NODEP_CPP_CONTA=\
SOURCE=.\DLL.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_DLL_C=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\DLL.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -4920,28 +6099,37 @@ DEP_CPP_DLL_C=\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_DLL_C=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\DLL.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -4950,28 +6138,37 @@ DEP_CPP_DLL_C=\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_DLL_C=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\DLL.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -4980,28 +6177,37 @@ DEP_CPP_DLL_C=\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_DLL_C=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\DLL.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -5010,28 +6216,37 @@ DEP_CPP_DLL_C=\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_DLL_C=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\DLL.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -5040,28 +6255,37 @@ DEP_CPP_DLL_C=\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_DLL_C=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\DLL.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -5070,11 +6294,15 @@ DEP_CPP_DLL_C=\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
@@ -5086,19 +6314,21 @@ DEP_CPP_DLL_C=\
SOURCE=.\Dump.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_DUMP_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -5107,27 +6337,27 @@ DEP_CPP_DUMP_=\
".\Dump_T.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -5138,19 +6368,22 @@ DEP_CPP_DUMP_=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_DUMP_=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_DUMP_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -5159,7 +6392,6 @@ DEP_CPP_DUMP_=\
".\Dump_T.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -5168,15 +6400,19 @@ DEP_CPP_DUMP_=\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -5188,19 +6424,21 @@ DEP_CPP_DUMP_=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_DUMP_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -5209,27 +6447,27 @@ DEP_CPP_DUMP_=\
".\Dump_T.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -5240,23 +6478,22 @@ DEP_CPP_DUMP_=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_DUMP_=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_DUMP_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -5265,27 +6502,27 @@ DEP_CPP_DUMP_=\
".\Dump_T.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -5296,20 +6533,22 @@ DEP_CPP_DUMP_=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_DUMP_=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_DUMP_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -5318,27 +6557,27 @@ DEP_CPP_DUMP_=\
".\Dump_T.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -5349,20 +6588,22 @@ DEP_CPP_DUMP_=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_DUMP_=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_DUMP_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -5371,27 +6612,27 @@ DEP_CPP_DUMP_=\
".\Dump_T.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -5402,9 +6643,6 @@ DEP_CPP_DUMP_=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_DUMP_=\
- ".\ce.h"\
-
!ENDIF
@@ -5413,56 +6651,78 @@ NODEP_CPP_DUMP_=\
SOURCE=.\Dynamic.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_DYNAM=\
".\ACE.h"\
".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
+ ".\Atomic_Op.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Dynamic.h"\
".\Dynamic.i"\
- ".\inc_user_config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_DYNAM=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_DYNAM=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -5470,7 +6730,6 @@ DEP_CPP_DYNAM=\
".\Dynamic.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -5479,10 +6738,13 @@ DEP_CPP_DYNAM=\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Singleton.cpp"\
".\Singleton.h"\
".\Singleton.i"\
@@ -5491,6 +6753,7 @@ DEP_CPP_DYNAM=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -5502,98 +6765,135 @@ DEP_CPP_DYNAM=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_DYNAM=\
".\ACE.h"\
".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
+ ".\Atomic_Op.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Dynamic.h"\
".\Dynamic.i"\
- ".\inc_user_config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_DYNAM=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_DYNAM=\
".\ACE.h"\
".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
+ ".\Atomic_Op.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Dynamic.h"\
".\Dynamic.i"\
- ".\inc_user_config.h"\
+ ".\Event_Handler.h"\
+ ".\Event_Handler.i"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_DYNAM=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_DYNAM=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -5601,30 +6901,30 @@ DEP_CPP_DYNAM=\
".\Dynamic.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Singleton.cpp"\
".\Singleton.h"\
".\Singleton.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -5635,20 +6935,22 @@ DEP_CPP_DYNAM=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_DYNAM=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_DYNAM=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -5656,30 +6958,30 @@ DEP_CPP_DYNAM=\
".\Dynamic.i"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Singleton.cpp"\
".\Singleton.h"\
".\Singleton.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -5690,9 +6992,6 @@ DEP_CPP_DYNAM=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_DYNAM=\
- ".\ce.h"\
-
!ENDIF
@@ -5701,31 +7000,40 @@ NODEP_CPP_DYNAM=\
SOURCE=.\Event_Handler.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_EVENT=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -5746,19 +7054,30 @@ DEP_CPP_EVENT=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -5766,18 +7085,23 @@ DEP_CPP_EVENT=\
".\Synch_T.i"\
".\Thread.h"\
".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_EVENT=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_EVENT=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Based_Pointer_Repository.h"\
".\Based_Pointer_T.cpp"\
@@ -5785,7 +7109,11 @@ DEP_CPP_EVENT=\
".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -5801,7 +7129,6 @@ DEP_CPP_EVENT=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -5825,10 +7152,13 @@ DEP_CPP_EVENT=\
".\Message_Block_T.cpp"\
".\Message_Block_T.h"\
".\Message_Block_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -5842,6 +7172,7 @@ DEP_CPP_EVENT=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -5859,31 +7190,40 @@ DEP_CPP_EVENT=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_EVENT=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -5904,19 +7244,30 @@ DEP_CPP_EVENT=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -5924,38 +7275,50 @@ DEP_CPP_EVENT=\
".\Synch_T.i"\
".\Thread.h"\
".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_EVENT=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_EVENT=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -5976,19 +7339,30 @@ DEP_CPP_EVENT=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -5996,23 +7370,35 @@ DEP_CPP_EVENT=\
".\Synch_T.i"\
".\Thread.h"\
".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_EVENT=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_EVENT=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -6028,7 +7414,6 @@ DEP_CPP_EVENT=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -6052,22 +7437,27 @@ DEP_CPP_EVENT=\
".\Message_Block_T.cpp"\
".\Message_Block_T.h"\
".\Message_Block_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -6084,20 +7474,26 @@ DEP_CPP_EVENT=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_EVENT=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_EVENT=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -6113,7 +7509,6 @@ DEP_CPP_EVENT=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -6137,22 +7532,27 @@ DEP_CPP_EVENT=\
".\Message_Block_T.cpp"\
".\Message_Block_T.h"\
".\Message_Block_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -6169,9 +7569,6 @@ DEP_CPP_EVENT=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_EVENT=\
- ".\ce.h"\
-
!ENDIF
@@ -6180,14 +7577,20 @@ NODEP_CPP_EVENT=\
SOURCE=.\Functor.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_FUNCT=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -6196,7 +7599,6 @@ DEP_CPP_FUNCT=\
".\Functor_T.cpp"\
".\Functor_T.h"\
".\Functor_T.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -6205,23 +7607,33 @@ DEP_CPP_FUNCT=\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_FUNCT=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -6230,7 +7642,6 @@ DEP_CPP_FUNCT=\
".\Functor_T.cpp"\
".\Functor_T.h"\
".\Functor_T.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -6239,23 +7650,33 @@ DEP_CPP_FUNCT=\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_FUNCT=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -6264,7 +7685,6 @@ DEP_CPP_FUNCT=\
".\Functor_T.cpp"\
".\Functor_T.h"\
".\Functor_T.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -6273,23 +7693,33 @@ DEP_CPP_FUNCT=\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_FUNCT=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -6298,7 +7728,6 @@ DEP_CPP_FUNCT=\
".\Functor_T.cpp"\
".\Functor_T.h"\
".\Functor_T.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -6307,24 +7736,33 @@ DEP_CPP_FUNCT=\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_FUNCT=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -6333,39 +7771,41 @@ DEP_CPP_FUNCT=\
".\Functor_T.cpp"\
".\Functor_T.h"\
".\Functor_T.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_FUNCT=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_FUNCT=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -6374,29 +7814,26 @@ DEP_CPP_FUNCT=\
".\Functor_T.cpp"\
".\Functor_T.h"\
".\Functor_T.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_FUNCT=\
- ".\ce.h"\
-
!ENDIF
@@ -6405,61 +7842,65 @@ NODEP_CPP_FUNCT=\
SOURCE=.\Get_Opt.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_GET_O=\
".\ACE.h"\
".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Get_Opt.h"\
".\Get_Opt.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_GET_O=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_GET_O=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Get_Opt.h"\
".\Get_Opt.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -6468,172 +7909,178 @@ DEP_CPP_GET_O=\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_GET_O=\
".\ACE.h"\
".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Get_Opt.h"\
".\Get_Opt.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_GET_O=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_GET_O=\
".\ACE.h"\
".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Get_Opt.h"\
".\Get_Opt.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_GET_O=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_GET_O=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Get_Opt.h"\
".\Get_Opt.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_GET_O=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_GET_O=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Get_Opt.h"\
".\Get_Opt.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_GET_O=\
- ".\ce.h"\
-
!ENDIF
@@ -6642,61 +8089,65 @@ NODEP_CPP_GET_O=\
SOURCE=.\Handle_Set.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_HANDL=\
".\ACE.h"\
".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_HANDL=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_HANDL=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -6705,172 +8156,178 @@ DEP_CPP_HANDL=\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_HANDL=\
".\ACE.h"\
".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_HANDL=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_HANDL=\
".\ACE.h"\
".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_HANDL=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_HANDL=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_HANDL=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_HANDL=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_HANDL=\
- ".\ce.h"\
-
!ENDIF
@@ -6879,42 +8336,70 @@ NODEP_CPP_HANDL=\
SOURCE=.\High_Res_Timer.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_HIGH_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.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"\
".\High_Res_Timer.h"\
".\High_Res_Timer.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"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\Stats.h"\
".\Stats.i"\
".\streams.h"\
@@ -6922,6 +8407,7 @@ DEP_CPP_HIGH_=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -6932,15 +8418,14 @@ DEP_CPP_HIGH_=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_HIGH_=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_HIGH_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Based_Pointer_Repository.h"\
".\Based_Pointer_T.cpp"\
@@ -6948,7 +8433,11 @@ DEP_CPP_HIGH_=\
".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -6964,7 +8453,6 @@ DEP_CPP_HIGH_=\
".\Free_List.i"\
".\High_Res_Timer.h"\
".\High_Res_Timer.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -6983,10 +8471,13 @@ DEP_CPP_HIGH_=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
".\Singleton.cpp"\
@@ -6999,6 +8490,7 @@ DEP_CPP_HIGH_=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -7010,42 +8502,70 @@ DEP_CPP_HIGH_=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_HIGH_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.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"\
".\High_Res_Timer.h"\
".\High_Res_Timer.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"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\Stats.h"\
".\Stats.i"\
".\streams.h"\
@@ -7053,6 +8573,7 @@ DEP_CPP_HIGH_=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -7063,46 +8584,71 @@ DEP_CPP_HIGH_=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_HIGH_=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_HIGH_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.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"\
".\High_Res_Timer.h"\
".\High_Res_Timer.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"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\Stats.h"\
".\Stats.i"\
".\streams.h"\
@@ -7110,6 +8656,7 @@ DEP_CPP_HIGH_=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -7120,20 +8667,26 @@ DEP_CPP_HIGH_=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_HIGH_=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_HIGH_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -7149,7 +8702,6 @@ DEP_CPP_HIGH_=\
".\Free_List.i"\
".\High_Res_Timer.h"\
".\High_Res_Timer.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -7168,14 +8720,18 @@ DEP_CPP_HIGH_=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\Stats.h"\
".\Stats.i"\
".\streams.h"\
@@ -7183,6 +8739,7 @@ DEP_CPP_HIGH_=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -7193,20 +8750,26 @@ DEP_CPP_HIGH_=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_HIGH_=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_HIGH_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -7222,7 +8785,6 @@ DEP_CPP_HIGH_=\
".\Free_List.i"\
".\High_Res_Timer.h"\
".\High_Res_Timer.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -7241,14 +8803,18 @@ DEP_CPP_HIGH_=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\Stats.h"\
".\Stats.i"\
".\streams.h"\
@@ -7256,6 +8822,7 @@ DEP_CPP_HIGH_=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -7266,9 +8833,6 @@ DEP_CPP_HIGH_=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_HIGH_=\
- ".\ce.h"\
-
!ENDIF
@@ -7277,24 +8841,25 @@ NODEP_CPP_HIGH_=\
SOURCE=.\INET_Addr.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_INET_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -7302,38 +8867,41 @@ DEP_CPP_INET_=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_INET_=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_INET_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -7344,33 +8912,38 @@ DEP_CPP_INET_=\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_INET_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -7378,42 +8951,41 @@ DEP_CPP_INET_=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_INET_=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_INET_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -7421,39 +8993,41 @@ DEP_CPP_INET_=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_INET_=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_INET_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -7461,39 +9035,41 @@ DEP_CPP_INET_=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_INET_=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_INET_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -7501,23 +9077,21 @@ DEP_CPP_INET_=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_INET_=\
- ".\ce.h"\
-
!ENDIF
@@ -7526,17 +9100,17 @@ NODEP_CPP_INET_=\
SOURCE=.\IO_Cntl_Msg.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
!ENDIF
@@ -7545,22 +9119,23 @@ SOURCE=.\IO_Cntl_Msg.cpp
SOURCE=.\IO_SAP.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_IO_SA=\
".\ACE.h"\
".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\IO_SAP.h"\
".\IO_SAP.i"\
".\iosfwd.h"\
@@ -7568,36 +9143,39 @@ DEP_CPP_IO_SA=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_IO_SA=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_IO_SA=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\IO_SAP.h"\
".\IO_SAP.i"\
".\iosfwd.h"\
@@ -7608,31 +9186,36 @@ DEP_CPP_IO_SA=\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_IO_SA=\
".\ACE.h"\
".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\IO_SAP.h"\
".\IO_SAP.i"\
".\iosfwd.h"\
@@ -7640,40 +9223,39 @@ DEP_CPP_IO_SA=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_IO_SA=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_IO_SA=\
".\ACE.h"\
".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\IO_SAP.h"\
".\IO_SAP.i"\
".\iosfwd.h"\
@@ -7681,37 +9263,39 @@ DEP_CPP_IO_SA=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_IO_SA=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_IO_SA=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\IO_SAP.h"\
".\IO_SAP.i"\
".\iosfwd.h"\
@@ -7719,37 +9303,39 @@ DEP_CPP_IO_SA=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_IO_SA=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_IO_SA=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\IO_SAP.h"\
".\IO_SAP.i"\
".\iosfwd.h"\
@@ -7757,23 +9343,21 @@ DEP_CPP_IO_SA=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_IO_SA=\
- ".\ce.h"\
-
!ENDIF
@@ -7782,22 +9366,23 @@ NODEP_CPP_IO_SA=\
SOURCE=.\IPC_SAP.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_IPC_S=\
".\ACE.h"\
".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\IPC_SAP.h"\
".\IPC_SAP.i"\
@@ -7805,36 +9390,39 @@ DEP_CPP_IPC_S=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_IPC_S=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_IPC_S=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\IPC_SAP.h"\
".\IPC_SAP.i"\
@@ -7845,31 +9433,36 @@ DEP_CPP_IPC_S=\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_IPC_S=\
".\ACE.h"\
".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\IPC_SAP.h"\
".\IPC_SAP.i"\
@@ -7877,40 +9470,39 @@ DEP_CPP_IPC_S=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_IPC_S=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_IPC_S=\
".\ACE.h"\
".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\IPC_SAP.h"\
".\IPC_SAP.i"\
@@ -7918,37 +9510,39 @@ DEP_CPP_IPC_S=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_IPC_S=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_IPC_S=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\IPC_SAP.h"\
".\IPC_SAP.i"\
@@ -7956,37 +9550,39 @@ DEP_CPP_IPC_S=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_IPC_S=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_IPC_S=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\IPC_SAP.h"\
".\IPC_SAP.i"\
@@ -7994,23 +9590,21 @@ DEP_CPP_IPC_S=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_IPC_S=\
- ".\ce.h"\
-
!ENDIF
@@ -8019,33 +9613,40 @@ NODEP_CPP_IPC_S=\
SOURCE=.\Log_Msg.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_LOG_M=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -8068,12 +9669,19 @@ DEP_CPP_LOG_M=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Connector.h"\
@@ -8097,6 +9705,7 @@ DEP_CPP_LOG_M=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -8110,15 +9719,14 @@ DEP_CPP_LOG_M=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_LOG_M=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_LOG_M=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Atomic_Op.i"\
@@ -8128,7 +9736,11 @@ DEP_CPP_LOG_M=\
".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -8142,7 +9754,6 @@ DEP_CPP_LOG_M=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -8165,10 +9776,14 @@ DEP_CPP_LOG_M=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\Signal.h"\
".\Signal.i"\
".\Singleton.cpp"\
@@ -8197,6 +9812,7 @@ DEP_CPP_LOG_M=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -8211,33 +9827,40 @@ DEP_CPP_LOG_M=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_LOG_M=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -8260,12 +9883,19 @@ DEP_CPP_LOG_M=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Connector.h"\
@@ -8289,6 +9919,7 @@ DEP_CPP_LOG_M=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -8302,37 +9933,41 @@ DEP_CPP_LOG_M=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_LOG_M=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_LOG_M=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -8355,12 +9990,19 @@ DEP_CPP_LOG_M=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Connector.h"\
@@ -8384,6 +10026,7 @@ DEP_CPP_LOG_M=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -8397,22 +10040,28 @@ DEP_CPP_LOG_M=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_LOG_M=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_LOG_M=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -8426,7 +10075,6 @@ DEP_CPP_LOG_M=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -8449,12 +10097,19 @@ DEP_CPP_LOG_M=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Connector.h"\
@@ -8478,6 +10133,7 @@ DEP_CPP_LOG_M=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -8491,22 +10147,28 @@ DEP_CPP_LOG_M=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_LOG_M=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_LOG_M=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -8520,7 +10182,6 @@ DEP_CPP_LOG_M=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -8543,12 +10204,19 @@ DEP_CPP_LOG_M=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Connector.h"\
@@ -8572,6 +10240,7 @@ DEP_CPP_LOG_M=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -8585,9 +10254,6 @@ DEP_CPP_LOG_M=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_LOG_M=\
- ".\ce.h"\
-
!ENDIF
@@ -8596,57 +10262,61 @@ NODEP_CPP_LOG_M=\
SOURCE=.\Log_Record.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_LOG_R=\
".\ACE.h"\
".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_LOG_R=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_LOG_R=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -8655,164 +10325,170 @@ DEP_CPP_LOG_R=\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_LOG_R=\
".\ACE.h"\
".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_LOG_R=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_LOG_R=\
".\ACE.h"\
".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_LOG_R=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_LOG_R=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_LOG_R=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_LOG_R=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_LOG_R=\
- ".\ce.h"\
-
!ENDIF
@@ -8821,31 +10497,38 @@ NODEP_CPP_LOG_R=\
SOURCE=.\Malloc.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_MALLO=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -8864,19 +10547,24 @@ DEP_CPP_MALLO=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -8887,15 +10575,14 @@ DEP_CPP_MALLO=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_MALLO=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_MALLO=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Based_Pointer_Repository.h"\
".\Based_Pointer_T.cpp"\
@@ -8903,7 +10590,11 @@ DEP_CPP_MALLO=\
".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -8917,7 +10608,6 @@ DEP_CPP_MALLO=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -8936,10 +10626,13 @@ DEP_CPP_MALLO=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
".\Singleton.cpp"\
@@ -8950,6 +10643,7 @@ DEP_CPP_MALLO=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -8961,31 +10655,38 @@ DEP_CPP_MALLO=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_MALLO=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -9004,19 +10705,24 @@ DEP_CPP_MALLO=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -9027,35 +10733,39 @@ DEP_CPP_MALLO=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_MALLO=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_MALLO=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -9074,19 +10784,24 @@ DEP_CPP_MALLO=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -9097,20 +10812,26 @@ DEP_CPP_MALLO=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_MALLO=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_MALLO=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -9124,7 +10845,6 @@ DEP_CPP_MALLO=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -9143,19 +10863,24 @@ DEP_CPP_MALLO=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -9166,20 +10891,26 @@ DEP_CPP_MALLO=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_MALLO=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_MALLO=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -9193,7 +10924,6 @@ DEP_CPP_MALLO=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -9212,19 +10942,24 @@ DEP_CPP_MALLO=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -9235,9 +10970,6 @@ DEP_CPP_MALLO=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_MALLO=\
- ".\ce.h"\
-
!ENDIF
@@ -9246,59 +10978,63 @@ NODEP_CPP_MALLO=\
SOURCE=.\Mem_Map.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_MEM_M=\
".\ACE.h"\
".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
".\Mem_Map.h"\
".\Mem_Map.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_MEM_M=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_MEM_M=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -9309,172 +11045,178 @@ DEP_CPP_MEM_M=\
".\Managed_Object.i"\
".\Mem_Map.h"\
".\Mem_Map.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_MEM_M=\
".\ACE.h"\
".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
".\Mem_Map.h"\
".\Mem_Map.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_MEM_M=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_MEM_M=\
".\ACE.h"\
".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
".\Mem_Map.h"\
".\Mem_Map.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_MEM_M=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_MEM_M=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
".\Mem_Map.h"\
".\Mem_Map.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_MEM_M=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_MEM_M=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
".\Mem_Map.h"\
".\Mem_Map.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_MEM_M=\
- ".\ce.h"\
-
!ENDIF
@@ -9483,31 +11225,41 @@ NODEP_CPP_MEM_M=\
SOURCE=.\Memory_Pool.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_MEMOR=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -9526,19 +11278,24 @@ DEP_CPP_MEMOR=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -9549,15 +11306,14 @@ DEP_CPP_MEMOR=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_MEMOR=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_MEMOR=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
@@ -9568,7 +11324,11 @@ DEP_CPP_MEMOR=\
".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -9582,7 +11342,6 @@ DEP_CPP_MEMOR=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -9601,10 +11360,13 @@ DEP_CPP_MEMOR=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
".\Singleton.cpp"\
@@ -9615,6 +11377,7 @@ DEP_CPP_MEMOR=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -9626,31 +11389,41 @@ DEP_CPP_MEMOR=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_MEMOR=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -9669,19 +11442,24 @@ DEP_CPP_MEMOR=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -9692,35 +11470,42 @@ DEP_CPP_MEMOR=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_MEMOR=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_MEMOR=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -9739,19 +11524,24 @@ DEP_CPP_MEMOR=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -9762,23 +11552,29 @@ DEP_CPP_MEMOR=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_MEMOR=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_MEMOR=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -9792,7 +11588,6 @@ DEP_CPP_MEMOR=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -9811,19 +11606,24 @@ DEP_CPP_MEMOR=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -9834,23 +11634,29 @@ DEP_CPP_MEMOR=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_MEMOR=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_MEMOR=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -9864,7 +11670,6 @@ DEP_CPP_MEMOR=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -9883,19 +11688,24 @@ DEP_CPP_MEMOR=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -9906,9 +11716,6 @@ DEP_CPP_MEMOR=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_MEMOR=\
- ".\ce.h"\
-
!ENDIF
@@ -9917,31 +11724,40 @@ NODEP_CPP_MEMOR=\
SOURCE=.\Message_Block.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_MESSA=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -9962,19 +11778,27 @@ DEP_CPP_MESSA=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -9982,18 +11806,21 @@ DEP_CPP_MESSA=\
".\Synch_T.i"\
".\Thread.h"\
".\Thread.i"\
+ ".\Timeprobe.h"\
+ ".\Timeprobe.i"\
+ ".\Timeprobe_T.cpp"\
+ ".\Timeprobe_T.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_MESSA=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_MESSA=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Based_Pointer_Repository.h"\
".\Based_Pointer_T.cpp"\
@@ -10001,7 +11828,11 @@ DEP_CPP_MESSA=\
".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -10017,7 +11848,6 @@ DEP_CPP_MESSA=\
".\Free_List.i"\
".\High_Res_Timer.h"\
".\High_Res_Timer.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -10041,10 +11871,13 @@ DEP_CPP_MESSA=\
".\Message_Block_T.cpp"\
".\Message_Block_T.h"\
".\Message_Block_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
".\Singleton.cpp"\
@@ -10055,6 +11888,7 @@ DEP_CPP_MESSA=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -10070,31 +11904,40 @@ DEP_CPP_MESSA=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_MESSA=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -10115,19 +11958,27 @@ DEP_CPP_MESSA=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -10135,38 +11986,48 @@ DEP_CPP_MESSA=\
".\Synch_T.i"\
".\Thread.h"\
".\Thread.i"\
+ ".\Timeprobe.h"\
+ ".\Timeprobe.i"\
+ ".\Timeprobe_T.cpp"\
+ ".\Timeprobe_T.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_MESSA=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_MESSA=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -10187,19 +12048,27 @@ DEP_CPP_MESSA=\
".\Memory_Pool.i"\
".\Message_Block.h"\
".\Message_Block.i"\
+ ".\Message_Block_T.cpp"\
+ ".\Message_Block_T.h"\
+ ".\Message_Block_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -10207,23 +12076,33 @@ DEP_CPP_MESSA=\
".\Synch_T.i"\
".\Thread.h"\
".\Thread.i"\
+ ".\Timeprobe.h"\
+ ".\Timeprobe.i"\
+ ".\Timeprobe_T.cpp"\
+ ".\Timeprobe_T.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_MESSA=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_MESSA=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -10239,7 +12118,6 @@ DEP_CPP_MESSA=\
".\Free_List.i"\
".\High_Res_Timer.h"\
".\High_Res_Timer.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -10263,22 +12141,24 @@ DEP_CPP_MESSA=\
".\Message_Block_T.cpp"\
".\Message_Block_T.h"\
".\Message_Block_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
".\Singleton.cpp"\
".\Singleton.h"\
".\Singleton.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -10293,20 +12173,26 @@ DEP_CPP_MESSA=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_MESSA=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_MESSA=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -10322,7 +12208,6 @@ DEP_CPP_MESSA=\
".\Free_List.i"\
".\High_Res_Timer.h"\
".\High_Res_Timer.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -10346,22 +12231,24 @@ DEP_CPP_MESSA=\
".\Message_Block_T.cpp"\
".\Message_Block_T.h"\
".\Message_Block_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
".\Singleton.cpp"\
".\Singleton.h"\
".\Singleton.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -10376,9 +12263,6 @@ DEP_CPP_MESSA=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_MESSA=\
- ".\ce.h"\
-
!ENDIF
@@ -10387,15 +12271,25 @@ NODEP_CPP_MESSA=\
SOURCE=.\Message_Queue.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_MESSAG=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -10421,7 +12315,6 @@ DEP_CPP_MESSAG=\
".\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"\
".\Log_Msg.h"\
@@ -10451,10 +12344,13 @@ DEP_CPP_MESSAG=\
".\Message_Queue_T.cpp"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -10470,6 +12366,9 @@ DEP_CPP_MESSAG=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -10483,6 +12382,7 @@ DEP_CPP_MESSAG=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -10504,11 +12404,13 @@ DEP_CPP_MESSAG=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_MESSAG=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Based_Pointer_Repository.h"\
".\Based_Pointer_T.cpp"\
@@ -10516,7 +12418,11 @@ DEP_CPP_MESSAG=\
".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -10542,7 +12448,6 @@ DEP_CPP_MESSAG=\
".\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"\
".\Log_Msg.h"\
@@ -10572,10 +12477,13 @@ DEP_CPP_MESSAG=\
".\Message_Queue_T.cpp"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -10607,6 +12515,7 @@ DEP_CPP_MESSAG=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -10628,15 +12537,25 @@ DEP_CPP_MESSAG=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_MESSAG=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -10662,7 +12581,6 @@ DEP_CPP_MESSAG=\
".\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"\
".\Log_Msg.h"\
@@ -10692,10 +12610,13 @@ DEP_CPP_MESSAG=\
".\Message_Queue_T.cpp"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -10711,6 +12632,9 @@ DEP_CPP_MESSAG=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -10724,6 +12648,7 @@ DEP_CPP_MESSAG=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -10745,15 +12670,25 @@ DEP_CPP_MESSAG=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_MESSAG=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -10779,7 +12714,6 @@ DEP_CPP_MESSAG=\
".\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"\
".\Log_Msg.h"\
@@ -10809,10 +12743,13 @@ DEP_CPP_MESSAG=\
".\Message_Queue_T.cpp"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -10828,6 +12765,9 @@ DEP_CPP_MESSAG=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -10841,6 +12781,7 @@ DEP_CPP_MESSAG=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -10862,16 +12803,25 @@ DEP_CPP_MESSAG=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_MESSAG=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -10897,7 +12847,6 @@ DEP_CPP_MESSAG=\
".\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"\
".\Log_Msg.h"\
@@ -10927,10 +12876,13 @@ DEP_CPP_MESSAG=\
".\Message_Queue_T.cpp"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -10946,6 +12898,9 @@ DEP_CPP_MESSAG=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -10959,6 +12914,7 @@ DEP_CPP_MESSAG=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -10979,20 +12935,26 @@ DEP_CPP_MESSAG=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_MESSAG=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_MESSAG=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -11018,7 +12980,6 @@ DEP_CPP_MESSAG=\
".\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"\
".\Log_Msg.h"\
@@ -11048,10 +13009,13 @@ DEP_CPP_MESSAG=\
".\Message_Queue_T.cpp"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -11067,6 +13031,9 @@ DEP_CPP_MESSAG=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -11080,6 +13047,7 @@ DEP_CPP_MESSAG=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -11100,9 +13068,6 @@ DEP_CPP_MESSAG=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_MESSAG=\
- ".\ce.h"\
-
!ENDIF
@@ -11111,58 +13076,58 @@ NODEP_CPP_MESSAG=\
SOURCE=.\Method_Request.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_METHO=\
- ".\ACE.h"\
- ".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
".\Method_Request.h"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_METHO=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_METHO=\
- ".\ACE.h"\
- ".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -11172,168 +13137,166 @@ DEP_CPP_METHO=\
".\Managed_Object.h"\
".\Managed_Object.i"\
".\Method_Request.h"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_METHO=\
- ".\ACE.h"\
- ".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
".\Method_Request.h"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_METHO=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_METHO=\
- ".\ACE.h"\
- ".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
".\Method_Request.h"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_METHO=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_METHO=\
- ".\ACE.h"\
- ".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
".\Method_Request.h"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_METHO=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_METHO=\
- ".\ACE.h"\
- ".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
".\Method_Request.h"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_METHO=\
- ".\ce.h"\
-
!ENDIF
@@ -11342,28 +13305,39 @@ NODEP_CPP_METHO=\
SOURCE=.\Object_Manager.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_OBJEC=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
- ".\Array.h"\
+ ".\Asynch_IO.h"\
+ ".\Asynch_IO.i"\
+ ".\Asynch_IO_Impl.h"\
+ ".\Asynch_IO_Impl.i"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
@@ -11371,7 +13345,8 @@ DEP_CPP_OBJEC=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -11399,6 +13374,7 @@ DEP_CPP_OBJEC=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Name_Proxy.h"\
".\Name_Request_Reply.h"\
".\Name_Space.h"\
@@ -11407,6 +13383,11 @@ DEP_CPP_OBJEC=\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\Proactor.h"\
+ ".\Proactor.i"\
+ ".\QoS_Session.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -11420,6 +13401,9 @@ DEP_CPP_OBJEC=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Acceptor.h"\
@@ -11438,6 +13422,7 @@ DEP_CPP_OBJEC=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -11447,29 +13432,41 @@ DEP_CPP_OBJEC=\
".\Synch_T.i"\
".\Thread.h"\
".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
".\Time_Value.h"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
".\Timer_Queue.h"\
".\Timer_Queue_T.cpp"\
".\Timer_Queue_T.h"\
".\Timer_Queue_T.i"\
+ ".\Timer_Wheel.h"\
+ ".\Timer_Wheel_T.cpp"\
+ ".\Timer_Wheel_T.h"\
".\Token_Manager.h"\
".\Token_Manager.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_OBJEC=\
- ".\Array.cpp"\
- ".\Array.i"\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_OBJEC=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
+ ".\Asynch_IO.h"\
+ ".\Asynch_IO.i"\
+ ".\Asynch_IO_Impl.h"\
+ ".\Asynch_IO_Impl.i"\
".\Atomic_Op.i"\
".\Based_Pointer_Repository.h"\
".\Based_Pointer_T.cpp"\
@@ -11477,7 +13474,11 @@ DEP_CPP_OBJEC=\
".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -11493,7 +13494,8 @@ DEP_CPP_OBJEC=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -11521,6 +13523,7 @@ DEP_CPP_OBJEC=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Name_Proxy.h"\
".\Name_Request_Reply.h"\
".\Name_Space.h"\
@@ -11529,6 +13532,11 @@ DEP_CPP_OBJEC=\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\Proactor.h"\
+ ".\Proactor.i"\
+ ".\QoS_Session.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -11563,6 +13571,7 @@ DEP_CPP_OBJEC=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -11572,39 +13581,61 @@ DEP_CPP_OBJEC=\
".\Synch_T.i"\
".\Thread.h"\
".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
".\Time_Value.h"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
".\Timer_Queue.h"\
".\Timer_Queue_T.cpp"\
".\Timer_Queue_T.h"\
".\Timer_Queue_T.i"\
+ ".\Timer_Wheel.h"\
+ ".\Timer_Wheel_T.cpp"\
+ ".\Timer_Wheel_T.h"\
".\Token_Manager.h"\
".\Token_Manager.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_OBJEC=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
- ".\Array.h"\
+ ".\Asynch_IO.h"\
+ ".\Asynch_IO.i"\
+ ".\Asynch_IO_Impl.h"\
+ ".\Asynch_IO_Impl.i"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
@@ -11612,7 +13643,8 @@ DEP_CPP_OBJEC=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -11640,6 +13672,7 @@ DEP_CPP_OBJEC=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Name_Proxy.h"\
".\Name_Request_Reply.h"\
".\Name_Space.h"\
@@ -11648,6 +13681,11 @@ DEP_CPP_OBJEC=\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\Proactor.h"\
+ ".\Proactor.i"\
+ ".\QoS_Session.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -11661,6 +13699,9 @@ DEP_CPP_OBJEC=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Acceptor.h"\
@@ -11679,6 +13720,7 @@ DEP_CPP_OBJEC=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -11688,44 +13730,61 @@ DEP_CPP_OBJEC=\
".\Synch_T.i"\
".\Thread.h"\
".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
".\Time_Value.h"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
".\Timer_Queue.h"\
".\Timer_Queue_T.cpp"\
".\Timer_Queue_T.h"\
".\Timer_Queue_T.i"\
+ ".\Timer_Wheel.h"\
+ ".\Timer_Wheel_T.cpp"\
+ ".\Timer_Wheel_T.h"\
".\Token_Manager.h"\
".\Token_Manager.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_OBJEC=\
- ".\Array.cpp"\
- ".\Array.i"\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_OBJEC=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
- ".\Array.h"\
+ ".\Asynch_IO.h"\
+ ".\Asynch_IO.i"\
+ ".\Asynch_IO_Impl.h"\
+ ".\Asynch_IO_Impl.i"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
@@ -11733,7 +13792,8 @@ DEP_CPP_OBJEC=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -11761,6 +13821,7 @@ DEP_CPP_OBJEC=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Name_Proxy.h"\
".\Name_Request_Reply.h"\
".\Name_Space.h"\
@@ -11769,6 +13830,11 @@ DEP_CPP_OBJEC=\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\Proactor.h"\
+ ".\Proactor.i"\
+ ".\QoS_Session.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -11782,6 +13848,9 @@ DEP_CPP_OBJEC=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Acceptor.h"\
@@ -11800,6 +13869,7 @@ DEP_CPP_OBJEC=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -11809,34 +13879,53 @@ DEP_CPP_OBJEC=\
".\Synch_T.i"\
".\Thread.h"\
".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
".\Time_Value.h"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
".\Timer_Queue.h"\
".\Timer_Queue_T.cpp"\
".\Timer_Queue_T.h"\
".\Timer_Queue_T.i"\
+ ".\Timer_Wheel.h"\
+ ".\Timer_Wheel_T.cpp"\
+ ".\Timer_Wheel_T.h"\
".\Token_Manager.h"\
".\Token_Manager.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_OBJEC=\
- ".\Array.cpp"\
- ".\Array.i"\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_OBJEC=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
+ ".\Asynch_IO.h"\
+ ".\Asynch_IO.i"\
+ ".\Asynch_IO_Impl.h"\
+ ".\Asynch_IO_Impl.i"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -11852,7 +13941,8 @@ DEP_CPP_OBJEC=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -11880,6 +13970,7 @@ DEP_CPP_OBJEC=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Name_Proxy.h"\
".\Name_Request_Reply.h"\
".\Name_Space.h"\
@@ -11888,6 +13979,11 @@ DEP_CPP_OBJEC=\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\Proactor.h"\
+ ".\Proactor.i"\
+ ".\QoS_Session.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -11901,6 +13997,9 @@ DEP_CPP_OBJEC=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Acceptor.h"\
@@ -11919,6 +14018,7 @@ DEP_CPP_OBJEC=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -11928,32 +14028,53 @@ DEP_CPP_OBJEC=\
".\Synch_T.i"\
".\Thread.h"\
".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
".\Time_Value.h"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
".\Timer_Queue.h"\
".\Timer_Queue_T.cpp"\
".\Timer_Queue_T.h"\
".\Timer_Queue_T.i"\
+ ".\Timer_Wheel.h"\
+ ".\Timer_Wheel_T.cpp"\
+ ".\Timer_Wheel_T.h"\
".\Token_Manager.h"\
".\Token_Manager.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_OBJEC=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_OBJEC=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
+ ".\Asynch_IO.h"\
+ ".\Asynch_IO.i"\
+ ".\Asynch_IO_Impl.h"\
+ ".\Asynch_IO_Impl.i"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -11969,7 +14090,8 @@ DEP_CPP_OBJEC=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -11997,6 +14119,7 @@ DEP_CPP_OBJEC=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Name_Proxy.h"\
".\Name_Request_Reply.h"\
".\Name_Space.h"\
@@ -12005,6 +14128,11 @@ DEP_CPP_OBJEC=\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\Proactor.h"\
+ ".\Proactor.i"\
+ ".\QoS_Session.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -12018,6 +14146,9 @@ DEP_CPP_OBJEC=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Acceptor.h"\
@@ -12036,6 +14167,7 @@ DEP_CPP_OBJEC=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -12045,19 +14177,27 @@ DEP_CPP_OBJEC=\
".\Synch_T.i"\
".\Thread.h"\
".\Thread.i"\
+ ".\Thread_Manager.h"\
+ ".\Thread_Manager.i"\
".\Time_Value.h"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
".\Timer_Queue.h"\
".\Timer_Queue_T.cpp"\
".\Timer_Queue_T.h"\
".\Timer_Queue_T.i"\
+ ".\Timer_Wheel.h"\
+ ".\Timer_Wheel_T.cpp"\
+ ".\Timer_Wheel_T.h"\
".\Token_Manager.h"\
".\Token_Manager.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_OBJEC=\
- ".\ce.h"\
-
!ENDIF
@@ -12066,31 +14206,38 @@ NODEP_CPP_OBJEC=\
SOURCE=.\Obstack.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_OBSTA=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -12109,21 +14256,26 @@ DEP_CPP_OBSTA=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\Obstack.h"\
".\Obstack.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -12134,15 +14286,14 @@ DEP_CPP_OBSTA=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_OBSTA=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_OBSTA=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Based_Pointer_Repository.h"\
".\Based_Pointer_T.cpp"\
@@ -12150,7 +14301,11 @@ DEP_CPP_OBSTA=\
".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -12164,7 +14319,6 @@ DEP_CPP_OBSTA=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -12183,12 +14337,15 @@ DEP_CPP_OBSTA=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\Obstack.h"\
".\Obstack.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
".\Singleton.cpp"\
@@ -12199,6 +14356,7 @@ DEP_CPP_OBSTA=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -12210,31 +14368,38 @@ DEP_CPP_OBSTA=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_OBSTA=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -12253,21 +14418,26 @@ DEP_CPP_OBSTA=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\Obstack.h"\
".\Obstack.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -12278,35 +14448,39 @@ DEP_CPP_OBSTA=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_OBSTA=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_OBSTA=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -12325,21 +14499,26 @@ DEP_CPP_OBSTA=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\Obstack.h"\
".\Obstack.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -12350,20 +14529,26 @@ DEP_CPP_OBSTA=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_OBSTA=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_OBSTA=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -12377,7 +14562,6 @@ DEP_CPP_OBSTA=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -12396,21 +14580,26 @@ DEP_CPP_OBSTA=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\Obstack.h"\
".\Obstack.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -12421,20 +14610,26 @@ DEP_CPP_OBSTA=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_OBSTA=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_OBSTA=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -12448,7 +14643,6 @@ DEP_CPP_OBSTA=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -12467,21 +14661,26 @@ DEP_CPP_OBSTA=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\Obstack.h"\
".\Obstack.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -12492,9 +14691,6 @@ DEP_CPP_OBSTA=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_OBSTA=\
- ".\ce.h"\
-
!ENDIF
@@ -12503,147 +14699,59 @@ NODEP_CPP_OBSTA=\
SOURCE=.\OS.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_OS_CP=\
- ".\ACE.h"\
- ".\ACE.i"\
- ".\ARGV.h"\
- ".\ARGV.i"\
- ".\Array.h"\
- ".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
- ".\Containers.h"\
- ".\Containers.i"\
- ".\Event_Handler.h"\
- ".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
- ".\Handle_Set.h"\
- ".\Handle_Set.i"\
- ".\Hash_Map_Manager.cpp"\
- ".\Hash_Map_Manager.h"\
- ".\inc_user_config.h"\
- ".\IO_Cntl_Msg.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"\
- ".\Message_Block.h"\
- ".\Message_Block.i"\
- ".\Message_Queue.h"\
- ".\Message_Queue.i"\
- ".\Message_Queue_T.cpp"\
- ".\Message_Queue_T.h"\
- ".\Message_Queue_T.i"\
- ".\Module.cpp"\
- ".\Module.h"\
- ".\Module.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Reactor.h"\
- ".\Reactor.i"\
- ".\Reactor_Impl.h"\
+ ".\post.h"\
+ ".\pre.h"\
".\Sched_Params.h"\
".\Sched_Params.i"\
- ".\Service_Config.h"\
- ".\Service_Config.i"\
- ".\Service_Object.h"\
- ".\Service_Object.i"\
- ".\Service_Repository.h"\
- ".\Service_Repository.i"\
- ".\Service_Types.h"\
- ".\Service_Types.i"\
- ".\Shared_Object.h"\
- ".\Shared_Object.i"\
- ".\Signal.h"\
- ".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
- ".\Strategies.h"\
- ".\Strategies.i"\
- ".\Strategies_T.cpp"\
- ".\Strategies_T.h"\
- ".\Strategies_T.i"\
- ".\Stream_Modules.cpp"\
- ".\Stream_Modules.h"\
- ".\Stream_Modules.i"\
".\streams.h"\
- ".\SV_Semaphore_Complex.h"\
- ".\SV_Semaphore_Complex.i"\
- ".\SV_Semaphore_Simple.h"\
- ".\SV_Semaphore_Simple.i"\
- ".\Svc_Conf_Tokens.h"\
- ".\Synch.h"\
- ".\Synch.i"\
- ".\Synch_Options.h"\
- ".\Synch_Options.i"\
- ".\Synch_T.cpp"\
- ".\Synch_T.h"\
- ".\Synch_T.i"\
- ".\Task.h"\
- ".\Task.i"\
- ".\Task_T.cpp"\
- ".\Task_T.h"\
- ".\Task_T.i"\
- ".\Thread.h"\
- ".\Thread.i"\
- ".\Thread_Manager.h"\
- ".\Thread_Manager.i"\
- ".\Timer_Queue.h"\
- ".\Timer_Queue_T.cpp"\
- ".\Timer_Queue_T.h"\
- ".\Timer_Queue_T.i"\
+ ".\svc_export.h"\
".\Trace.h"\
- ".\WFMO_Reactor.h"\
- ".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_OS_CP=\
- ".\Array.cpp"\
- ".\Array.i"\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_OS_CP=\
- ".\ACE.h"\
- ".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -12652,420 +14760,172 @@ DEP_CPP_OS_CP=\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Sched_Params.h"\
".\Sched_Params.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_OS_CP=\
- ".\ACE.h"\
- ".\ACE.i"\
- ".\ARGV.h"\
- ".\ARGV.i"\
- ".\Array.h"\
- ".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
- ".\Containers.h"\
- ".\Containers.i"\
- ".\Event_Handler.h"\
- ".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
- ".\Handle_Set.h"\
- ".\Handle_Set.i"\
- ".\Hash_Map_Manager.cpp"\
- ".\Hash_Map_Manager.h"\
- ".\inc_user_config.h"\
- ".\IO_Cntl_Msg.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"\
- ".\Message_Block.h"\
- ".\Message_Block.i"\
- ".\Message_Queue.h"\
- ".\Message_Queue.i"\
- ".\Message_Queue_T.cpp"\
- ".\Message_Queue_T.h"\
- ".\Message_Queue_T.i"\
- ".\Module.cpp"\
- ".\Module.h"\
- ".\Module.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Reactor.h"\
- ".\Reactor.i"\
- ".\Reactor_Impl.h"\
+ ".\post.h"\
+ ".\pre.h"\
".\Sched_Params.h"\
".\Sched_Params.i"\
- ".\Service_Config.h"\
- ".\Service_Config.i"\
- ".\Service_Object.h"\
- ".\Service_Object.i"\
- ".\Service_Repository.h"\
- ".\Service_Repository.i"\
- ".\Service_Types.h"\
- ".\Service_Types.i"\
- ".\Shared_Object.h"\
- ".\Shared_Object.i"\
- ".\Signal.h"\
- ".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
- ".\Strategies.h"\
- ".\Strategies.i"\
- ".\Strategies_T.cpp"\
- ".\Strategies_T.h"\
- ".\Strategies_T.i"\
- ".\Stream_Modules.cpp"\
- ".\Stream_Modules.h"\
- ".\Stream_Modules.i"\
".\streams.h"\
- ".\SV_Semaphore_Complex.h"\
- ".\SV_Semaphore_Complex.i"\
- ".\SV_Semaphore_Simple.h"\
- ".\SV_Semaphore_Simple.i"\
- ".\Svc_Conf_Tokens.h"\
- ".\Synch.h"\
- ".\Synch.i"\
- ".\Synch_Options.h"\
- ".\Synch_Options.i"\
- ".\Synch_T.cpp"\
- ".\Synch_T.h"\
- ".\Synch_T.i"\
- ".\Task.h"\
- ".\Task.i"\
- ".\Task_T.cpp"\
- ".\Task_T.h"\
- ".\Task_T.i"\
- ".\Thread.h"\
- ".\Thread.i"\
- ".\Thread_Manager.h"\
- ".\Thread_Manager.i"\
- ".\Timer_Queue.h"\
- ".\Timer_Queue_T.cpp"\
- ".\Timer_Queue_T.h"\
- ".\Timer_Queue_T.i"\
+ ".\svc_export.h"\
".\Trace.h"\
- ".\WFMO_Reactor.h"\
- ".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_OS_CP=\
- ".\Array.cpp"\
- ".\Array.i"\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_OS_CP=\
- ".\ACE.h"\
- ".\ACE.i"\
- ".\ARGV.h"\
- ".\ARGV.i"\
- ".\Array.h"\
- ".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Containers.cpp"\
- ".\Containers.h"\
- ".\Containers.i"\
- ".\Event_Handler.h"\
- ".\Event_Handler.i"\
- ".\Free_List.cpp"\
- ".\Free_List.h"\
- ".\Free_List.i"\
- ".\Handle_Set.h"\
- ".\Handle_Set.i"\
- ".\Hash_Map_Manager.cpp"\
- ".\Hash_Map_Manager.h"\
- ".\inc_user_config.h"\
- ".\IO_Cntl_Msg.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"\
- ".\Message_Block.h"\
- ".\Message_Block.i"\
- ".\Message_Queue.h"\
- ".\Message_Queue.i"\
- ".\Message_Queue_T.cpp"\
- ".\Message_Queue_T.h"\
- ".\Message_Queue_T.i"\
- ".\Module.cpp"\
- ".\Module.h"\
- ".\Module.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\Reactor.h"\
- ".\Reactor.i"\
- ".\Reactor_Impl.h"\
+ ".\post.h"\
+ ".\pre.h"\
".\Sched_Params.h"\
".\Sched_Params.i"\
- ".\Service_Config.h"\
- ".\Service_Config.i"\
- ".\Service_Object.h"\
- ".\Service_Object.i"\
- ".\Service_Repository.h"\
- ".\Service_Repository.i"\
- ".\Service_Types.h"\
- ".\Service_Types.i"\
- ".\Shared_Object.h"\
- ".\Shared_Object.i"\
- ".\Signal.h"\
- ".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
- ".\Strategies.h"\
- ".\Strategies.i"\
- ".\Strategies_T.cpp"\
- ".\Strategies_T.h"\
- ".\Strategies_T.i"\
- ".\Stream_Modules.cpp"\
- ".\Stream_Modules.h"\
- ".\Stream_Modules.i"\
".\streams.h"\
- ".\SV_Semaphore_Complex.h"\
- ".\SV_Semaphore_Complex.i"\
- ".\SV_Semaphore_Simple.h"\
- ".\SV_Semaphore_Simple.i"\
- ".\Svc_Conf_Tokens.h"\
- ".\Synch.h"\
- ".\Synch.i"\
- ".\Synch_Options.h"\
- ".\Synch_Options.i"\
- ".\Synch_T.cpp"\
- ".\Synch_T.h"\
- ".\Synch_T.i"\
- ".\Task.h"\
- ".\Task.i"\
- ".\Task_T.cpp"\
- ".\Task_T.h"\
- ".\Task_T.i"\
- ".\Thread.h"\
- ".\Thread.i"\
- ".\Thread_Manager.h"\
- ".\Thread_Manager.i"\
- ".\Timer_Queue.h"\
- ".\Timer_Queue_T.cpp"\
- ".\Timer_Queue_T.h"\
- ".\Timer_Queue_T.i"\
+ ".\svc_export.h"\
".\Trace.h"\
- ".\WFMO_Reactor.h"\
- ".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_OS_CP=\
- ".\Array.cpp"\
- ".\Array.i"\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_OS_CP=\
- ".\ACE.h"\
- ".\ACE.i"\
- ".\Atomic_Op.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.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"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Sched_Params.h"\
".\Sched_Params.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"\
- ".\Thread_Manager.h"\
- ".\Thread_Manager.i"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_OS_CP=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_OS_CP=\
- ".\ACE.h"\
- ".\ACE.i"\
- ".\Atomic_Op.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.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"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Sched_Params.h"\
".\Sched_Params.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"\
- ".\Thread_Manager.h"\
- ".\Thread_Manager.i"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_OS_CP=\
- ".\ce.h"\
-
!ENDIF
@@ -13074,35 +14934,50 @@ NODEP_CPP_OS_CP=\
SOURCE=.\Parse_Node.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_PARSE=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -13124,11 +14999,15 @@ 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"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Module.cpp"\
".\Module.h"\
".\Module.i"\
@@ -13138,6 +15017,8 @@ DEP_CPP_PARSE=\
".\OS.i"\
".\Parse_Node.h"\
".\Parse_Node.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -13153,6 +15034,9 @@ DEP_CPP_PARSE=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -13169,6 +15053,7 @@ DEP_CPP_PARSE=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -13194,15 +15079,14 @@ DEP_CPP_PARSE=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_PARSE=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_PARSE=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Based_Pointer_Repository.h"\
".\Based_Pointer_T.cpp"\
@@ -13210,7 +15094,11 @@ DEP_CPP_PARSE=\
".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -13236,7 +15124,6 @@ DEP_CPP_PARSE=\
".\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"\
".\Log_Msg.h"\
@@ -13266,6 +15153,7 @@ DEP_CPP_PARSE=\
".\Message_Queue_T.cpp"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Module.cpp"\
".\Module.h"\
".\Module.i"\
@@ -13275,6 +15163,8 @@ DEP_CPP_PARSE=\
".\OS.i"\
".\Parse_Node.h"\
".\Parse_Node.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -13309,6 +15199,7 @@ DEP_CPP_PARSE=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -13335,35 +15226,50 @@ DEP_CPP_PARSE=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_PARSE=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -13385,11 +15291,15 @@ 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"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Module.cpp"\
".\Module.h"\
".\Module.i"\
@@ -13399,6 +15309,8 @@ DEP_CPP_PARSE=\
".\OS.i"\
".\Parse_Node.h"\
".\Parse_Node.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -13414,6 +15326,9 @@ DEP_CPP_PARSE=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -13430,6 +15345,7 @@ DEP_CPP_PARSE=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -13455,39 +15371,51 @@ DEP_CPP_PARSE=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_PARSE=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_PARSE=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -13509,11 +15437,15 @@ 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"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Module.cpp"\
".\Module.h"\
".\Module.i"\
@@ -13523,6 +15455,8 @@ DEP_CPP_PARSE=\
".\OS.i"\
".\Parse_Node.h"\
".\Parse_Node.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -13538,6 +15472,9 @@ DEP_CPP_PARSE=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -13554,6 +15491,7 @@ DEP_CPP_PARSE=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -13579,20 +15517,26 @@ DEP_CPP_PARSE=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_PARSE=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_PARSE=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -13618,7 +15562,6 @@ DEP_CPP_PARSE=\
".\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"\
".\Log_Msg.h"\
@@ -13648,6 +15591,7 @@ DEP_CPP_PARSE=\
".\Message_Queue_T.cpp"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Module.cpp"\
".\Module.h"\
".\Module.i"\
@@ -13657,6 +15601,8 @@ DEP_CPP_PARSE=\
".\OS.i"\
".\Parse_Node.h"\
".\Parse_Node.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -13672,6 +15618,9 @@ DEP_CPP_PARSE=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -13688,6 +15637,7 @@ DEP_CPP_PARSE=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -13713,20 +15663,26 @@ DEP_CPP_PARSE=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_PARSE=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_PARSE=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -13752,7 +15708,6 @@ DEP_CPP_PARSE=\
".\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"\
".\Log_Msg.h"\
@@ -13782,6 +15737,7 @@ DEP_CPP_PARSE=\
".\Message_Queue_T.cpp"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Module.cpp"\
".\Module.h"\
".\Module.i"\
@@ -13791,6 +15747,8 @@ DEP_CPP_PARSE=\
".\OS.i"\
".\Parse_Node.h"\
".\Parse_Node.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -13806,6 +15764,9 @@ DEP_CPP_PARSE=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -13822,6 +15783,7 @@ DEP_CPP_PARSE=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -13847,9 +15809,6 @@ DEP_CPP_PARSE=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_PARSE=\
- ".\ce.h"\
-
!ENDIF
@@ -13858,24 +15817,25 @@ NODEP_CPP_PARSE=\
SOURCE=.\Pipe.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_PIPE_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -13885,16 +15845,19 @@ DEP_CPP_PIPE_=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
".\Pipe.h"\
".\Pipe.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Acceptor.h"\
@@ -13905,31 +15868,32 @@ DEP_CPP_PIPE_=\
".\SOCK_IO.i"\
".\SOCK_Stream.h"\
".\SOCK_Stream.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Time_Value.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_PIPE_=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_PIPE_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -13942,12 +15906,16 @@ DEP_CPP_PIPE_=\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
".\Pipe.h"\
".\Pipe.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Acceptor.h"\
@@ -13959,29 +15927,31 @@ DEP_CPP_PIPE_=\
".\SOCK_Stream.h"\
".\SOCK_Stream.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Time_Value.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_PIPE_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -13991,16 +15961,19 @@ DEP_CPP_PIPE_=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
".\Pipe.h"\
".\Pipe.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Acceptor.h"\
@@ -14011,35 +15984,32 @@ DEP_CPP_PIPE_=\
".\SOCK_IO.i"\
".\SOCK_Stream.h"\
".\SOCK_Stream.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Time_Value.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_PIPE_=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_PIPE_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -14049,16 +16019,19 @@ DEP_CPP_PIPE_=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
".\Pipe.h"\
".\Pipe.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Acceptor.h"\
@@ -14069,32 +16042,32 @@ DEP_CPP_PIPE_=\
".\SOCK_IO.i"\
".\SOCK_Stream.h"\
".\SOCK_Stream.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Time_Value.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_PIPE_=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_PIPE_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -14104,16 +16077,19 @@ DEP_CPP_PIPE_=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
".\Pipe.h"\
".\Pipe.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Acceptor.h"\
@@ -14124,32 +16100,32 @@ DEP_CPP_PIPE_=\
".\SOCK_IO.i"\
".\SOCK_Stream.h"\
".\SOCK_Stream.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Time_Value.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_PIPE_=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_PIPE_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -14159,16 +16135,19 @@ DEP_CPP_PIPE_=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
".\Pipe.h"\
".\Pipe.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Acceptor.h"\
@@ -14179,16 +16158,12 @@ DEP_CPP_PIPE_=\
".\SOCK_IO.i"\
".\SOCK_Stream.h"\
".\SOCK_Stream.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Time_Value.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_PIPE_=\
- ".\ce.h"\
-
!ENDIF
@@ -14197,33 +16172,40 @@ NODEP_CPP_PIPE_=\
SOURCE=.\Process.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_PROCE=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\ARGV.h"\
".\ARGV.i"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -14242,14 +16224,20 @@ DEP_CPP_PROCE=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Process.h"\
".\Process.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -14257,6 +16245,7 @@ DEP_CPP_PROCE=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -14267,15 +16256,14 @@ DEP_CPP_PROCE=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_PROCE=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_PROCE=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\ARGV.h"\
".\ARGV.i"\
".\Atomic_Op.i"\
@@ -14285,7 +16273,11 @@ DEP_CPP_PROCE=\
".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -14299,7 +16291,6 @@ DEP_CPP_PROCE=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -14318,10 +16309,13 @@ DEP_CPP_PROCE=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Process.h"\
".\Process.i"\
".\Signal.h"\
@@ -14336,6 +16330,7 @@ DEP_CPP_PROCE=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -14347,33 +16342,40 @@ DEP_CPP_PROCE=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_PROCE=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\ARGV.h"\
".\ARGV.i"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -14392,14 +16394,20 @@ DEP_CPP_PROCE=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Process.h"\
".\Process.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -14407,6 +16415,7 @@ DEP_CPP_PROCE=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -14417,37 +16426,41 @@ DEP_CPP_PROCE=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_PROCE=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_PROCE=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\ARGV.h"\
".\ARGV.i"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -14466,14 +16479,20 @@ DEP_CPP_PROCE=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Process.h"\
".\Process.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -14481,6 +16500,7 @@ DEP_CPP_PROCE=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -14491,22 +16511,28 @@ DEP_CPP_PROCE=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_PROCE=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_PROCE=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\ARGV.h"\
".\ARGV.i"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -14520,7 +16546,6 @@ DEP_CPP_PROCE=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -14539,14 +16564,20 @@ DEP_CPP_PROCE=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Process.h"\
".\Process.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -14554,6 +16585,7 @@ DEP_CPP_PROCE=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -14564,22 +16596,28 @@ DEP_CPP_PROCE=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_PROCE=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_PROCE=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\ARGV.h"\
".\ARGV.i"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -14593,7 +16631,6 @@ DEP_CPP_PROCE=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -14612,14 +16649,20 @@ DEP_CPP_PROCE=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Process.h"\
".\Process.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -14627,6 +16670,7 @@ DEP_CPP_PROCE=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -14637,9 +16681,6 @@ DEP_CPP_PROCE=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_PROCE=\
- ".\ce.h"\
-
!ENDIF
@@ -14648,42 +16689,77 @@ NODEP_CPP_PROCE=\
SOURCE=.\Process_Manager.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_PROCES=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.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"\
- ".\inc_user_config.h"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
".\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"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Process.h"\
".\Process.i"\
".\Process_Manager.h"\
".\Process_Manager.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -14691,6 +16767,7 @@ DEP_CPP_PROCES=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -14698,18 +16775,21 @@ DEP_CPP_PROCES=\
".\Synch_T.i"\
".\Thread.h"\
".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_PROCES=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_PROCES=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Based_Pointer_Repository.h"\
".\Based_Pointer_T.cpp"\
@@ -14717,7 +16797,11 @@ DEP_CPP_PROCES=\
".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -14733,7 +16817,6 @@ DEP_CPP_PROCES=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -14752,10 +16835,13 @@ DEP_CPP_PROCES=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Process.h"\
".\Process.i"\
".\Process_Manager.h"\
@@ -14775,6 +16861,7 @@ DEP_CPP_PROCES=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -14790,42 +16877,77 @@ DEP_CPP_PROCES=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_PROCES=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.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"\
- ".\inc_user_config.h"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
".\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"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Process.h"\
".\Process.i"\
".\Process_Manager.h"\
".\Process_Manager.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -14833,6 +16955,7 @@ DEP_CPP_PROCES=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -14840,49 +16963,85 @@ DEP_CPP_PROCES=\
".\Synch_T.i"\
".\Thread.h"\
".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_PROCES=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_PROCES=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.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"\
- ".\inc_user_config.h"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
".\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"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Process.h"\
".\Process.i"\
".\Process_Manager.h"\
".\Process_Manager.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -14890,6 +17049,7 @@ DEP_CPP_PROCES=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -14897,46 +17057,85 @@ DEP_CPP_PROCES=\
".\Synch_T.i"\
".\Thread.h"\
".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_PROCES=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_PROCES=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.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"\
- ".\inc_user_config.h"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
".\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"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Process.h"\
".\Process.i"\
".\Process_Manager.h"\
".\Process_Manager.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -14944,6 +17143,7 @@ DEP_CPP_PROCES=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -14951,46 +17151,85 @@ DEP_CPP_PROCES=\
".\Synch_T.i"\
".\Thread.h"\
".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_PROCES=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_PROCES=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.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"\
- ".\inc_user_config.h"\
+ ".\Free_List.cpp"\
+ ".\Free_List.h"\
+ ".\Free_List.i"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
".\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"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Process.h"\
".\Process.i"\
".\Process_Manager.h"\
".\Process_Manager.i"\
+ ".\Reactor.h"\
+ ".\Reactor.i"\
+ ".\Reactor_Impl.h"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -14998,6 +17237,7 @@ DEP_CPP_PROCES=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -15005,12 +17245,13 @@ DEP_CPP_PROCES=\
".\Synch_T.i"\
".\Thread.h"\
".\Thread.i"\
+ ".\Timer_Queue.h"\
+ ".\Timer_Queue_T.cpp"\
+ ".\Timer_Queue_T.h"\
+ ".\Timer_Queue_T.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_PROCES=\
- ".\ce.h"\
-
!ENDIF
@@ -15019,64 +17260,68 @@ NODEP_CPP_PROCES=\
SOURCE=.\Profile_Timer.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_PROFI=\
".\ACE.h"\
".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\High_Res_Timer.h"\
".\High_Res_Timer.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Profile_Timer.h"\
".\Profile_Timer.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Time_Value.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_PROFI=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_PROFI=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\High_Res_Timer.h"\
".\High_Res_Timer.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -15085,187 +17330,193 @@ DEP_CPP_PROFI=\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Profile_Timer.h"\
".\Profile_Timer.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Time_Value.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_PROFI=\
".\ACE.h"\
".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\High_Res_Timer.h"\
".\High_Res_Timer.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Profile_Timer.h"\
".\Profile_Timer.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Time_Value.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_PROFI=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_PROFI=\
".\ACE.h"\
".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\High_Res_Timer.h"\
".\High_Res_Timer.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Profile_Timer.h"\
".\Profile_Timer.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Time_Value.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_PROFI=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_PROFI=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\High_Res_Timer.h"\
".\High_Res_Timer.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Profile_Timer.h"\
".\Profile_Timer.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Time_Value.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_PROFI=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_PROFI=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\High_Res_Timer.h"\
".\High_Res_Timer.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Profile_Timer.h"\
".\Profile_Timer.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Time_Value.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_PROFI=\
- ".\ce.h"\
-
!ENDIF
@@ -15274,35 +17525,50 @@ NODEP_CPP_PROFI=\
SOURCE=.\Reactor.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_REACT=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
".\Local_Tokens.h"\
@@ -15329,11 +17595,15 @@ 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"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Msg_WFMO_Reactor.h"\
".\Msg_WFMO_Reactor.i"\
".\Object_Manager.h"\
@@ -15342,11 +17612,18 @@ DEP_CPP_REACT=\
".\OS.i"\
".\Pipe.h"\
".\Pipe.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
".\Select_Reactor.h"\
".\Select_Reactor.i"\
+ ".\Select_Reactor_Base.h"\
+ ".\Select_Reactor_Base.i"\
+ ".\Select_Reactor_T.cpp"\
+ ".\Select_Reactor_T.h"\
+ ".\Select_Reactor_T.i"\
".\Service_Config.h"\
".\Service_Config.i"\
".\Service_Object.h"\
@@ -15359,6 +17636,9 @@ DEP_CPP_REACT=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -15372,6 +17652,7 @@ DEP_CPP_REACT=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -15383,6 +17664,9 @@ DEP_CPP_REACT=\
".\Thread.i"\
".\Thread_Manager.h"\
".\Thread_Manager.i"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
".\Timer_Queue.h"\
".\Timer_Queue_T.cpp"\
".\Timer_Queue_T.h"\
@@ -15396,15 +17680,14 @@ DEP_CPP_REACT=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_REACT=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_REACT=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Based_Pointer_Repository.h"\
".\Based_Pointer_T.cpp"\
@@ -15412,7 +17695,11 @@ DEP_CPP_REACT=\
".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -15438,7 +17725,6 @@ DEP_CPP_REACT=\
".\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"\
".\Local_Tokens.h"\
@@ -15473,6 +17759,7 @@ DEP_CPP_REACT=\
".\Message_Queue_T.cpp"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Msg_WFMO_Reactor.h"\
".\Msg_WFMO_Reactor.i"\
".\Object_Manager.h"\
@@ -15481,6 +17768,8 @@ DEP_CPP_REACT=\
".\OS.i"\
".\Pipe.h"\
".\Pipe.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -15519,6 +17808,7 @@ DEP_CPP_REACT=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -15547,35 +17837,50 @@ DEP_CPP_REACT=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_REACT=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
".\Local_Tokens.h"\
@@ -15602,11 +17907,15 @@ 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"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Msg_WFMO_Reactor.h"\
".\Msg_WFMO_Reactor.i"\
".\Object_Manager.h"\
@@ -15615,11 +17924,18 @@ DEP_CPP_REACT=\
".\OS.i"\
".\Pipe.h"\
".\Pipe.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
".\Select_Reactor.h"\
".\Select_Reactor.i"\
+ ".\Select_Reactor_Base.h"\
+ ".\Select_Reactor_Base.i"\
+ ".\Select_Reactor_T.cpp"\
+ ".\Select_Reactor_T.h"\
+ ".\Select_Reactor_T.i"\
".\Service_Config.h"\
".\Service_Config.i"\
".\Service_Object.h"\
@@ -15632,6 +17948,9 @@ DEP_CPP_REACT=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -15645,6 +17964,7 @@ DEP_CPP_REACT=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -15656,6 +17976,9 @@ DEP_CPP_REACT=\
".\Thread.i"\
".\Thread_Manager.h"\
".\Thread_Manager.i"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
".\Timer_Queue.h"\
".\Timer_Queue_T.cpp"\
".\Timer_Queue_T.h"\
@@ -15669,39 +17992,51 @@ DEP_CPP_REACT=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_REACT=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_REACT=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
".\Local_Tokens.h"\
@@ -15728,11 +18063,15 @@ 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"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Msg_WFMO_Reactor.h"\
".\Msg_WFMO_Reactor.i"\
".\Object_Manager.h"\
@@ -15741,11 +18080,18 @@ DEP_CPP_REACT=\
".\OS.i"\
".\Pipe.h"\
".\Pipe.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
".\Select_Reactor.h"\
".\Select_Reactor.i"\
+ ".\Select_Reactor_Base.h"\
+ ".\Select_Reactor_Base.i"\
+ ".\Select_Reactor_T.cpp"\
+ ".\Select_Reactor_T.h"\
+ ".\Select_Reactor_T.i"\
".\Service_Config.h"\
".\Service_Config.i"\
".\Service_Object.h"\
@@ -15758,6 +18104,9 @@ DEP_CPP_REACT=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -15771,6 +18120,7 @@ DEP_CPP_REACT=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -15782,6 +18132,9 @@ DEP_CPP_REACT=\
".\Thread.i"\
".\Thread_Manager.h"\
".\Thread_Manager.i"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
".\Timer_Queue.h"\
".\Timer_Queue_T.cpp"\
".\Timer_Queue_T.h"\
@@ -15795,20 +18148,26 @@ DEP_CPP_REACT=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_REACT=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_REACT=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -15834,7 +18193,6 @@ DEP_CPP_REACT=\
".\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"\
".\Local_Tokens.h"\
@@ -15869,6 +18227,7 @@ DEP_CPP_REACT=\
".\Message_Queue_T.cpp"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Msg_WFMO_Reactor.h"\
".\Msg_WFMO_Reactor.i"\
".\Object_Manager.h"\
@@ -15877,6 +18236,8 @@ DEP_CPP_REACT=\
".\OS.i"\
".\Pipe.h"\
".\Pipe.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -15899,6 +18260,9 @@ DEP_CPP_REACT=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -15912,6 +18276,7 @@ DEP_CPP_REACT=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -15939,20 +18304,26 @@ DEP_CPP_REACT=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_REACT=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_REACT=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -15978,7 +18349,6 @@ DEP_CPP_REACT=\
".\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"\
".\Local_Tokens.h"\
@@ -16013,6 +18383,7 @@ DEP_CPP_REACT=\
".\Message_Queue_T.cpp"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Msg_WFMO_Reactor.h"\
".\Msg_WFMO_Reactor.i"\
".\Object_Manager.h"\
@@ -16021,6 +18392,8 @@ DEP_CPP_REACT=\
".\OS.i"\
".\Pipe.h"\
".\Pipe.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -16043,6 +18416,9 @@ DEP_CPP_REACT=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -16056,6 +18432,7 @@ DEP_CPP_REACT=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -16083,9 +18460,6 @@ DEP_CPP_REACT=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_REACT=\
- ".\ce.h"\
-
!ENDIF
@@ -16094,59 +18468,59 @@ NODEP_CPP_REACT=\
SOURCE=.\Sched_Params.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_SCHED=\
- ".\ACE.h"\
- ".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Sched_Params.h"\
".\Sched_Params.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SCHED=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_SCHED=\
- ".\ACE.h"\
- ".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -16155,174 +18529,172 @@ DEP_CPP_SCHED=\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Sched_Params.h"\
".\Sched_Params.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_SCHED=\
- ".\ACE.h"\
- ".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Sched_Params.h"\
".\Sched_Params.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SCHED=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_SCHED=\
- ".\ACE.h"\
- ".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Sched_Params.h"\
".\Sched_Params.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SCHED=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_SCHED=\
- ".\ACE.h"\
- ".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Sched_Params.h"\
".\Sched_Params.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SCHED=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_SCHED=\
- ".\ACE.h"\
- ".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Sched_Params.h"\
".\Sched_Params.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SCHED=\
- ".\ce.h"\
-
!ENDIF
@@ -16331,27 +18703,33 @@ NODEP_CPP_SCHED=\
SOURCE=.\Select_Reactor.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_SELEC=\
".\ACE.h"\
".\ACE.i"\
- ".\Addr.h"\
- ".\Addr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
@@ -16359,12 +18737,7 @@ DEP_CPP_SELEC=\
".\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"\
".\Local_Tokens.h"\
".\Local_Tokens.i"\
".\Log_Msg.h"\
@@ -16387,17 +18760,25 @@ DEP_CPP_SELEC=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
".\Pipe.h"\
".\Pipe.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
".\Select_Reactor.h"\
".\Select_Reactor.i"\
+ ".\Select_Reactor_Base.h"\
+ ".\Select_Reactor_Base.i"\
+ ".\Select_Reactor_T.cpp"\
+ ".\Select_Reactor_T.h"\
+ ".\Select_Reactor_T.i"\
".\Service_Config.h"\
".\Service_Config.i"\
".\Service_Object.h"\
@@ -16406,16 +18787,9 @@ DEP_CPP_SELEC=\
".\Shared_Object.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"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -16424,6 +18798,7 @@ DEP_CPP_SELEC=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -16433,7 +18808,6 @@ DEP_CPP_SELEC=\
".\Synch_T.i"\
".\Thread.h"\
".\Thread.i"\
- ".\Time_Value.h"\
".\Timer_Heap.h"\
".\Timer_Heap_T.cpp"\
".\Timer_Heap_T.h"\
@@ -16446,15 +18820,14 @@ DEP_CPP_SELEC=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SELEC=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_SELEC=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Based_Pointer_Repository.h"\
".\Based_Pointer_T.cpp"\
@@ -16462,7 +18835,11 @@ DEP_CPP_SELEC=\
".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -16478,7 +18855,6 @@ DEP_CPP_SELEC=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Local_Tokens.h"\
".\Local_Tokens.i"\
@@ -16502,12 +18878,15 @@ DEP_CPP_SELEC=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
".\Pipe.h"\
".\Pipe.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -16537,6 +18916,7 @@ DEP_CPP_SELEC=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -16559,27 +18939,33 @@ DEP_CPP_SELEC=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_SELEC=\
".\ACE.h"\
".\ACE.i"\
- ".\Addr.h"\
- ".\Addr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
@@ -16587,12 +18973,7 @@ DEP_CPP_SELEC=\
".\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"\
".\Local_Tokens.h"\
".\Local_Tokens.i"\
".\Log_Msg.h"\
@@ -16615,17 +18996,25 @@ DEP_CPP_SELEC=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
".\Pipe.h"\
".\Pipe.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
".\Select_Reactor.h"\
".\Select_Reactor.i"\
+ ".\Select_Reactor_Base.h"\
+ ".\Select_Reactor_Base.i"\
+ ".\Select_Reactor_T.cpp"\
+ ".\Select_Reactor_T.h"\
+ ".\Select_Reactor_T.i"\
".\Service_Config.h"\
".\Service_Config.i"\
".\Service_Object.h"\
@@ -16634,16 +19023,9 @@ DEP_CPP_SELEC=\
".\Shared_Object.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"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -16652,6 +19034,7 @@ DEP_CPP_SELEC=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -16661,7 +19044,6 @@ DEP_CPP_SELEC=\
".\Synch_T.i"\
".\Thread.h"\
".\Thread.i"\
- ".\Time_Value.h"\
".\Timer_Heap.h"\
".\Timer_Heap_T.cpp"\
".\Timer_Heap_T.h"\
@@ -16674,31 +19056,34 @@ DEP_CPP_SELEC=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SELEC=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_SELEC=\
".\ACE.h"\
".\ACE.i"\
- ".\Addr.h"\
- ".\Addr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
@@ -16706,12 +19091,7 @@ DEP_CPP_SELEC=\
".\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"\
".\Local_Tokens.h"\
".\Local_Tokens.i"\
".\Log_Msg.h"\
@@ -16734,17 +19114,25 @@ DEP_CPP_SELEC=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
".\Pipe.h"\
".\Pipe.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
".\Select_Reactor.h"\
".\Select_Reactor.i"\
+ ".\Select_Reactor_Base.h"\
+ ".\Select_Reactor_Base.i"\
+ ".\Select_Reactor_T.cpp"\
+ ".\Select_Reactor_T.h"\
+ ".\Select_Reactor_T.i"\
".\Service_Config.h"\
".\Service_Config.i"\
".\Service_Object.h"\
@@ -16753,16 +19141,9 @@ DEP_CPP_SELEC=\
".\Shared_Object.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"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -16771,6 +19152,7 @@ DEP_CPP_SELEC=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -16780,7 +19162,6 @@ DEP_CPP_SELEC=\
".\Synch_T.i"\
".\Thread.h"\
".\Thread.i"\
- ".\Time_Value.h"\
".\Timer_Heap.h"\
".\Timer_Heap_T.cpp"\
".\Timer_Heap_T.h"\
@@ -16793,20 +19174,26 @@ DEP_CPP_SELEC=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SELEC=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_SELEC=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -16822,7 +19209,6 @@ DEP_CPP_SELEC=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Local_Tokens.h"\
".\Local_Tokens.i"\
@@ -16846,12 +19232,15 @@ DEP_CPP_SELEC=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
".\Pipe.h"\
".\Pipe.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -16870,6 +19259,9 @@ DEP_CPP_SELEC=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -16878,6 +19270,7 @@ DEP_CPP_SELEC=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -16899,20 +19292,26 @@ DEP_CPP_SELEC=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SELEC=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_SELEC=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -16928,7 +19327,6 @@ DEP_CPP_SELEC=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Local_Tokens.h"\
".\Local_Tokens.i"\
@@ -16952,12 +19350,15 @@ DEP_CPP_SELEC=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
".\Pipe.h"\
".\Pipe.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -16976,6 +19377,9 @@ DEP_CPP_SELEC=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -16984,6 +19388,7 @@ DEP_CPP_SELEC=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -17005,9 +19410,6 @@ DEP_CPP_SELEC=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SELEC=\
- ".\ce.h"\
-
!ENDIF
@@ -17016,17 +19418,27 @@ NODEP_CPP_SELEC=\
SOURCE=.\Select_Reactor_Base.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_SELECT=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -17042,7 +19454,6 @@ DEP_CPP_SELECT=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -17065,12 +19476,16 @@ DEP_CPP_SELECT=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
".\Pipe.h"\
".\Pipe.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -17078,6 +19493,9 @@ DEP_CPP_SELECT=\
".\Select_Reactor_Base.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Acceptor.h"\
@@ -17093,6 +19511,7 @@ DEP_CPP_SELECT=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -17114,11 +19533,13 @@ DEP_CPP_SELECT=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_SELECT=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Atomic_Op.i"\
@@ -17128,7 +19549,11 @@ DEP_CPP_SELECT=\
".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -17144,7 +19569,6 @@ DEP_CPP_SELECT=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -17167,12 +19591,16 @@ DEP_CPP_SELECT=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
".\Pipe.h"\
".\Pipe.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -17198,6 +19626,7 @@ DEP_CPP_SELECT=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -17219,17 +19648,27 @@ DEP_CPP_SELECT=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_SELECT=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -17245,7 +19684,6 @@ DEP_CPP_SELECT=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -17268,12 +19706,16 @@ DEP_CPP_SELECT=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
".\Pipe.h"\
".\Pipe.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -17281,6 +19723,9 @@ DEP_CPP_SELECT=\
".\Select_Reactor_Base.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Acceptor.h"\
@@ -17296,6 +19741,7 @@ DEP_CPP_SELECT=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -17317,17 +19763,27 @@ DEP_CPP_SELECT=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_SELECT=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -17343,7 +19799,6 @@ DEP_CPP_SELECT=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -17366,12 +19821,16 @@ DEP_CPP_SELECT=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
".\Pipe.h"\
".\Pipe.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -17379,6 +19838,9 @@ DEP_CPP_SELECT=\
".\Select_Reactor_Base.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Acceptor.h"\
@@ -17394,6 +19856,7 @@ DEP_CPP_SELECT=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -17415,18 +19878,27 @@ DEP_CPP_SELECT=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_SELECT=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -17442,7 +19914,6 @@ DEP_CPP_SELECT=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -17465,12 +19936,16 @@ DEP_CPP_SELECT=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
".\Pipe.h"\
".\Pipe.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -17478,6 +19953,9 @@ DEP_CPP_SELECT=\
".\Select_Reactor_Base.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Acceptor.h"\
@@ -17488,13 +19966,12 @@ DEP_CPP_SELECT=\
".\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"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -17515,22 +19992,28 @@ DEP_CPP_SELECT=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SELECT=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_SELECT=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -17546,7 +20029,6 @@ DEP_CPP_SELECT=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -17569,12 +20051,16 @@ DEP_CPP_SELECT=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
".\Pipe.h"\
".\Pipe.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -17582,6 +20068,9 @@ DEP_CPP_SELECT=\
".\Select_Reactor_Base.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Acceptor.h"\
@@ -17592,13 +20081,12 @@ DEP_CPP_SELECT=\
".\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"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -17619,9 +20107,6 @@ DEP_CPP_SELECT=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SELECT=\
- ".\ce.h"\
-
!ENDIF
@@ -17630,31 +20115,44 @@ NODEP_CPP_SELECT=\
SOURCE=.\Service_Config.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_SERVI=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\ARGV.h"\
".\ARGV.i"\
".\Asynch_IO.h"\
".\Asynch_IO.i"\
+ ".\Asynch_IO_Impl.h"\
+ ".\Asynch_IO_Impl.i"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
@@ -17666,7 +20164,6 @@ DEP_CPP_SERVI=\
".\Handle_Set.i"\
".\High_Res_Timer.h"\
".\High_Res_Timer.i"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -17689,6 +20186,7 @@ DEP_CPP_SERVI=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\Obstack.h"\
@@ -17697,8 +20195,11 @@ DEP_CPP_SERVI=\
".\OS.i"\
".\Parse_Node.h"\
".\Parse_Node.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Proactor.h"\
".\Proactor.i"\
+ ".\QoS_Session.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -17716,6 +20217,9 @@ DEP_CPP_SERVI=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Acceptor.h"\
@@ -17733,6 +20237,7 @@ DEP_CPP_SERVI=\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf.h"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -17759,15 +20264,14 @@ DEP_CPP_SERVI=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SERVI=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_SERVI=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\ARGV.h"\
@@ -17786,7 +20290,11 @@ DEP_CPP_SERVI=\
".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -17806,7 +20314,6 @@ DEP_CPP_SERVI=\
".\Handle_Set.i"\
".\High_Res_Timer.h"\
".\High_Res_Timer.i"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -17829,6 +20336,7 @@ DEP_CPP_SERVI=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\Obstack.h"\
@@ -17837,8 +20345,11 @@ DEP_CPP_SERVI=\
".\OS.i"\
".\Parse_Node.h"\
".\Parse_Node.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Proactor.h"\
".\Proactor.i"\
+ ".\QoS_Session.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -17876,6 +20387,7 @@ DEP_CPP_SERVI=\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf.h"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -17903,31 +20415,44 @@ DEP_CPP_SERVI=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_SERVI=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\ARGV.h"\
".\ARGV.i"\
".\Asynch_IO.h"\
".\Asynch_IO.i"\
+ ".\Asynch_IO_Impl.h"\
+ ".\Asynch_IO_Impl.i"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
@@ -17939,7 +20464,6 @@ DEP_CPP_SERVI=\
".\Handle_Set.i"\
".\High_Res_Timer.h"\
".\High_Res_Timer.i"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -17962,6 +20486,7 @@ DEP_CPP_SERVI=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\Obstack.h"\
@@ -17970,8 +20495,11 @@ DEP_CPP_SERVI=\
".\OS.i"\
".\Parse_Node.h"\
".\Parse_Node.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Proactor.h"\
".\Proactor.i"\
+ ".\QoS_Session.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -17989,6 +20517,9 @@ DEP_CPP_SERVI=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Acceptor.h"\
@@ -18006,6 +20537,7 @@ DEP_CPP_SERVI=\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf.h"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -18032,35 +20564,45 @@ DEP_CPP_SERVI=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SERVI=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_SERVI=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\ARGV.h"\
".\ARGV.i"\
".\Asynch_IO.h"\
".\Asynch_IO.i"\
+ ".\Asynch_IO_Impl.h"\
+ ".\Asynch_IO_Impl.i"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
@@ -18072,7 +20614,6 @@ DEP_CPP_SERVI=\
".\Handle_Set.i"\
".\High_Res_Timer.h"\
".\High_Res_Timer.i"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -18095,6 +20636,7 @@ DEP_CPP_SERVI=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\Obstack.h"\
@@ -18103,8 +20645,11 @@ DEP_CPP_SERVI=\
".\OS.i"\
".\Parse_Node.h"\
".\Parse_Node.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Proactor.h"\
".\Proactor.i"\
+ ".\QoS_Session.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -18122,6 +20667,9 @@ DEP_CPP_SERVI=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Acceptor.h"\
@@ -18139,6 +20687,7 @@ DEP_CPP_SERVI=\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf.h"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -18165,15 +20714,14 @@ DEP_CPP_SERVI=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SERVI=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_SERVI=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\ARGV.h"\
@@ -18186,10 +20734,17 @@ DEP_CPP_SERVI=\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -18207,7 +20762,8 @@ DEP_CPP_SERVI=\
".\Get_Opt.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -18230,6 +20786,7 @@ DEP_CPP_SERVI=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\Obstack.h"\
@@ -18238,8 +20795,11 @@ DEP_CPP_SERVI=\
".\OS.i"\
".\Parse_Node.h"\
".\Parse_Node.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Proactor.h"\
".\Proactor.i"\
+ ".\QoS_Session.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -18257,6 +20817,9 @@ DEP_CPP_SERVI=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Acceptor.h"\
@@ -18274,6 +20837,7 @@ DEP_CPP_SERVI=\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf.h"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -18284,22 +20848,30 @@ DEP_CPP_SERVI=\
".\Thread_Manager.h"\
".\Thread_Manager.i"\
".\Time_Value.h"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
".\Timer_Queue.h"\
".\Timer_Queue_T.cpp"\
".\Timer_Queue_T.h"\
".\Timer_Queue_T.i"\
+ ".\Timer_Wheel.h"\
+ ".\Timer_Wheel_T.cpp"\
+ ".\Timer_Wheel_T.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SERVI=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_SERVI=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\ARGV.h"\
@@ -18312,10 +20884,17 @@ DEP_CPP_SERVI=\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -18333,7 +20912,8 @@ DEP_CPP_SERVI=\
".\Get_Opt.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
+ ".\High_Res_Timer.h"\
+ ".\High_Res_Timer.i"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -18356,6 +20936,7 @@ DEP_CPP_SERVI=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\Obstack.h"\
@@ -18364,8 +20945,11 @@ DEP_CPP_SERVI=\
".\OS.i"\
".\Parse_Node.h"\
".\Parse_Node.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Proactor.h"\
".\Proactor.i"\
+ ".\QoS_Session.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -18383,6 +20967,9 @@ DEP_CPP_SERVI=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Acceptor.h"\
@@ -18400,6 +20987,7 @@ DEP_CPP_SERVI=\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf.h"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -18410,16 +20998,22 @@ DEP_CPP_SERVI=\
".\Thread_Manager.h"\
".\Thread_Manager.i"\
".\Time_Value.h"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
+ ".\Timer_List.h"\
+ ".\Timer_List_T.cpp"\
+ ".\Timer_List_T.h"\
".\Timer_Queue.h"\
".\Timer_Queue_T.cpp"\
".\Timer_Queue_T.h"\
".\Timer_Queue_T.i"\
+ ".\Timer_Wheel.h"\
+ ".\Timer_Wheel_T.cpp"\
+ ".\Timer_Wheel_T.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SERVI=\
- ".\ce.h"\
-
!ENDIF
@@ -18428,39 +21022,54 @@ NODEP_CPP_SERVI=\
SOURCE=.\Service_Manager.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_SERVIC=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\IO_Cntl_Msg.h"\
@@ -18486,15 +21095,22 @@ 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"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -18512,6 +21128,9 @@ DEP_CPP_SERVIC=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Acceptor.h"\
@@ -18533,6 +21152,7 @@ DEP_CPP_SERVIC=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -18554,15 +21174,14 @@ DEP_CPP_SERVIC=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_SERVIC=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_SERVIC=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Atomic_Op.i"\
@@ -18572,7 +21191,11 @@ DEP_CPP_SERVIC=\
".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -18600,7 +21223,6 @@ DEP_CPP_SERVIC=\
".\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"\
".\IO_Cntl_Msg.h"\
@@ -18634,10 +21256,14 @@ DEP_CPP_SERVIC=\
".\Message_Queue_T.cpp"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -18679,6 +21305,7 @@ DEP_CPP_SERVIC=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -18701,39 +21328,54 @@ DEP_CPP_SERVIC=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_SERVIC=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\IO_Cntl_Msg.h"\
@@ -18759,15 +21401,22 @@ 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"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -18785,6 +21434,9 @@ DEP_CPP_SERVIC=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Acceptor.h"\
@@ -18806,6 +21458,7 @@ DEP_CPP_SERVIC=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -18827,43 +21480,55 @@ DEP_CPP_SERVIC=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_SERVIC=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_SERVIC=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\IO_Cntl_Msg.h"\
@@ -18889,15 +21554,22 @@ 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"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -18915,6 +21587,9 @@ DEP_CPP_SERVIC=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Acceptor.h"\
@@ -18936,6 +21611,7 @@ DEP_CPP_SERVIC=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -18957,22 +21633,28 @@ DEP_CPP_SERVIC=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_SERVIC=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_SERVIC=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -19000,7 +21682,6 @@ DEP_CPP_SERVIC=\
".\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"\
".\IO_Cntl_Msg.h"\
@@ -19034,10 +21715,14 @@ DEP_CPP_SERVIC=\
".\Message_Queue_T.cpp"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -19055,6 +21740,9 @@ DEP_CPP_SERVIC=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Acceptor.h"\
@@ -19076,6 +21764,7 @@ DEP_CPP_SERVIC=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -19097,22 +21786,28 @@ DEP_CPP_SERVIC=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_SERVIC=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_SERVIC=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -19140,7 +21835,6 @@ DEP_CPP_SERVIC=\
".\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"\
".\IO_Cntl_Msg.h"\
@@ -19174,10 +21868,14 @@ DEP_CPP_SERVIC=\
".\Message_Queue_T.cpp"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -19195,6 +21893,9 @@ DEP_CPP_SERVIC=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Acceptor.h"\
@@ -19216,6 +21917,7 @@ DEP_CPP_SERVIC=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -19237,9 +21939,6 @@ DEP_CPP_SERVIC=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_SERVIC=\
- ".\ce.h"\
-
!ENDIF
@@ -19248,51 +21947,53 @@ NODEP_CPP_SERVIC=\
SOURCE=.\Service_Object.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_SERVICE=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Service_Object.h"\
".\Service_Object.i"\
".\Service_Types.h"\
".\Service_Types.i"\
".\Shared_Object.h"\
".\Shared_Object.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -19303,25 +22004,27 @@ DEP_CPP_SERVICE=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SERVICE=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_SERVICE=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -19330,10 +22033,13 @@ DEP_CPP_SERVICE=\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Service_Object.h"\
".\Service_Object.i"\
".\Service_Types.h"\
@@ -19345,6 +22051,7 @@ DEP_CPP_SERVICE=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -19356,51 +22063,53 @@ DEP_CPP_SERVICE=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_SERVICE=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Service_Object.h"\
".\Service_Object.i"\
".\Service_Types.h"\
".\Service_Types.i"\
".\Shared_Object.h"\
".\Shared_Object.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -19411,55 +22120,54 @@ DEP_CPP_SERVICE=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SERVICE=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_SERVICE=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Service_Object.h"\
".\Service_Object.i"\
".\Service_Types.h"\
".\Service_Types.i"\
".\Shared_Object.h"\
".\Shared_Object.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -19470,52 +22178,54 @@ DEP_CPP_SERVICE=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SERVICE=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_SERVICE=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Service_Object.h"\
".\Service_Object.i"\
".\Service_Types.h"\
".\Service_Types.i"\
".\Shared_Object.h"\
".\Shared_Object.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -19526,52 +22236,54 @@ DEP_CPP_SERVICE=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SERVICE=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_SERVICE=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Service_Object.h"\
".\Service_Object.i"\
".\Service_Types.h"\
".\Service_Types.i"\
".\Shared_Object.h"\
".\Shared_Object.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -19582,9 +22294,6 @@ DEP_CPP_SERVICE=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SERVICE=\
- ".\ce.h"\
-
!ENDIF
@@ -19593,38 +22302,41 @@ NODEP_CPP_SERVICE=\
SOURCE=.\Service_Repository.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_SERVICE_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Service_Object.h"\
".\Service_Object.i"\
".\Service_Repository.h"\
@@ -19633,13 +22345,12 @@ DEP_CPP_SERVICE_=\
".\Service_Types.i"\
".\Shared_Object.h"\
".\Shared_Object.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -19650,25 +22361,27 @@ DEP_CPP_SERVICE_=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SERVICE_=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_SERVICE_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -19677,10 +22390,13 @@ DEP_CPP_SERVICE_=\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Service_Object.h"\
".\Service_Object.i"\
".\Service_Repository.h"\
@@ -19694,6 +22410,7 @@ DEP_CPP_SERVICE_=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -19705,38 +22422,41 @@ DEP_CPP_SERVICE_=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_SERVICE_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Service_Object.h"\
".\Service_Object.i"\
".\Service_Repository.h"\
@@ -19745,13 +22465,12 @@ DEP_CPP_SERVICE_=\
".\Service_Types.i"\
".\Shared_Object.h"\
".\Shared_Object.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -19762,42 +22481,42 @@ DEP_CPP_SERVICE_=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SERVICE_=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_SERVICE_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Service_Object.h"\
".\Service_Object.i"\
".\Service_Repository.h"\
@@ -19806,13 +22525,12 @@ DEP_CPP_SERVICE_=\
".\Service_Types.i"\
".\Shared_Object.h"\
".\Shared_Object.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -19823,39 +22541,42 @@ DEP_CPP_SERVICE_=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SERVICE_=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_SERVICE_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Service_Object.h"\
".\Service_Object.i"\
".\Service_Repository.h"\
@@ -19864,13 +22585,12 @@ DEP_CPP_SERVICE_=\
".\Service_Types.i"\
".\Shared_Object.h"\
".\Shared_Object.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -19881,39 +22601,42 @@ DEP_CPP_SERVICE_=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SERVICE_=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_SERVICE_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Service_Object.h"\
".\Service_Object.i"\
".\Service_Repository.h"\
@@ -19922,13 +22645,12 @@ DEP_CPP_SERVICE_=\
".\Service_Types.i"\
".\Shared_Object.h"\
".\Shared_Object.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -19939,9 +22661,6 @@ DEP_CPP_SERVICE_=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SERVICE_=\
- ".\ce.h"\
-
!ENDIF
@@ -19950,35 +22669,50 @@ NODEP_CPP_SERVICE_=\
SOURCE=.\Service_Types.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_SERVICE_T=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -20000,11 +22734,15 @@ 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"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Module.cpp"\
".\Module.h"\
".\Module.i"\
@@ -20012,6 +22750,8 @@ DEP_CPP_SERVICE_T=\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -20027,6 +22767,9 @@ DEP_CPP_SERVICE_T=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -20046,6 +22789,7 @@ DEP_CPP_SERVICE_T=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -20072,15 +22816,14 @@ DEP_CPP_SERVICE_T=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_SERVICE_T=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_SERVICE_T=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Based_Pointer_Repository.h"\
".\Based_Pointer_T.cpp"\
@@ -20088,7 +22831,11 @@ DEP_CPP_SERVICE_T=\
".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -20114,7 +22861,6 @@ DEP_CPP_SERVICE_T=\
".\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"\
".\Log_Msg.h"\
@@ -20144,6 +22890,7 @@ DEP_CPP_SERVICE_T=\
".\Message_Queue_T.cpp"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Module.cpp"\
".\Module.h"\
".\Module.i"\
@@ -20151,6 +22898,8 @@ DEP_CPP_SERVICE_T=\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -20188,6 +22937,7 @@ DEP_CPP_SERVICE_T=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -20215,35 +22965,50 @@ DEP_CPP_SERVICE_T=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_SERVICE_T=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -20265,11 +23030,15 @@ 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"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Module.cpp"\
".\Module.h"\
".\Module.i"\
@@ -20277,6 +23046,8 @@ DEP_CPP_SERVICE_T=\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -20292,6 +23063,9 @@ DEP_CPP_SERVICE_T=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -20311,6 +23085,7 @@ DEP_CPP_SERVICE_T=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -20337,39 +23112,51 @@ DEP_CPP_SERVICE_T=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_SERVICE_T=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_SERVICE_T=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -20391,11 +23178,15 @@ 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"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Module.cpp"\
".\Module.h"\
".\Module.i"\
@@ -20403,6 +23194,8 @@ DEP_CPP_SERVICE_T=\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -20418,6 +23211,9 @@ DEP_CPP_SERVICE_T=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -20437,6 +23233,7 @@ DEP_CPP_SERVICE_T=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -20463,20 +23260,26 @@ DEP_CPP_SERVICE_T=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_SERVICE_T=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_SERVICE_T=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -20502,7 +23305,6 @@ DEP_CPP_SERVICE_T=\
".\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"\
".\Log_Msg.h"\
@@ -20532,6 +23334,7 @@ DEP_CPP_SERVICE_T=\
".\Message_Queue_T.cpp"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Module.cpp"\
".\Module.h"\
".\Module.i"\
@@ -20539,6 +23342,8 @@ DEP_CPP_SERVICE_T=\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -20554,6 +23359,9 @@ DEP_CPP_SERVICE_T=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -20573,6 +23381,7 @@ DEP_CPP_SERVICE_T=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -20599,20 +23408,26 @@ DEP_CPP_SERVICE_T=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_SERVICE_T=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_SERVICE_T=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -20638,7 +23453,6 @@ DEP_CPP_SERVICE_T=\
".\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"\
".\Log_Msg.h"\
@@ -20668,6 +23482,7 @@ DEP_CPP_SERVICE_T=\
".\Message_Queue_T.cpp"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Module.cpp"\
".\Module.h"\
".\Module.i"\
@@ -20675,6 +23490,8 @@ DEP_CPP_SERVICE_T=\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -20690,6 +23507,9 @@ DEP_CPP_SERVICE_T=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -20709,6 +23529,7 @@ DEP_CPP_SERVICE_T=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -20735,9 +23556,6 @@ DEP_CPP_SERVICE_T=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_SERVICE_T=\
- ".\ce.h"\
-
!ENDIF
@@ -20746,59 +23564,63 @@ NODEP_CPP_SERVICE_T=\
SOURCE=.\Shared_Object.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_SHARE=\
".\ACE.h"\
".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Shared_Object.h"\
".\Shared_Object.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SHARE=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_SHARE=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -20807,174 +23629,180 @@ DEP_CPP_SHARE=\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Shared_Object.h"\
".\Shared_Object.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_SHARE=\
".\ACE.h"\
".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Shared_Object.h"\
".\Shared_Object.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SHARE=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_SHARE=\
".\ACE.h"\
".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Shared_Object.h"\
".\Shared_Object.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SHARE=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_SHARE=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Shared_Object.h"\
".\Shared_Object.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SHARE=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_SHARE=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Shared_Object.h"\
".\Shared_Object.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SHARE=\
- ".\ce.h"\
-
!ENDIF
@@ -20983,31 +23811,38 @@ NODEP_CPP_SHARE=\
SOURCE=.\Signal.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_SIGNA=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -21026,19 +23861,24 @@ DEP_CPP_SIGNA=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -21049,15 +23889,14 @@ DEP_CPP_SIGNA=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SIGNA=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_SIGNA=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Based_Pointer_Repository.h"\
".\Based_Pointer_T.cpp"\
@@ -21065,7 +23904,11 @@ DEP_CPP_SIGNA=\
".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -21079,7 +23922,6 @@ DEP_CPP_SIGNA=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -21098,10 +23940,13 @@ DEP_CPP_SIGNA=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
".\Singleton.cpp"\
@@ -21112,6 +23957,7 @@ DEP_CPP_SIGNA=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -21123,31 +23969,38 @@ DEP_CPP_SIGNA=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_SIGNA=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -21166,19 +24019,24 @@ DEP_CPP_SIGNA=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -21189,35 +24047,39 @@ DEP_CPP_SIGNA=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SIGNA=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_SIGNA=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -21236,19 +24098,24 @@ DEP_CPP_SIGNA=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -21259,20 +24126,26 @@ DEP_CPP_SIGNA=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SIGNA=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_SIGNA=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -21286,7 +24159,6 @@ DEP_CPP_SIGNA=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -21305,19 +24177,24 @@ DEP_CPP_SIGNA=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -21328,20 +24205,26 @@ DEP_CPP_SIGNA=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SIGNA=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_SIGNA=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -21355,7 +24238,6 @@ DEP_CPP_SIGNA=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -21374,19 +24256,24 @@ DEP_CPP_SIGNA=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -21397,9 +24284,6 @@ DEP_CPP_SIGNA=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SIGNA=\
- ".\ce.h"\
-
!ENDIF
@@ -21408,24 +24292,27 @@ NODEP_CPP_SIGNA=\
SOURCE=.\SOCK.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_SOCK_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
".\iosfwd.h"\
".\IPC_SAP.h"\
".\IPC_SAP.i"\
@@ -21433,40 +24320,46 @@ DEP_CPP_SOCK_=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_SOCK_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
".\iosfwd.h"\
".\IPC_SAP.h"\
".\IPC_SAP.i"\
@@ -21477,35 +24370,43 @@ DEP_CPP_SOCK_=\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_SOCK_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
".\iosfwd.h"\
".\IPC_SAP.h"\
".\IPC_SAP.i"\
@@ -21513,44 +24414,46 @@ DEP_CPP_SOCK_=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_SOCK_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
".\iosfwd.h"\
".\IPC_SAP.h"\
".\IPC_SAP.i"\
@@ -21558,41 +24461,46 @@ DEP_CPP_SOCK_=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_SOCK_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
".\iosfwd.h"\
".\IPC_SAP.h"\
".\IPC_SAP.i"\
@@ -21600,41 +24508,46 @@ DEP_CPP_SOCK_=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_SOCK_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
".\iosfwd.h"\
".\IPC_SAP.h"\
".\IPC_SAP.i"\
@@ -21642,25 +24555,24 @@ DEP_CPP_SOCK_=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_=\
- ".\ce.h"\
-
!ENDIF
@@ -21669,27 +24581,28 @@ NODEP_CPP_SOCK_=\
SOURCE=.\SOCK_Acceptor.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_SOCK_A=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -21699,14 +24612,17 @@ DEP_CPP_SOCK_A=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Acceptor.h"\
@@ -21715,13 +24631,12 @@ DEP_CPP_SOCK_A=\
".\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"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -21733,27 +24648,29 @@ DEP_CPP_SOCK_A=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_A=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_SOCK_A=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Atomic_Op.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -21766,10 +24683,14 @@ DEP_CPP_SOCK_A=\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Acceptor.h"\
@@ -21783,6 +24704,7 @@ DEP_CPP_SOCK_A=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -21795,27 +24717,28 @@ DEP_CPP_SOCK_A=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_SOCK_A=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -21825,14 +24748,17 @@ DEP_CPP_SOCK_A=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Acceptor.h"\
@@ -21841,13 +24767,12 @@ DEP_CPP_SOCK_A=\
".\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"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -21859,31 +24784,29 @@ DEP_CPP_SOCK_A=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_A=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_SOCK_A=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -21893,14 +24816,17 @@ DEP_CPP_SOCK_A=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Acceptor.h"\
@@ -21909,13 +24835,12 @@ DEP_CPP_SOCK_A=\
".\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"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -21927,28 +24852,29 @@ DEP_CPP_SOCK_A=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_A=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_SOCK_A=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Atomic_Op.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -21958,14 +24884,17 @@ DEP_CPP_SOCK_A=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Acceptor.h"\
@@ -21974,13 +24903,12 @@ DEP_CPP_SOCK_A=\
".\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"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -21992,28 +24920,29 @@ DEP_CPP_SOCK_A=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_A=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_SOCK_A=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Atomic_Op.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -22023,14 +24952,17 @@ DEP_CPP_SOCK_A=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Acceptor.h"\
@@ -22039,13 +24971,12 @@ DEP_CPP_SOCK_A=\
".\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"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -22057,9 +24988,6 @@ DEP_CPP_SOCK_A=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_A=\
- ".\ce.h"\
-
!ENDIF
@@ -22068,24 +24996,27 @@ NODEP_CPP_SOCK_A=\
SOURCE=.\SOCK_CODgram.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_SOCK_C=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
".\iosfwd.h"\
".\IPC_SAP.h"\
".\IPC_SAP.i"\
@@ -22093,44 +25024,50 @@ DEP_CPP_SOCK_C=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_CODgram.h"\
".\SOCK_CODgram.i"\
".\SOCK_IO.h"\
".\SOCK_IO.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_C=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_SOCK_C=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
".\iosfwd.h"\
".\IPC_SAP.h"\
".\IPC_SAP.i"\
@@ -22141,10 +25078,14 @@ DEP_CPP_SOCK_C=\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_CODgram.h"\
@@ -22152,28 +25093,32 @@ DEP_CPP_SOCK_C=\
".\SOCK_IO.h"\
".\SOCK_IO.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_SOCK_C=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
".\iosfwd.h"\
".\IPC_SAP.h"\
".\IPC_SAP.i"\
@@ -22181,48 +25126,50 @@ DEP_CPP_SOCK_C=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_CODgram.h"\
".\SOCK_CODgram.i"\
".\SOCK_IO.h"\
".\SOCK_IO.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_C=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_SOCK_C=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
".\iosfwd.h"\
".\IPC_SAP.h"\
".\IPC_SAP.i"\
@@ -22230,45 +25177,50 @@ DEP_CPP_SOCK_C=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_CODgram.h"\
".\SOCK_CODgram.i"\
".\SOCK_IO.h"\
".\SOCK_IO.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_C=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_SOCK_C=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
".\iosfwd.h"\
".\IPC_SAP.h"\
".\IPC_SAP.i"\
@@ -22276,45 +25228,50 @@ DEP_CPP_SOCK_C=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_CODgram.h"\
".\SOCK_CODgram.i"\
".\SOCK_IO.h"\
".\SOCK_IO.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_C=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_SOCK_C=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
".\iosfwd.h"\
".\IPC_SAP.h"\
".\IPC_SAP.i"\
@@ -22322,29 +25279,28 @@ DEP_CPP_SOCK_C=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_CODgram.h"\
".\SOCK_CODgram.i"\
".\SOCK_IO.h"\
".\SOCK_IO.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_C=\
- ".\ce.h"\
-
!ENDIF
@@ -22353,26 +25309,25 @@ NODEP_CPP_SOCK_C=\
SOURCE=.\SOCK_Connector.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_SOCK_CO=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Handle_Set.h"\
- ".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -22382,14 +25337,17 @@ DEP_CPP_SOCK_CO=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Connector.h"\
@@ -22398,33 +25356,32 @@ DEP_CPP_SOCK_CO=\
".\SOCK_IO.i"\
".\SOCK_Stream.h"\
".\SOCK_Stream.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Time_Value.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_CO=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_SOCK_CO=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Handle_Set.h"\
- ".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -22437,10 +25394,14 @@ DEP_CPP_SOCK_CO=\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Connector.h"\
@@ -22450,31 +25411,31 @@ DEP_CPP_SOCK_CO=\
".\SOCK_Stream.h"\
".\SOCK_Stream.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Time_Value.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_SOCK_CO=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Handle_Set.h"\
- ".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -22484,14 +25445,17 @@ DEP_CPP_SOCK_CO=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Connector.h"\
@@ -22500,37 +25464,32 @@ DEP_CPP_SOCK_CO=\
".\SOCK_IO.i"\
".\SOCK_Stream.h"\
".\SOCK_Stream.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Time_Value.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_CO=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_SOCK_CO=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Handle_Set.h"\
- ".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -22540,14 +25499,17 @@ DEP_CPP_SOCK_CO=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Connector.h"\
@@ -22556,34 +25518,32 @@ DEP_CPP_SOCK_CO=\
".\SOCK_IO.i"\
".\SOCK_Stream.h"\
".\SOCK_Stream.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Time_Value.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_CO=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_SOCK_CO=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Handle_Set.h"\
- ".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -22593,14 +25553,17 @@ DEP_CPP_SOCK_CO=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Connector.h"\
@@ -22609,34 +25572,32 @@ DEP_CPP_SOCK_CO=\
".\SOCK_IO.i"\
".\SOCK_Stream.h"\
".\SOCK_Stream.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Time_Value.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_CO=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_SOCK_CO=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\Handle_Set.h"\
- ".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -22646,14 +25607,17 @@ DEP_CPP_SOCK_CO=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Connector.h"\
@@ -22662,16 +25626,12 @@ DEP_CPP_SOCK_CO=\
".\SOCK_IO.i"\
".\SOCK_Stream.h"\
".\SOCK_Stream.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Time_Value.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_CO=\
- ".\ce.h"\
-
!ENDIF
@@ -22680,21 +25640,23 @@ NODEP_CPP_SOCK_CO=\
SOURCE=.\SOCK_Dgram.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_SOCK_D=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -22702,7 +25664,8 @@ DEP_CPP_SOCK_D=\
".\Event_Handler.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"\
@@ -22710,25 +25673,27 @@ DEP_CPP_SOCK_D=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Dgram.h"\
".\SOCK_Dgram.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -22739,21 +25704,24 @@ DEP_CPP_SOCK_D=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_D=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_SOCK_D=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Atomic_Op.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -22761,7 +25729,8 @@ DEP_CPP_SOCK_D=\
".\Event_Handler.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"\
@@ -22772,10 +25741,14 @@ DEP_CPP_SOCK_D=\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Dgram.h"\
@@ -22785,6 +25758,7 @@ DEP_CPP_SOCK_D=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -22796,21 +25770,23 @@ DEP_CPP_SOCK_D=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_SOCK_D=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -22818,7 +25794,8 @@ DEP_CPP_SOCK_D=\
".\Event_Handler.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"\
@@ -22826,25 +25803,27 @@ DEP_CPP_SOCK_D=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Dgram.h"\
".\SOCK_Dgram.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -22855,25 +25834,24 @@ DEP_CPP_SOCK_D=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_D=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_SOCK_D=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -22881,7 +25859,8 @@ DEP_CPP_SOCK_D=\
".\Event_Handler.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"\
@@ -22889,25 +25868,27 @@ DEP_CPP_SOCK_D=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Dgram.h"\
".\SOCK_Dgram.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -22918,22 +25899,24 @@ DEP_CPP_SOCK_D=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_D=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_SOCK_D=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Atomic_Op.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -22941,7 +25924,8 @@ DEP_CPP_SOCK_D=\
".\Event_Handler.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"\
@@ -22949,25 +25933,27 @@ DEP_CPP_SOCK_D=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Dgram.h"\
".\SOCK_Dgram.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -22978,22 +25964,24 @@ DEP_CPP_SOCK_D=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_D=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_SOCK_D=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Atomic_Op.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -23001,7 +25989,8 @@ DEP_CPP_SOCK_D=\
".\Event_Handler.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"\
@@ -23009,25 +25998,27 @@ DEP_CPP_SOCK_D=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Dgram.h"\
".\SOCK_Dgram.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -23038,9 +26029,6 @@ DEP_CPP_SOCK_D=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_D=\
- ".\ce.h"\
-
!ENDIF
@@ -23049,24 +26037,25 @@ NODEP_CPP_SOCK_D=\
SOURCE=.\SOCK_Dgram_Bcast.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_SOCK_DG=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -23076,44 +26065,48 @@ DEP_CPP_SOCK_DG=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Dgram.h"\
".\SOCK_Dgram.i"\
".\SOCK_Dgram_Bcast.h"\
".\SOCK_Dgram_Bcast.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_DG=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_SOCK_DG=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -23126,10 +26119,14 @@ DEP_CPP_SOCK_DG=\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Dgram.h"\
@@ -23137,28 +26134,30 @@ DEP_CPP_SOCK_DG=\
".\SOCK_Dgram_Bcast.h"\
".\SOCK_Dgram_Bcast.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_SOCK_DG=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -23168,48 +26167,48 @@ DEP_CPP_SOCK_DG=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Dgram.h"\
".\SOCK_Dgram.i"\
".\SOCK_Dgram_Bcast.h"\
".\SOCK_Dgram_Bcast.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_DG=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_SOCK_DG=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -23219,45 +26218,48 @@ DEP_CPP_SOCK_DG=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Dgram.h"\
".\SOCK_Dgram.i"\
".\SOCK_Dgram_Bcast.h"\
".\SOCK_Dgram_Bcast.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_DG=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_SOCK_DG=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -23267,45 +26269,48 @@ DEP_CPP_SOCK_DG=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Dgram.h"\
".\SOCK_Dgram.i"\
".\SOCK_Dgram_Bcast.h"\
".\SOCK_Dgram_Bcast.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_DG=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_SOCK_DG=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -23315,29 +26320,28 @@ DEP_CPP_SOCK_DG=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Dgram.h"\
".\SOCK_Dgram.i"\
".\SOCK_Dgram_Bcast.h"\
".\SOCK_Dgram_Bcast.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_DG=\
- ".\ce.h"\
-
!ENDIF
@@ -23346,24 +26350,25 @@ NODEP_CPP_SOCK_DG=\
SOURCE=.\SOCK_Dgram_Mcast.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_SOCK_DGR=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -23373,44 +26378,48 @@ DEP_CPP_SOCK_DGR=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Dgram.h"\
".\SOCK_Dgram.i"\
".\SOCK_Dgram_Mcast.h"\
".\SOCK_Dgram_Mcast.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_DGR=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_SOCK_DGR=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -23423,10 +26432,14 @@ DEP_CPP_SOCK_DGR=\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Dgram.h"\
@@ -23434,28 +26447,30 @@ DEP_CPP_SOCK_DGR=\
".\SOCK_Dgram_Mcast.h"\
".\SOCK_Dgram_Mcast.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_SOCK_DGR=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -23465,48 +26480,48 @@ DEP_CPP_SOCK_DGR=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Dgram.h"\
".\SOCK_Dgram.i"\
".\SOCK_Dgram_Mcast.h"\
".\SOCK_Dgram_Mcast.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_DGR=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_SOCK_DGR=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -23516,45 +26531,48 @@ DEP_CPP_SOCK_DGR=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Dgram.h"\
".\SOCK_Dgram.i"\
".\SOCK_Dgram_Mcast.h"\
".\SOCK_Dgram_Mcast.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_DGR=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_SOCK_DGR=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -23564,45 +26582,48 @@ DEP_CPP_SOCK_DGR=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Dgram.h"\
".\SOCK_Dgram.i"\
".\SOCK_Dgram_Mcast.h"\
".\SOCK_Dgram_Mcast.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_DGR=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_SOCK_DGR=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -23612,29 +26633,28 @@ DEP_CPP_SOCK_DGR=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Dgram.h"\
".\SOCK_Dgram.i"\
".\SOCK_Dgram_Mcast.h"\
".\SOCK_Dgram_Mcast.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_DGR=\
- ".\ce.h"\
-
!ENDIF
@@ -23643,24 +26663,29 @@ NODEP_CPP_SOCK_DGR=\
SOURCE=.\SOCK_IO.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_SOCK_I=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
".\iosfwd.h"\
".\IPC_SAP.h"\
".\IPC_SAP.i"\
@@ -23668,44 +26693,50 @@ DEP_CPP_SOCK_I=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_IO.h"\
".\SOCK_IO.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_I=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_SOCK_I=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
".\iosfwd.h"\
".\IPC_SAP.h"\
".\IPC_SAP.i"\
@@ -23716,37 +26747,47 @@ DEP_CPP_SOCK_I=\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_IO.h"\
".\SOCK_IO.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_SOCK_I=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
".\iosfwd.h"\
".\IPC_SAP.h"\
".\IPC_SAP.i"\
@@ -23754,46 +26795,50 @@ DEP_CPP_SOCK_I=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_IO.h"\
".\SOCK_IO.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_I=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_SOCK_I=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
+ ".\Handle_Set.h"\
+ ".\Handle_Set.i"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
".\iosfwd.h"\
".\IPC_SAP.h"\
".\IPC_SAP.i"\
@@ -23801,45 +26846,50 @@ DEP_CPP_SOCK_I=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_IO.h"\
".\SOCK_IO.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_I=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_SOCK_I=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
".\iosfwd.h"\
".\IPC_SAP.h"\
".\IPC_SAP.i"\
@@ -23847,45 +26897,50 @@ DEP_CPP_SOCK_I=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_IO.h"\
".\SOCK_IO.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_I=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_SOCK_I=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
+ ".\INET_Addr.h"\
+ ".\INET_Addr.i"\
".\iosfwd.h"\
".\IPC_SAP.h"\
".\IPC_SAP.i"\
@@ -23893,27 +26948,26 @@ DEP_CPP_SOCK_I=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_IO.h"\
".\SOCK_IO.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_I=\
- ".\ce.h"\
-
!ENDIF
@@ -23922,24 +26976,25 @@ NODEP_CPP_SOCK_I=\
SOURCE=.\SOCK_Stream.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_SOCK_S=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -23949,44 +27004,48 @@ DEP_CPP_SOCK_S=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_IO.h"\
".\SOCK_IO.i"\
".\SOCK_Stream.h"\
".\SOCK_Stream.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_S=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_SOCK_S=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -23999,10 +27058,14 @@ DEP_CPP_SOCK_S=\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_IO.h"\
@@ -24010,28 +27073,30 @@ DEP_CPP_SOCK_S=\
".\SOCK_Stream.h"\
".\SOCK_Stream.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_SOCK_S=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -24041,48 +27106,48 @@ DEP_CPP_SOCK_S=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_IO.h"\
".\SOCK_IO.i"\
".\SOCK_Stream.h"\
".\SOCK_Stream.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_S=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_SOCK_S=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -24092,45 +27157,48 @@ DEP_CPP_SOCK_S=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_IO.h"\
".\SOCK_IO.i"\
".\SOCK_Stream.h"\
".\SOCK_Stream.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_S=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_SOCK_S=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -24140,45 +27208,48 @@ DEP_CPP_SOCK_S=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_IO.h"\
".\SOCK_IO.i"\
".\SOCK_Stream.h"\
".\SOCK_Stream.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_S=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_SOCK_S=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -24188,29 +27259,28 @@ DEP_CPP_SOCK_S=\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_IO.h"\
".\SOCK_IO.i"\
".\SOCK_Stream.h"\
".\SOCK_Stream.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SOCK_S=\
- ".\ce.h"\
-
!ENDIF
@@ -24219,25 +27289,36 @@ NODEP_CPP_SOCK_S=\
SOURCE=.\SString.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_SSTRI=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
@@ -24245,7 +27326,6 @@ DEP_CPP_SSTRI=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -24264,10 +27344,13 @@ DEP_CPP_SSTRI=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -24279,6 +27362,9 @@ DEP_CPP_SSTRI=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -24287,6 +27373,7 @@ DEP_CPP_SSTRI=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -24301,15 +27388,14 @@ DEP_CPP_SSTRI=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SSTRI=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_SSTRI=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
@@ -24320,7 +27406,11 @@ DEP_CPP_SSTRI=\
".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -24336,7 +27426,6 @@ DEP_CPP_SSTRI=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -24355,10 +27444,13 @@ DEP_CPP_SSTRI=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -24381,6 +27473,7 @@ DEP_CPP_SSTRI=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -24396,25 +27489,36 @@ DEP_CPP_SSTRI=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_SSTRI=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
@@ -24422,7 +27526,6 @@ DEP_CPP_SSTRI=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -24441,10 +27544,13 @@ DEP_CPP_SSTRI=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -24456,6 +27562,9 @@ DEP_CPP_SSTRI=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -24464,6 +27573,7 @@ DEP_CPP_SSTRI=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -24478,29 +27588,37 @@ DEP_CPP_SSTRI=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SSTRI=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_SSTRI=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
@@ -24508,7 +27626,6 @@ DEP_CPP_SSTRI=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -24527,10 +27644,13 @@ DEP_CPP_SSTRI=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -24542,6 +27662,9 @@ DEP_CPP_SSTRI=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -24550,6 +27673,7 @@ DEP_CPP_SSTRI=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -24564,23 +27688,29 @@ DEP_CPP_SSTRI=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SSTRI=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_SSTRI=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -24596,7 +27726,6 @@ DEP_CPP_SSTRI=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -24615,10 +27744,13 @@ DEP_CPP_SSTRI=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -24630,6 +27762,9 @@ DEP_CPP_SSTRI=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -24638,6 +27773,7 @@ DEP_CPP_SSTRI=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -24652,23 +27788,29 @@ DEP_CPP_SSTRI=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SSTRI=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_SSTRI=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -24684,7 +27826,6 @@ DEP_CPP_SSTRI=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -24703,10 +27844,13 @@ DEP_CPP_SSTRI=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -24718,6 +27862,9 @@ DEP_CPP_SSTRI=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -24726,6 +27873,7 @@ DEP_CPP_SSTRI=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -24740,9 +27888,6 @@ DEP_CPP_SSTRI=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SSTRI=\
- ".\ce.h"\
-
!ENDIF
@@ -24751,52 +27896,94 @@ NODEP_CPP_SSTRI=\
SOURCE=.\Stats.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_STATS=\
".\ACE.h"\
".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
+ ".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_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"\
".\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"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\Stats.h"\
".\Stats.i"\
".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_STATS=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_STATS=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Based_Pointer_Repository.h"\
".\Based_Pointer_T.cpp"\
@@ -24804,7 +27991,11 @@ DEP_CPP_STATS=\
".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -24818,7 +28009,6 @@ DEP_CPP_STATS=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -24837,10 +28027,13 @@ DEP_CPP_STATS=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
".\Singleton.cpp"\
@@ -24853,6 +28046,7 @@ DEP_CPP_STATS=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -24864,98 +28058,187 @@ DEP_CPP_STATS=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_STATS=\
".\ACE.h"\
".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
+ ".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_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"\
".\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"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\Stats.h"\
".\Stats.i"\
".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_STATS=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_STATS=\
".\ACE.h"\
".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
+ ".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_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"\
".\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"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\Signal.h"\
+ ".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\Stats.h"\
".\Stats.i"\
".\streams.h"\
+ ".\SV_Semaphore_Complex.h"\
+ ".\SV_Semaphore_Complex.i"\
+ ".\SV_Semaphore_Simple.h"\
+ ".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
+ ".\Synch.h"\
+ ".\Synch.i"\
+ ".\Synch_T.cpp"\
+ ".\Synch_T.h"\
+ ".\Synch_T.i"\
+ ".\Thread.h"\
+ ".\Thread.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_STATS=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_STATS=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -24969,7 +28252,6 @@ DEP_CPP_STATS=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -24988,14 +28270,18 @@ DEP_CPP_STATS=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\Stats.h"\
".\Stats.i"\
".\streams.h"\
@@ -25003,6 +28289,7 @@ DEP_CPP_STATS=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -25013,20 +28300,26 @@ DEP_CPP_STATS=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_STATS=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_STATS=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -25040,7 +28333,6 @@ DEP_CPP_STATS=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -25059,14 +28351,18 @@ DEP_CPP_STATS=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\Stats.h"\
".\Stats.i"\
".\streams.h"\
@@ -25074,6 +28370,7 @@ DEP_CPP_STATS=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -25084,9 +28381,6 @@ DEP_CPP_STATS=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_STATS=\
- ".\ce.h"\
-
!ENDIF
@@ -25095,35 +28389,50 @@ NODEP_CPP_STATS=\
SOURCE=.\Strategies.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_STRAT=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -25145,15 +28454,21 @@ 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"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -25169,6 +28484,9 @@ DEP_CPP_STRAT=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -25182,6 +28500,7 @@ DEP_CPP_STRAT=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -25202,15 +28521,14 @@ DEP_CPP_STRAT=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_STRAT=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_STRAT=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Based_Pointer_Repository.h"\
".\Based_Pointer_T.cpp"\
@@ -25218,7 +28536,11 @@ DEP_CPP_STRAT=\
".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -25244,7 +28566,6 @@ DEP_CPP_STRAT=\
".\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"\
".\Log_Msg.h"\
@@ -25274,10 +28595,13 @@ DEP_CPP_STRAT=\
".\Message_Queue_T.cpp"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -25309,6 +28633,7 @@ DEP_CPP_STRAT=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -25330,35 +28655,50 @@ DEP_CPP_STRAT=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_STRAT=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -25380,15 +28720,21 @@ 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"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -25404,6 +28750,9 @@ DEP_CPP_STRAT=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -25417,6 +28766,7 @@ DEP_CPP_STRAT=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -25437,39 +28787,51 @@ DEP_CPP_STRAT=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_STRAT=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_STRAT=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -25491,15 +28853,21 @@ 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"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -25515,6 +28883,9 @@ DEP_CPP_STRAT=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -25528,6 +28899,7 @@ DEP_CPP_STRAT=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -25548,20 +28920,26 @@ DEP_CPP_STRAT=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_STRAT=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_STRAT=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -25587,7 +28965,6 @@ DEP_CPP_STRAT=\
".\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"\
".\Log_Msg.h"\
@@ -25617,10 +28994,13 @@ DEP_CPP_STRAT=\
".\Message_Queue_T.cpp"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -25636,6 +29016,9 @@ DEP_CPP_STRAT=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -25649,6 +29032,7 @@ DEP_CPP_STRAT=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -25669,20 +29053,26 @@ DEP_CPP_STRAT=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_STRAT=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_STRAT=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -25708,7 +29098,6 @@ DEP_CPP_STRAT=\
".\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"\
".\Log_Msg.h"\
@@ -25738,10 +29127,13 @@ DEP_CPP_STRAT=\
".\Message_Queue_T.cpp"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -25757,6 +29149,9 @@ DEP_CPP_STRAT=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -25770,6 +29165,7 @@ DEP_CPP_STRAT=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -25790,9 +29186,6 @@ DEP_CPP_STRAT=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_STRAT=\
- ".\ce.h"\
-
!ENDIF
@@ -25801,25 +29194,33 @@ NODEP_CPP_STRAT=\
SOURCE=.\Svc_Conf_l.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_SVC_C=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
@@ -25827,7 +29228,6 @@ DEP_CPP_SVC_C=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -25846,6 +29246,7 @@ DEP_CPP_SVC_C=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\Obstack.h"\
@@ -25854,6 +29255,8 @@ DEP_CPP_SVC_C=\
".\OS.i"\
".\Parse_Node.h"\
".\Parse_Node.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -25867,6 +29270,9 @@ DEP_CPP_SVC_C=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -25876,6 +29282,7 @@ DEP_CPP_SVC_C=\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf.h"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -25890,15 +29297,14 @@ DEP_CPP_SVC_C=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SVC_C=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_SVC_C=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Based_Pointer_Repository.h"\
".\Based_Pointer_T.cpp"\
@@ -25906,7 +29312,11 @@ DEP_CPP_SVC_C=\
".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -25922,7 +29332,6 @@ DEP_CPP_SVC_C=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -25941,6 +29350,7 @@ DEP_CPP_SVC_C=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\Obstack.h"\
@@ -25949,6 +29359,8 @@ DEP_CPP_SVC_C=\
".\OS.i"\
".\Parse_Node.h"\
".\Parse_Node.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -25974,6 +29386,7 @@ DEP_CPP_SVC_C=\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf.h"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -25989,25 +29402,33 @@ DEP_CPP_SVC_C=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_SVC_C=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
@@ -26015,7 +29436,6 @@ DEP_CPP_SVC_C=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -26034,6 +29454,7 @@ DEP_CPP_SVC_C=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\Obstack.h"\
@@ -26042,6 +29463,8 @@ DEP_CPP_SVC_C=\
".\OS.i"\
".\Parse_Node.h"\
".\Parse_Node.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -26055,6 +29478,9 @@ DEP_CPP_SVC_C=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -26064,6 +29490,7 @@ DEP_CPP_SVC_C=\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf.h"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -26078,29 +29505,34 @@ DEP_CPP_SVC_C=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SVC_C=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_SVC_C=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
@@ -26108,7 +29540,6 @@ DEP_CPP_SVC_C=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -26127,6 +29558,7 @@ DEP_CPP_SVC_C=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\Obstack.h"\
@@ -26135,6 +29567,8 @@ DEP_CPP_SVC_C=\
".\OS.i"\
".\Parse_Node.h"\
".\Parse_Node.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -26148,6 +29582,9 @@ DEP_CPP_SVC_C=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -26157,6 +29594,7 @@ DEP_CPP_SVC_C=\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf.h"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -26171,20 +29609,26 @@ DEP_CPP_SVC_C=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SVC_C=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_SVC_C=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -26200,7 +29644,6 @@ DEP_CPP_SVC_C=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -26219,6 +29662,7 @@ DEP_CPP_SVC_C=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\Obstack.h"\
@@ -26227,6 +29671,8 @@ DEP_CPP_SVC_C=\
".\OS.i"\
".\Parse_Node.h"\
".\Parse_Node.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -26240,6 +29686,9 @@ DEP_CPP_SVC_C=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -26249,6 +29698,7 @@ DEP_CPP_SVC_C=\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf.h"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -26263,20 +29713,26 @@ DEP_CPP_SVC_C=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SVC_C=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_SVC_C=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -26292,7 +29748,6 @@ DEP_CPP_SVC_C=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -26311,6 +29766,7 @@ DEP_CPP_SVC_C=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\Obstack.h"\
@@ -26319,6 +29775,8 @@ DEP_CPP_SVC_C=\
".\OS.i"\
".\Parse_Node.h"\
".\Parse_Node.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -26332,6 +29790,9 @@ DEP_CPP_SVC_C=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -26341,6 +29802,7 @@ DEP_CPP_SVC_C=\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf.h"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -26355,9 +29817,6 @@ DEP_CPP_SVC_C=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SVC_C=\
- ".\ce.h"\
-
!ENDIF
@@ -26366,37 +29825,52 @@ NODEP_CPP_SVC_C=\
SOURCE=.\Svc_Conf_y.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_SVC_CO=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\ARGV.h"\
".\ARGV.i"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -26418,11 +29892,15 @@ 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"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Module.cpp"\
".\Module.h"\
".\Module.i"\
@@ -26434,6 +29912,8 @@ DEP_CPP_SVC_CO=\
".\OS.i"\
".\Parse_Node.h"\
".\Parse_Node.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -26449,6 +29929,9 @@ DEP_CPP_SVC_CO=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -26469,6 +29952,7 @@ DEP_CPP_SVC_CO=\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf.h"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -26495,15 +29979,14 @@ DEP_CPP_SVC_CO=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_SVC_CO=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_SVC_CO=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\ARGV.h"\
".\ARGV.i"\
".\Atomic_Op.i"\
@@ -26513,7 +29996,11 @@ DEP_CPP_SVC_CO=\
".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -26539,7 +30026,6 @@ DEP_CPP_SVC_CO=\
".\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"\
".\Log_Msg.h"\
@@ -26569,6 +30055,7 @@ DEP_CPP_SVC_CO=\
".\Message_Queue_T.cpp"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Module.cpp"\
".\Module.h"\
".\Module.i"\
@@ -26580,6 +30067,8 @@ DEP_CPP_SVC_CO=\
".\OS.i"\
".\Parse_Node.h"\
".\Parse_Node.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -26618,6 +30107,7 @@ DEP_CPP_SVC_CO=\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf.h"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -26645,37 +30135,52 @@ DEP_CPP_SVC_CO=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_SVC_CO=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\ARGV.h"\
".\ARGV.i"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -26697,11 +30202,15 @@ 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"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Module.cpp"\
".\Module.h"\
".\Module.i"\
@@ -26713,6 +30222,8 @@ DEP_CPP_SVC_CO=\
".\OS.i"\
".\Parse_Node.h"\
".\Parse_Node.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -26728,6 +30239,9 @@ DEP_CPP_SVC_CO=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -26748,6 +30262,7 @@ DEP_CPP_SVC_CO=\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf.h"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -26774,41 +30289,53 @@ DEP_CPP_SVC_CO=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_SVC_CO=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_SVC_CO=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\ARGV.h"\
".\ARGV.i"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -26830,11 +30357,15 @@ 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"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Module.cpp"\
".\Module.h"\
".\Module.i"\
@@ -26846,6 +30377,8 @@ DEP_CPP_SVC_CO=\
".\OS.i"\
".\Parse_Node.h"\
".\Parse_Node.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -26861,6 +30394,9 @@ DEP_CPP_SVC_CO=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -26881,6 +30417,7 @@ DEP_CPP_SVC_CO=\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf.h"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -26907,22 +30444,28 @@ DEP_CPP_SVC_CO=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_SVC_CO=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_SVC_CO=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\ARGV.h"\
".\ARGV.i"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -26948,7 +30491,6 @@ DEP_CPP_SVC_CO=\
".\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"\
".\Log_Msg.h"\
@@ -26978,6 +30520,7 @@ DEP_CPP_SVC_CO=\
".\Message_Queue_T.cpp"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Module.cpp"\
".\Module.h"\
".\Module.i"\
@@ -26989,6 +30532,8 @@ DEP_CPP_SVC_CO=\
".\OS.i"\
".\Parse_Node.h"\
".\Parse_Node.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -27004,6 +30549,9 @@ DEP_CPP_SVC_CO=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -27024,6 +30572,7 @@ DEP_CPP_SVC_CO=\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf.h"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -27050,22 +30599,28 @@ DEP_CPP_SVC_CO=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_SVC_CO=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_SVC_CO=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\ARGV.h"\
".\ARGV.i"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -27091,7 +30646,6 @@ DEP_CPP_SVC_CO=\
".\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"\
".\Log_Msg.h"\
@@ -27121,6 +30675,7 @@ DEP_CPP_SVC_CO=\
".\Message_Queue_T.cpp"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Module.cpp"\
".\Module.h"\
".\Module.i"\
@@ -27132,6 +30687,8 @@ DEP_CPP_SVC_CO=\
".\OS.i"\
".\Parse_Node.h"\
".\Parse_Node.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -27147,6 +30704,9 @@ DEP_CPP_SVC_CO=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -27167,6 +30727,7 @@ DEP_CPP_SVC_CO=\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf.h"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -27193,9 +30754,6 @@ DEP_CPP_SVC_CO=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_SVC_CO=\
- ".\ce.h"\
-
!ENDIF
@@ -27204,45 +30762,47 @@ NODEP_CPP_SVC_CO=\
SOURCE=.\Synch.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_SYNCH=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -27253,25 +30813,27 @@ DEP_CPP_SYNCH=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SYNCH=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_SYNCH=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -27280,15 +30842,19 @@ DEP_CPP_SYNCH=\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -27300,45 +30866,47 @@ DEP_CPP_SYNCH=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_SYNCH=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -27349,49 +30917,48 @@ DEP_CPP_SYNCH=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SYNCH=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_SYNCH=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -27402,46 +30969,48 @@ DEP_CPP_SYNCH=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SYNCH=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_SYNCH=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -27452,46 +31021,48 @@ DEP_CPP_SYNCH=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SYNCH=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_SYNCH=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -27502,9 +31073,6 @@ DEP_CPP_SYNCH=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SYNCH=\
- ".\ce.h"\
-
!ENDIF
@@ -27513,59 +31081,63 @@ NODEP_CPP_SYNCH=\
SOURCE=.\Synch_Options.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_SYNCH_=\
".\ACE.h"\
".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Synch_Options.h"\
".\Synch_Options.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SYNCH_=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_SYNCH_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -27574,174 +31146,180 @@ DEP_CPP_SYNCH_=\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Synch_Options.h"\
".\Synch_Options.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_SYNCH_=\
".\ACE.h"\
".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Synch_Options.h"\
".\Synch_Options.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SYNCH_=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_SYNCH_=\
".\ACE.h"\
".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Synch_Options.h"\
".\Synch_Options.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SYNCH_=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_SYNCH_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Synch_Options.h"\
".\Synch_Options.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SYNCH_=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_SYNCH_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Synch_Options.h"\
".\Synch_Options.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SYNCH_=\
- ".\ce.h"\
-
!ENDIF
@@ -27750,31 +31328,38 @@ NODEP_CPP_SYNCH_=\
SOURCE=.\System_Time.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_SYSTE=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -27793,19 +31378,24 @@ DEP_CPP_SYSTE=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -27817,15 +31407,14 @@ DEP_CPP_SYSTE=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SYSTE=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_SYSTE=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Based_Pointer_Repository.h"\
".\Based_Pointer_T.cpp"\
@@ -27833,7 +31422,11 @@ DEP_CPP_SYSTE=\
".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -27847,7 +31440,6 @@ DEP_CPP_SYSTE=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -27866,10 +31458,13 @@ DEP_CPP_SYSTE=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
".\Singleton.cpp"\
@@ -27880,6 +31475,7 @@ DEP_CPP_SYSTE=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -27892,31 +31488,38 @@ DEP_CPP_SYSTE=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_SYSTE=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -27935,19 +31538,24 @@ DEP_CPP_SYSTE=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -27959,35 +31567,39 @@ DEP_CPP_SYSTE=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SYSTE=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_SYSTE=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -28006,19 +31618,24 @@ DEP_CPP_SYSTE=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -28030,20 +31647,26 @@ DEP_CPP_SYSTE=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SYSTE=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_SYSTE=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -28057,7 +31680,6 @@ DEP_CPP_SYSTE=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -28076,19 +31698,24 @@ DEP_CPP_SYSTE=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -28100,20 +31727,26 @@ DEP_CPP_SYSTE=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SYSTE=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_SYSTE=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -28127,7 +31760,6 @@ DEP_CPP_SYSTE=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -28146,19 +31778,24 @@ DEP_CPP_SYSTE=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -28170,9 +31807,6 @@ DEP_CPP_SYSTE=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_SYSTE=\
- ".\ce.h"\
-
!ENDIF
@@ -28181,35 +31815,50 @@ NODEP_CPP_SYSTE=\
SOURCE=.\Task.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_TASK_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -28231,11 +31880,15 @@ 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"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Module.cpp"\
".\Module.h"\
".\Module.i"\
@@ -28243,6 +31896,8 @@ DEP_CPP_TASK_=\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -28258,6 +31913,9 @@ DEP_CPP_TASK_=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -28274,6 +31932,7 @@ DEP_CPP_TASK_=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -28299,15 +31958,14 @@ DEP_CPP_TASK_=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_TASK_=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_TASK_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Based_Pointer_Repository.h"\
".\Based_Pointer_T.cpp"\
@@ -28315,7 +31973,11 @@ DEP_CPP_TASK_=\
".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -28341,7 +32003,6 @@ DEP_CPP_TASK_=\
".\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"\
".\Log_Msg.h"\
@@ -28371,6 +32032,7 @@ DEP_CPP_TASK_=\
".\Message_Queue_T.cpp"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Module.cpp"\
".\Module.h"\
".\Module.i"\
@@ -28378,6 +32040,8 @@ DEP_CPP_TASK_=\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -28412,6 +32076,7 @@ DEP_CPP_TASK_=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -28438,35 +32103,50 @@ DEP_CPP_TASK_=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_TASK_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -28488,11 +32168,15 @@ 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"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Module.cpp"\
".\Module.h"\
".\Module.i"\
@@ -28500,6 +32184,8 @@ DEP_CPP_TASK_=\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -28515,6 +32201,9 @@ DEP_CPP_TASK_=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -28531,6 +32220,7 @@ DEP_CPP_TASK_=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -28556,39 +32246,51 @@ DEP_CPP_TASK_=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_TASK_=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_TASK_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -28610,11 +32312,15 @@ 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"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Module.cpp"\
".\Module.h"\
".\Module.i"\
@@ -28622,6 +32328,8 @@ DEP_CPP_TASK_=\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -28637,6 +32345,9 @@ DEP_CPP_TASK_=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -28653,6 +32364,7 @@ DEP_CPP_TASK_=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -28678,20 +32390,26 @@ DEP_CPP_TASK_=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_TASK_=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_TASK_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -28717,7 +32435,6 @@ DEP_CPP_TASK_=\
".\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"\
".\Log_Msg.h"\
@@ -28747,6 +32464,7 @@ DEP_CPP_TASK_=\
".\Message_Queue_T.cpp"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Module.cpp"\
".\Module.h"\
".\Module.i"\
@@ -28754,6 +32472,8 @@ DEP_CPP_TASK_=\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -28769,6 +32489,9 @@ DEP_CPP_TASK_=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -28785,6 +32508,7 @@ DEP_CPP_TASK_=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -28810,20 +32534,26 @@ DEP_CPP_TASK_=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_TASK_=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_TASK_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -28849,7 +32579,6 @@ DEP_CPP_TASK_=\
".\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"\
".\Log_Msg.h"\
@@ -28879,6 +32608,7 @@ DEP_CPP_TASK_=\
".\Message_Queue_T.cpp"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Module.cpp"\
".\Module.h"\
".\Module.i"\
@@ -28886,6 +32616,8 @@ DEP_CPP_TASK_=\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -28901,6 +32633,9 @@ DEP_CPP_TASK_=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -28917,6 +32652,7 @@ DEP_CPP_TASK_=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -28942,9 +32678,6 @@ DEP_CPP_TASK_=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_TASK_=\
- ".\ce.h"\
-
!ENDIF
@@ -28953,59 +32686,63 @@ NODEP_CPP_TASK_=\
SOURCE=.\Thread.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_THREA=\
".\ACE.h"\
".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Thread.h"\
".\Thread.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_THREA=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_THREA=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -29014,174 +32751,180 @@ DEP_CPP_THREA=\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Thread.h"\
".\Thread.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_THREA=\
".\ACE.h"\
".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Thread.h"\
".\Thread.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_THREA=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_THREA=\
".\ACE.h"\
".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Thread.h"\
".\Thread.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_THREA=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_THREA=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Thread.h"\
".\Thread.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_THREA=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_THREA=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Thread.h"\
".\Thread.i"\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_THREA=\
- ".\ce.h"\
-
!ENDIF
@@ -29190,25 +32933,36 @@ NODEP_CPP_THREA=\
SOURCE=.\Thread_Manager.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_THREAD=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
@@ -29216,7 +32970,6 @@ DEP_CPP_THREAD=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -29235,22 +32988,24 @@ DEP_CPP_THREAD=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
".\Singleton.cpp"\
".\Singleton.h"\
".\Singleton.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -29263,15 +33018,14 @@ DEP_CPP_THREAD=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_THREAD=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_THREAD=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
@@ -29282,7 +33036,11 @@ DEP_CPP_THREAD=\
".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -29298,7 +33056,6 @@ DEP_CPP_THREAD=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -29317,10 +33074,13 @@ DEP_CPP_THREAD=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
".\Singleton.cpp"\
@@ -29331,6 +33091,7 @@ DEP_CPP_THREAD=\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -29344,25 +33105,36 @@ DEP_CPP_THREAD=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_THREAD=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
@@ -29370,7 +33142,6 @@ DEP_CPP_THREAD=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -29389,22 +33160,24 @@ DEP_CPP_THREAD=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
".\Singleton.cpp"\
".\Singleton.h"\
".\Singleton.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -29417,29 +33190,37 @@ DEP_CPP_THREAD=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_THREAD=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_THREAD=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
@@ -29447,7 +33228,6 @@ DEP_CPP_THREAD=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -29466,22 +33246,24 @@ DEP_CPP_THREAD=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
".\Singleton.cpp"\
".\Singleton.h"\
".\Singleton.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -29494,20 +33276,29 @@ DEP_CPP_THREAD=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_THREAD=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_THREAD=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -29523,7 +33314,6 @@ DEP_CPP_THREAD=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -29542,22 +33332,24 @@ DEP_CPP_THREAD=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
".\Singleton.cpp"\
".\Singleton.h"\
".\Singleton.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -29570,20 +33362,29 @@ DEP_CPP_THREAD=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_THREAD=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_THREAD=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Auto_Ptr.cpp"\
+ ".\Auto_Ptr.h"\
+ ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -29599,7 +33400,6 @@ DEP_CPP_THREAD=\
".\Free_List.cpp"\
".\Free_List.h"\
".\Free_List.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -29618,22 +33418,24 @@ DEP_CPP_THREAD=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Signal.h"\
".\Signal.i"\
".\Singleton.cpp"\
".\Singleton.h"\
".\Singleton.i"\
- ".\SString.h"\
- ".\SString.i"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -29646,9 +33448,6 @@ DEP_CPP_THREAD=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_THREAD=\
- ".\ce.h"\
-
!ENDIF
@@ -29657,45 +33456,47 @@ NODEP_CPP_THREAD=\
SOURCE=.\Token.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_TOKEN=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -29708,25 +33509,27 @@ DEP_CPP_TOKEN=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_TOKEN=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_TOKEN=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -29735,15 +33538,19 @@ DEP_CPP_TOKEN=\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -29757,45 +33564,47 @@ DEP_CPP_TOKEN=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_TOKEN=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -29808,49 +33617,48 @@ DEP_CPP_TOKEN=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_TOKEN=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_TOKEN=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -29863,46 +33671,48 @@ DEP_CPP_TOKEN=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_TOKEN=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_TOKEN=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -29915,46 +33725,48 @@ DEP_CPP_TOKEN=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_TOKEN=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_TOKEN=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
".\Event_Handler.h"\
".\Event_Handler.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
".\SV_Semaphore_Complex.h"\
".\SV_Semaphore_Complex.i"\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_T.cpp"\
@@ -29967,9 +33779,6 @@ DEP_CPP_TOKEN=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_TOKEN=\
- ".\ce.h"\
-
!ENDIF
@@ -29978,25 +33787,33 @@ NODEP_CPP_TOKEN=\
SOURCE=.\TP_Reactor.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_TP_RE=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
@@ -30004,7 +33821,6 @@ DEP_CPP_TP_RE=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Local_Tokens.h"\
".\Local_Tokens.i"\
@@ -30028,17 +33844,25 @@ DEP_CPP_TP_RE=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
".\Pipe.h"\
".\Pipe.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
".\Select_Reactor.h"\
".\Select_Reactor.i"\
+ ".\Select_Reactor_Base.h"\
+ ".\Select_Reactor_Base.i"\
+ ".\Select_Reactor_T.cpp"\
+ ".\Select_Reactor_T.h"\
+ ".\Select_Reactor_T.i"\
".\Service_Config.h"\
".\Service_Config.i"\
".\Service_Object.h"\
@@ -30047,6 +33871,9 @@ DEP_CPP_TP_RE=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -30055,6 +33882,7 @@ DEP_CPP_TP_RE=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -30064,6 +33892,9 @@ DEP_CPP_TP_RE=\
".\Synch_T.i"\
".\Thread.h"\
".\Thread.i"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
".\Timer_Queue.h"\
".\Timer_Queue_T.cpp"\
".\Timer_Queue_T.h"\
@@ -30075,15 +33906,14 @@ DEP_CPP_TP_RE=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_TP_RE=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_TP_RE=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Based_Pointer_Repository.h"\
".\Based_Pointer_T.cpp"\
@@ -30091,7 +33921,11 @@ DEP_CPP_TP_RE=\
".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -30107,7 +33941,6 @@ DEP_CPP_TP_RE=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Local_Tokens.h"\
".\Local_Tokens.i"\
@@ -30131,12 +33964,15 @@ DEP_CPP_TP_RE=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
".\Pipe.h"\
".\Pipe.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -30166,6 +34002,7 @@ DEP_CPP_TP_RE=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -30190,25 +34027,33 @@ DEP_CPP_TP_RE=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_TP_RE=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
@@ -30216,7 +34061,6 @@ DEP_CPP_TP_RE=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Local_Tokens.h"\
".\Local_Tokens.i"\
@@ -30240,17 +34084,25 @@ DEP_CPP_TP_RE=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
".\Pipe.h"\
".\Pipe.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
".\Select_Reactor.h"\
".\Select_Reactor.i"\
+ ".\Select_Reactor_Base.h"\
+ ".\Select_Reactor_Base.i"\
+ ".\Select_Reactor_T.cpp"\
+ ".\Select_Reactor_T.h"\
+ ".\Select_Reactor_T.i"\
".\Service_Config.h"\
".\Service_Config.i"\
".\Service_Object.h"\
@@ -30259,6 +34111,9 @@ DEP_CPP_TP_RE=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -30267,6 +34122,7 @@ DEP_CPP_TP_RE=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -30276,6 +34132,9 @@ DEP_CPP_TP_RE=\
".\Synch_T.i"\
".\Thread.h"\
".\Thread.i"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
".\Timer_Queue.h"\
".\Timer_Queue_T.cpp"\
".\Timer_Queue_T.h"\
@@ -30287,29 +34146,34 @@ DEP_CPP_TP_RE=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_TP_RE=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_TP_RE=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
@@ -30317,7 +34181,6 @@ DEP_CPP_TP_RE=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Local_Tokens.h"\
".\Local_Tokens.i"\
@@ -30341,17 +34204,25 @@ DEP_CPP_TP_RE=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
".\Pipe.h"\
".\Pipe.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
".\Select_Reactor.h"\
".\Select_Reactor.i"\
+ ".\Select_Reactor_Base.h"\
+ ".\Select_Reactor_Base.i"\
+ ".\Select_Reactor_T.cpp"\
+ ".\Select_Reactor_T.h"\
+ ".\Select_Reactor_T.i"\
".\Service_Config.h"\
".\Service_Config.i"\
".\Service_Object.h"\
@@ -30360,6 +34231,9 @@ DEP_CPP_TP_RE=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -30368,6 +34242,7 @@ DEP_CPP_TP_RE=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -30377,6 +34252,9 @@ DEP_CPP_TP_RE=\
".\Synch_T.i"\
".\Thread.h"\
".\Thread.i"\
+ ".\Timer_Heap.h"\
+ ".\Timer_Heap_T.cpp"\
+ ".\Timer_Heap_T.h"\
".\Timer_Queue.h"\
".\Timer_Queue_T.cpp"\
".\Timer_Queue_T.h"\
@@ -30388,20 +34266,26 @@ DEP_CPP_TP_RE=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_TP_RE=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_TP_RE=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -30417,7 +34301,6 @@ DEP_CPP_TP_RE=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Local_Tokens.h"\
".\Local_Tokens.i"\
@@ -30441,12 +34324,15 @@ DEP_CPP_TP_RE=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
".\Pipe.h"\
".\Pipe.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -30465,6 +34351,9 @@ DEP_CPP_TP_RE=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -30473,6 +34362,7 @@ DEP_CPP_TP_RE=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -30496,20 +34386,26 @@ DEP_CPP_TP_RE=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_TP_RE=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_TP_RE=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -30525,7 +34421,6 @@ DEP_CPP_TP_RE=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Local_Tokens.h"\
".\Local_Tokens.i"\
@@ -30549,12 +34444,15 @@ DEP_CPP_TP_RE=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
".\Pipe.h"\
".\Pipe.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -30573,6 +34471,9 @@ DEP_CPP_TP_RE=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\streams.h"\
@@ -30581,6 +34482,7 @@ DEP_CPP_TP_RE=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -30604,9 +34506,6 @@ DEP_CPP_TP_RE=\
".\Trace.h"\
".\ws2tcpip.h"\
-NODEP_CPP_TP_RE=\
- ".\ce.h"\
-
!ENDIF
@@ -30615,58 +34514,58 @@ NODEP_CPP_TP_RE=\
SOURCE=.\Trace.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_TRACE=\
- ".\ACE.h"\
- ".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\Trace.i"\
".\ws2tcpip.h"\
-NODEP_CPP_TRACE=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_TRACE=\
- ".\ACE.h"\
- ".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
@@ -30675,169 +34574,167 @@ DEP_CPP_TRACE=\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\Trace.i"\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_TRACE=\
- ".\ACE.h"\
- ".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\Trace.i"\
".\ws2tcpip.h"\
-NODEP_CPP_TRACE=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_TRACE=\
- ".\ACE.h"\
- ".\ACE.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\Trace.i"\
".\ws2tcpip.h"\
-NODEP_CPP_TRACE=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_TRACE=\
- ".\ACE.h"\
- ".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\Trace.i"\
".\ws2tcpip.h"\
-NODEP_CPP_TRACE=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_TRACE=\
- ".\ACE.h"\
- ".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
- ".\inc_user_config.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
".\Log_Priority.h"\
".\Log_Record.h"\
".\Log_Record.i"\
- ".\Malloc_Base.h"\
".\Managed_Object.cpp"\
".\Managed_Object.h"\
".\Managed_Object.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
- ".\SString.h"\
- ".\SString.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\streams.h"\
+ ".\svc_export.h"\
".\Trace.h"\
".\Trace.i"\
".\ws2tcpip.h"\
-NODEP_CPP_TRACE=\
- ".\ce.h"\
-
!ENDIF
@@ -30846,35 +34743,53 @@ NODEP_CPP_TRACE=\
SOURCE=.\WFMO_Reactor.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_WFMO_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -30896,15 +34811,21 @@ 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"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -30920,6 +34841,9 @@ DEP_CPP_WFMO_=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -30933,6 +34857,7 @@ DEP_CPP_WFMO_=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -30956,15 +34881,14 @@ DEP_CPP_WFMO_=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_WFMO_=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_WFMO_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
@@ -30975,7 +34899,11 @@ DEP_CPP_WFMO_=\
".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -31001,7 +34929,6 @@ DEP_CPP_WFMO_=\
".\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"\
".\Log_Msg.h"\
@@ -31031,10 +34958,13 @@ DEP_CPP_WFMO_=\
".\Message_Queue_T.cpp"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -31066,6 +34996,7 @@ DEP_CPP_WFMO_=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -31090,35 +35021,53 @@ DEP_CPP_WFMO_=\
".\ws2tcpip.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_WFMO_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -31140,15 +35089,21 @@ 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"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -31164,6 +35119,9 @@ DEP_CPP_WFMO_=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -31177,6 +35135,7 @@ DEP_CPP_WFMO_=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -31200,39 +35159,54 @@ DEP_CPP_WFMO_=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_WFMO_=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_WFMO_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
- ".\inc_user_config.h"\
+ ".\Hash_Map_Manager.i"\
+ ".\Hash_Map_Manager_T.cpp"\
+ ".\Hash_Map_Manager_T.h"\
+ ".\Hash_Map_Manager_T.i"\
".\IO_Cntl_Msg.h"\
".\iosfwd.h"\
".\Log_Msg.h"\
@@ -31254,15 +35228,21 @@ 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"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -31278,6 +35258,9 @@ DEP_CPP_WFMO_=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -31291,6 +35274,7 @@ DEP_CPP_WFMO_=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -31314,23 +35298,29 @@ DEP_CPP_WFMO_=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_WFMO_=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_WFMO_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -31356,7 +35346,6 @@ DEP_CPP_WFMO_=\
".\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"\
".\Log_Msg.h"\
@@ -31386,10 +35375,13 @@ DEP_CPP_WFMO_=\
".\Message_Queue_T.cpp"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -31405,6 +35397,9 @@ DEP_CPP_WFMO_=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -31418,6 +35413,7 @@ DEP_CPP_WFMO_=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -31441,23 +35437,29 @@ DEP_CPP_WFMO_=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_WFMO_=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_WFMO_=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Atomic_Op.i"\
".\Auto_Ptr.cpp"\
".\Auto_Ptr.h"\
".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -31483,7 +35485,6 @@ DEP_CPP_WFMO_=\
".\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"\
".\Log_Msg.h"\
@@ -31513,10 +35514,13 @@ DEP_CPP_WFMO_=\
".\Message_Queue_T.cpp"\
".\Message_Queue_T.h"\
".\Message_Queue_T.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
+ ".\post.h"\
+ ".\pre.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -31532,6 +35536,9 @@ DEP_CPP_WFMO_=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SString.h"\
".\SString.i"\
".\Strategies.h"\
@@ -31545,6 +35552,7 @@ DEP_CPP_WFMO_=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -31568,9 +35576,6 @@ DEP_CPP_WFMO_=\
".\WFMO_Reactor.i"\
".\ws2tcpip.h"\
-NODEP_CPP_WFMO_=\
- ".\ce.h"\
-
!ENDIF
@@ -31579,27 +35584,35 @@ NODEP_CPP_WFMO_=\
SOURCE=.\XtReactor.cpp
-!IF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Release"
+!IF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Release"
DEP_CPP_XTREA=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
@@ -31607,7 +35620,6 @@ DEP_CPP_XTREA=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -31635,17 +35647,26 @@ DEP_CPP_XTREA=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
".\Pipe.h"\
".\Pipe.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
".\Select_Reactor.h"\
".\Select_Reactor.i"\
+ ".\Select_Reactor_Base.h"\
+ ".\Select_Reactor_Base.i"\
+ ".\Select_Reactor_T.cpp"\
+ ".\Select_Reactor_T.h"\
+ ".\Select_Reactor_T.i"\
".\Service_Config.h"\
".\Service_Config.i"\
".\Service_Object.h"\
@@ -31654,6 +35675,9 @@ DEP_CPP_XTREA=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Acceptor.h"\
@@ -31672,6 +35696,7 @@ DEP_CPP_XTREA=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -31682,6 +35707,9 @@ DEP_CPP_XTREA=\
".\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"\
@@ -31692,15 +35720,14 @@ DEP_CPP_XTREA=\
".\ws2tcpip.h"\
".\XtReactor.h"\
-NODEP_CPP_XTREA=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE x86em) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE SH3) Debug"
DEP_CPP_XTREA=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Atomic_Op.i"\
@@ -31710,7 +35737,11 @@ DEP_CPP_XTREA=\
".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
+ ".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -31726,7 +35757,6 @@ DEP_CPP_XTREA=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -31754,12 +35784,16 @@ DEP_CPP_XTREA=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
".\Pipe.h"\
".\Pipe.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -31799,6 +35833,7 @@ DEP_CPP_XTREA=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -31823,27 +35858,35 @@ DEP_CPP_XTREA=\
".\XtReactor.h"\
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Release"
DEP_CPP_XTREA=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
@@ -31851,7 +35894,6 @@ DEP_CPP_XTREA=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -31879,17 +35921,26 @@ DEP_CPP_XTREA=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
".\Pipe.h"\
".\Pipe.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
".\Select_Reactor.h"\
".\Select_Reactor.i"\
+ ".\Select_Reactor_Base.h"\
+ ".\Select_Reactor_Base.i"\
+ ".\Select_Reactor_T.cpp"\
+ ".\Select_Reactor_T.h"\
+ ".\Select_Reactor_T.i"\
".\Service_Config.h"\
".\Service_Config.i"\
".\Service_Object.h"\
@@ -31898,6 +35949,9 @@ DEP_CPP_XTREA=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Acceptor.h"\
@@ -31916,6 +35970,7 @@ DEP_CPP_XTREA=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -31926,6 +35981,9 @@ DEP_CPP_XTREA=\
".\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"\
@@ -31936,31 +35994,36 @@ DEP_CPP_XTREA=\
".\ws2tcpip.h"\
".\XtReactor.h"\
-NODEP_CPP_XTREA=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE MIPS) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE MIPS) Debug"
DEP_CPP_XTREA=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Atomic_Op.i"\
- ".\Auto_Ptr.cpp"\
- ".\Auto_Ptr.h"\
- ".\Auto_Ptr.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\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"\
@@ -31968,7 +36031,6 @@ DEP_CPP_XTREA=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -31996,17 +36058,26 @@ DEP_CPP_XTREA=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
".\Pipe.h"\
".\Pipe.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
".\Select_Reactor.h"\
".\Select_Reactor.i"\
+ ".\Select_Reactor_Base.h"\
+ ".\Select_Reactor_Base.i"\
+ ".\Select_Reactor_T.cpp"\
+ ".\Select_Reactor_T.h"\
+ ".\Select_Reactor_T.i"\
".\Service_Config.h"\
".\Service_Config.i"\
".\Service_Object.h"\
@@ -32015,6 +36086,9 @@ DEP_CPP_XTREA=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Acceptor.h"\
@@ -32033,6 +36107,7 @@ DEP_CPP_XTREA=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -32043,6 +36118,9 @@ DEP_CPP_XTREA=\
".\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"\
@@ -32053,22 +36131,28 @@ DEP_CPP_XTREA=\
".\ws2tcpip.h"\
".\XtReactor.h"\
-NODEP_CPP_XTREA=\
- ".\sys_conf.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Release"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Release"
DEP_CPP_XTREA=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -32084,7 +36168,6 @@ DEP_CPP_XTREA=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -32112,12 +36195,16 @@ DEP_CPP_XTREA=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
".\Pipe.h"\
".\Pipe.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -32136,6 +36223,9 @@ DEP_CPP_XTREA=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Acceptor.h"\
@@ -32154,6 +36244,7 @@ DEP_CPP_XTREA=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -32177,22 +36268,28 @@ DEP_CPP_XTREA=\
".\ws2tcpip.h"\
".\XtReactor.h"\
-NODEP_CPP_XTREA=\
- ".\ce.h"\
-
-!ELSEIF "$(CFG)" == "ace_ce_dll - Win32 (WCE SH3) Debug"
+!ELSEIF "$(CFG)" == "ace_dll_ce - Win32 (WCE x86em) Debug"
DEP_CPP_XTREA=\
".\ACE.h"\
".\ACE.i"\
+ ".\ACE_export.h"\
+ ".\ace_wchar.h"\
".\Addr.h"\
".\Addr.i"\
".\Atomic_Op.i"\
+ ".\Based_Pointer_Repository.h"\
+ ".\Based_Pointer_T.cpp"\
+ ".\Based_Pointer_T.h"\
+ ".\Based_Pointer_T.i"\
".\Basic_Types.h"\
".\Basic_Types.i"\
+ ".\config-all.h"\
".\config-win32-borland.h"\
".\config-win32-common.h"\
+ ".\config-win32-msvc.h"\
+ ".\config-win32-visualage.h"\
".\config-win32.h"\
".\config-WinCE.h"\
".\config.h"\
@@ -32208,7 +36305,6 @@ DEP_CPP_XTREA=\
".\Free_List.i"\
".\Handle_Set.h"\
".\Handle_Set.i"\
- ".\inc_user_config.h"\
".\INET_Addr.h"\
".\INET_Addr.i"\
".\iosfwd.h"\
@@ -32236,12 +36332,16 @@ DEP_CPP_XTREA=\
".\Mem_Map.i"\
".\Memory_Pool.h"\
".\Memory_Pool.i"\
+ ".\Min_Max.h"\
".\Object_Manager.h"\
".\Object_Manager.i"\
".\OS.h"\
".\OS.i"\
".\Pipe.h"\
".\Pipe.i"\
+ ".\post.h"\
+ ".\pre.h"\
+ ".\QoS_Session.h"\
".\Reactor.h"\
".\Reactor.i"\
".\Reactor_Impl.h"\
@@ -32260,6 +36360,9 @@ DEP_CPP_XTREA=\
".\Shared_Object.i"\
".\Signal.h"\
".\Signal.i"\
+ ".\Singleton.cpp"\
+ ".\Singleton.h"\
+ ".\Singleton.i"\
".\SOCK.h"\
".\SOCK.i"\
".\SOCK_Acceptor.h"\
@@ -32278,6 +36381,7 @@ DEP_CPP_XTREA=\
".\SV_Semaphore_Simple.h"\
".\SV_Semaphore_Simple.i"\
".\Svc_Conf_Tokens.h"\
+ ".\svc_export.h"\
".\Synch.h"\
".\Synch.i"\
".\Synch_Options.h"\
@@ -32301,12 +36405,18 @@ DEP_CPP_XTREA=\
".\ws2tcpip.h"\
".\XtReactor.h"\
-NODEP_CPP_XTREA=\
- ".\ce.h"\
-
!ENDIF
# End Source File
+# End Group
+# Begin Group "Header Files"
+
+# PROP Default_Filter "h;hpp;hxx;hm;inl"
+# End Group
+# Begin Group "Resource Files"
+
+# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
+# End Group
# End Target
# End Project
diff --git a/ace/ace_wchar.h b/ace/ace_wchar.h
index a7a88c9aa90..cfe436887a3 100644
--- a/ace/ace_wchar.h
+++ b/ace/ace_wchar.h
@@ -48,6 +48,7 @@
# define ASYS_ONLY_WIDE_STRING(STRING) ACE_Ascii_To_Wide (STRING).wchar_rep ()
# endif /* ACE_USES_WCHAR */
+# define ACE_TEXT_STRING ACE_TString
# if !defined (ACE_WIN32)
# if (defined (ACE_HAS_UNICODE) && (defined (UNICODE)))
@@ -95,11 +96,6 @@ typedef char ACE_TCHAR;
# define ACE_TEXT_CHAR_TO_TCHAR(STRING) STRING
#endif /* ACE_USES_WCHAR */
-// Because we use the CharToOem and OemToChar functions, we need user32.lib
-# if defined (_MSC_VER)
-# pragma comment(lib, "user32.lib")
-# endif /* _MSC_VER */
-
#if defined ACE_HAS_WCHAR
class ACE_Wide_To_Ascii
{
@@ -123,10 +119,17 @@ public:
static char *convert (const wchar_t *wstr)
// Converts an wchar_t string to ascii and returns a new string.
{
- size_t len = wcslen (wstr);
- char *str = new char[len + 1];
# if defined (ACE_WIN32)
- ::CharToOemW (wstr, str);
+ size_t len = ::WideCharToMultiByte (CP_OEMCP, 0, wstr, -1,
+ NULL, 0, NULL, NULL);
+# else
+ size_t len = ::wcslen (wstr) + 1;
+# endif
+
+ char *str = new char[len];
+
+# if defined (ACE_WIN32)
+ ::WideCharToMultiByte (CP_OEMCP, 0, wstr, -1, str, len, NULL, NULL);
# else /* ACE_WIN32 */
for (size_t i = 0; i < len; i++)
{
@@ -169,10 +172,16 @@ public:
static wchar_t *convert (const char *str)
// Converts an char string to unicode/wide and returns a new string.
{
- size_t len = strlen (str);
- wchar_t *wstr = new wchar_t[len + 1];
# if defined (ACE_WIN32)
- ::OemToCharW (str, wstr);
+ size_t len = ::MultiByteToWideChar (CP_OEMCP, 0, str, -1, NULL, 0);
+# else /* ACE_WIN32 */
+ size_t len = strlen (str) + 1;
+# endif /* ACE_WIN32 */
+
+ wchar_t *wstr = new wchar_t[len];
+
+# if defined (ACE_WIN32)
+ ::MultiByteToWideChar (CP_OEMCP, 0, str, -1, wstr, len);
# else /* ACE_WIN32 */
for (size_t i = 0; i < len; i++)
{
diff --git a/ace/config-WinCE.h b/ace/config-WinCE.h
index bf2e8066d90..e7cc178227b 100644
--- a/ace/config-WinCE.h
+++ b/ace/config-WinCE.h
@@ -17,7 +17,7 @@
// Need to define LD search path explicitly on CE because
// CE doesn't have environment variables and we can't get
// the information using getenv.
-#define ACE_DEFAULT_LD_SEARCH_PATH ".\\;\\windows"
+#define ACE_DEFAULT_LD_SEARCH_PATH ACE_TEXT (".\\;\\windows")
// CE is not NT.
#if defined (ACE_HAS_WINNT4)
@@ -29,15 +29,16 @@
#define ACE_LACKS_ACE_OTHER
// You must use MFC with ACE on CE.
-#if defined (ACE_HAS_MFC) && (ACE_HAS_MFC != 0)
-# undef ACE_HAS_MFC
-#endif /* ACE_HAS_MFC */
-#define ACE_HAS_MFC 1
+//#if defined (ACE_HAS_MFC) && (ACE_HAS_MFC != 0)
+//# undef ACE_HAS_MFC
+//#endif /* ACE_HAS_MFC */
+//#define ACE_HAS_MFC 1
+
+#define ACE_HAS_WCHAR
-// So is UNICODE.
-#if !defined (ACE_HAS_WCHAR)
-# error Only Unicode ACE is supported on Windows CE
-#endif /* ACE_HAS_WCHAR */
+#if !defined (ACE_USES_WCHAR)
+#define ACE_USES_WCHAR
+#endif /* ACE_USES_WCHAR */
#define ACE_USES_WINCE_SEMA_SIMULATION
@@ -50,12 +51,22 @@
#define ACE_HAS_NONSTATIC_OBJECT_MANAGER 1
+// FILE stuff isn't always defined in CE
+#ifndef _FILE_DEFINED
+typedef void FILE;
+#define _FILE_DEFINED
+#endif /* _FILE_DEFINED */
+
+// This was defined in previous versions of CE, but not 2.11
+#define EXCEPTION_ACCESS_VIOLATION STATUS_ACCESS_VIOLATION
+
// We need to rename program entry name "main" with ace_ce_main here
// so that we can call it from CE's bridge class.
#define ACE_MAIN ace_ce_main
#define ACE_MAIN_OBJECT_MANAGER
-// SH3 cross-compiler can't handle inline functions correctly (along with other bugs.)
+// SH3 cross-compiler can't handle inline functions correctly
+// (along with other bugs.)
#if defined (SH3) && defined (DEBUG)
#define ACE_LACKS_INLINE_FUNCTIONS
#endif /* SH3 && _DEBUG */
@@ -150,10 +161,6 @@
# define BUFSIZ 1024
#endif /* BUFSIZ */
-#if defined (UNDER_CE) && (UNDER_CE < 211)
-#define EOF -1
-#endif /* UNDER_CE && UNDER_CE < 211 */
-
typedef void (*__sighandler_t)(int); // keep Signal compilation happy
typedef long off_t;
@@ -174,16 +181,6 @@ typedef long off_t;
#define ACE_LACKS_MALLOC_H // We do have malloc.h, but don't use it.
#endif /* UNDER_CE && UNDER_CE > 201 */
-#if defined (UNDER_CE) && (UNDER_CE < 211)
-#define FILE void // Try to map FILE* to HANDLE
-#define SEEK_SET FILE_BEGIN
-#define SEEK_CUR FILE_CURRENT
-#define SEEK_END FILE_END
-#define stderr 0
-#define stdin 0
-#define stdout 0
-#endif /* UNDER_CE && UNDER_CE < 211 */
-
#if defined (UNDER_CE) && (UNDER_CE >= 211)
#define ACE_HAS_WINCE_BROKEN_ERRNO
#define _MAX_FNAME 255
@@ -194,11 +191,10 @@ typedef long off_t;
// @@ This needs to be defined and initialized as a static. (Singleton?)
#define ACE_DEFAULT_LOG_STREAM 0
-// isprint macro is missing.
-inline int isprint (const char c)
-{
- return (c < 0x20 || c > 0x7e ? 0 : 1);
-}
+// If you don't use MFC, this doesn't get defined
+#if !defined (ACE_HAS_MFC)
+inline void *operator new (unsigned int, void *p) { return p; }
+#endif /* ACE_HAS_MFC */
#include "ace/post.h"
#endif /* ACE_CONFIG_WINCE_H */
diff --git a/ace/config-win32-common.h b/ace/config-win32-common.h
index ed9ca89f320..56a94a15230 100644
--- a/ace/config-win32-common.h
+++ b/ace/config-win32-common.h
@@ -312,11 +312,11 @@ typedef unsigned __int64 ACE_UINT64;
// must have _MT defined to include multithreading
// features from win32 headers
-# if !defined(_MT)
+# if !defined(_MT) && !defined (ACE_HAS_WINCE)
// *** DO NOT *** DO NOT *** defeat this error message
// by defining _MT yourself. RTFM and see who set _MT.
# error You must link ACE against multi-threaded libraries.
-# endif /* _MT */
+# endif /* !_MT && !ACE_HAS_WINCE */
#endif /* ACE_MT_SAFE && ACE_MT_SAFE != 0 */
// We are using STL's min and max (in algobase.h). Therefore the