summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2005-08-08 13:33:04 +0000
committerDwayne Boone <dwayne@zeroc.com>2005-08-08 13:33:04 +0000
commitdf8cf81989c083af7861b9bec0f05d40d9cd195b (patch)
tree2e0e0444e84444aa2620e55e78e2365554f2010d
parentadded missing files. (diff)
downloadice-df8cf81989c083af7861b9bec0f05d40d9cd195b.tar.bz2
ice-df8cf81989c083af7861b9bec0f05d40d9cd195b.tar.xz
ice-df8cf81989c083af7861b9bec0f05d40d9cd195b.zip
Ported throughput to WinCE
-rwxr-xr-xcppe/all.vcw30
-rw-r--r--cppe/demo/IceE/throughput/Client.cpp35
-rw-r--r--cppe/demo/IceE/throughput/README19
-rw-r--r--cppe/demo/IceE/throughput/Server.cpp14
-rw-r--r--cppe/demo/IceE/throughput/ThroughputI.cpp14
-rw-r--r--cppe/demo/IceE/throughput/ThroughputI.h2
-rwxr-xr-xcppe/demo/IceE/throughput/WinCEClient.cpp467
-rwxr-xr-xcppe/demo/IceE/throughput/WinCEServer.cpp182
-rwxr-xr-xcppe/demo/IceE/throughput/throughputC.vcp2064
-rwxr-xr-xcppe/demo/IceE/throughput/throughputS.vcp2792
10 files changed, 5598 insertions, 21 deletions
diff --git a/cppe/all.vcw b/cppe/all.vcw
index 683d84142b0..2485b47a6c0 100755
--- a/cppe/all.vcw
+++ b/cppe/all.vcw
@@ -453,6 +453,36 @@ Package=<4>
###############################################################################
+Project: "throughputC"=.\demo\IceE\throughput\throughputC.vcp - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name icec
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "throughputS"=.\demo\IceE\throughput\throughputS.vcp - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name ice
+ End Project Dependency
+}}}
+
+###############################################################################
+
Project: "uuid"=.\test\IceE\uuid\uuid.vcp - Package Owner=<4>
Package=<5>
diff --git a/cppe/demo/IceE/throughput/Client.cpp b/cppe/demo/IceE/throughput/Client.cpp
index 4fcb338e6fb..eb2030171d5 100644
--- a/cppe/demo/IceE/throughput/Client.cpp
+++ b/cppe/demo/IceE/throughput/Client.cpp
@@ -39,6 +39,18 @@ menu()
int
run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator)
{
+ //
+ // Check if we need to run with small sequences
+ //
+ int reduce = 1;
+ for(int i = 0; i < argc; ++i)
+ {
+ if(strcmp(argv[i], "--small") == 0)
+ {
+ reduce = 100;
+ }
+ }
+
Ice::PropertiesPtr properties = communicator->getProperties();
const char* proxyProperty = "Throughput.Throughput";
std::string proxy = properties->getProperty(proxyProperty);
@@ -57,20 +69,19 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator)
}
ThroughputPrx throughputOneway = ThroughputPrx::uncheckedCast(throughput->ice_oneway());
- ByteSeq byteSeq(ByteSeqSize, 0);
+ ByteSeq byteSeq(ByteSeqSize / reduce, 0);
- StringSeq stringSeq(StringSeqSize, "hello");
+ StringSeq stringSeq(StringSeqSize / reduce, "hello");
- StringDoubleSeq structSeq(StringDoubleSeqSize);
- int i;
- for(i = 0; i < StringDoubleSeqSize; ++i)
+ StringDoubleSeq structSeq(StringDoubleSeqSize / reduce);
+ for(i = 0; i < StringDoubleSeqSize / reduce; ++i)
{
structSeq[i].s = "hello";
structSeq[i].d = 3.14;
}
- FixedSeq fixedSeq(FixedSeqSize);
- for(i = 0; i < FixedSeqSize; ++i)
+ FixedSeq fixedSeq(FixedSeqSize / reduce);
+ for(i = 0; i < FixedSeqSize / reduce; ++i)
{
fixedSeq[i].i = 0;
fixedSeq[i].j = 0;
@@ -85,7 +96,7 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator)
// By default use byte sequence.
//
char currentType = '1';
- int seqSize = ByteSeqSize;
+ int seqSize = ByteSeqSize / reduce;
char c = EOF;
do
@@ -110,28 +121,28 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator)
case '1':
{
printf("using byte sequences\n");
- seqSize = ByteSeqSize;
+ seqSize = ByteSeqSize / reduce;
break;
}
case '2':
{
printf("using string sequences\n");
- seqSize = StringSeqSize;
+ seqSize = StringSeqSize / reduce;
break;
}
case '3':
{
printf("using variable-length struct sequences\n");
- seqSize = StringDoubleSeqSize;
+ seqSize = StringDoubleSeqSize / reduce;
break;
}
case '4':
{
printf("using fixed-length struct sequences\n");
- seqSize = FixedSeqSize;
+ seqSize = FixedSeqSize / reduce;
break;
}
}
diff --git a/cppe/demo/IceE/throughput/README b/cppe/demo/IceE/throughput/README
new file mode 100644
index 00000000000..6beadd28d7e
--- /dev/null
+++ b/cppe/demo/IceE/throughput/README
@@ -0,0 +1,19 @@
+This demo allows you to send sequences of various types between client
+and server and to measure the maximum bandwidth that can be achieved
+using serialized synchronous requests.
+
+Due to the memory constraints of WinCE, the WinCE version of this demo
+uses reduced size sequences. Therefore if you wish to run cross-platform
+tests against a WinCE client or server it is necessary to run with
+reduced size sequences on your other platform as well.
+
+To start the server with reduced sequences run:
+
+$ server --small
+
+and likewise for the client run:
+
+$ client --small
+
+Failure to ensure that both client and server are using the same sequence
+sizes will result in invalid output.
diff --git a/cppe/demo/IceE/throughput/Server.cpp b/cppe/demo/IceE/throughput/Server.cpp
index 78d459eda97..b33bd0a3eff 100644
--- a/cppe/demo/IceE/throughput/Server.cpp
+++ b/cppe/demo/IceE/throughput/Server.cpp
@@ -14,8 +14,20 @@ using namespace std;
int
run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator)
{
+ //
+ // Check if we need to run with small sequences
+ //
+ int reduce = 1;
+ for(int i = 0; i < argc; ++i)
+ {
+ if(strcmp(argv[i], "--small") == 0)
+ {
+ reduce = 100;
+ }
+ }
+
Ice::ObjectAdapterPtr adapter = communicator->createObjectAdapter("Throughput");
- Ice::ObjectPtr object = new ThroughputI;
+ Ice::ObjectPtr object = new ThroughputI(reduce);
adapter->add(object, Ice::stringToIdentity("throughput"));
adapter->activate();
communicator->waitForShutdown();
diff --git a/cppe/demo/IceE/throughput/ThroughputI.cpp b/cppe/demo/IceE/throughput/ThroughputI.cpp
index c861e4cb420..7baeeca9394 100644
--- a/cppe/demo/IceE/throughput/ThroughputI.cpp
+++ b/cppe/demo/IceE/throughput/ThroughputI.cpp
@@ -12,19 +12,19 @@
using namespace std;
using namespace Demo;
-ThroughputI::ThroughputI() :
- _byteSeq(ByteSeqSize, 0),
- _stringSeq(StringSeqSize, "hello"),
- _structSeq(StringDoubleSeqSize),
- _fixedSeq(FixedSeqSize)
+ThroughputI::ThroughputI(int reduce) :
+ _byteSeq(ByteSeqSize / reduce, 0),
+ _stringSeq(StringSeqSize / reduce, "hello"),
+ _structSeq(StringDoubleSeqSize / reduce),
+ _fixedSeq(FixedSeqSize / reduce)
{
int i;
- for(i = 0; i < StringDoubleSeqSize; ++i)
+ for(i = 0; i < StringDoubleSeqSize / reduce; ++i)
{
_structSeq[i].s = "hello";
_structSeq[i].d = 3.14;
}
- for(i = 0; i < FixedSeqSize; ++i)
+ for(i = 0; i < FixedSeqSize / reduce; ++i)
{
_fixedSeq[i].i = 0;
_fixedSeq[i].j = 0;
diff --git a/cppe/demo/IceE/throughput/ThroughputI.h b/cppe/demo/IceE/throughput/ThroughputI.h
index 3f880edf209..b2273ad5152 100644
--- a/cppe/demo/IceE/throughput/ThroughputI.h
+++ b/cppe/demo/IceE/throughput/ThroughputI.h
@@ -17,7 +17,7 @@ class ThroughputI : public Demo::Throughput
{
public:
- ThroughputI();
+ ThroughputI(int);
virtual void sendByteSeq(const Demo::ByteSeq&, const Ice::Current&);
virtual Demo::ByteSeq recvByteSeq(const Ice::Current&);
diff --git a/cppe/demo/IceE/throughput/WinCEClient.cpp b/cppe/demo/IceE/throughput/WinCEClient.cpp
new file mode 100755
index 00000000000..6a5bbefb987
--- /dev/null
+++ b/cppe/demo/IceE/throughput/WinCEClient.cpp
@@ -0,0 +1,467 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2005 ZeroC, Inc. All rights reserved.
+//
+// This copy of Ice-E is licensed to you under the terms described in the
+// ICEE_LICENSE file included in this distribution.
+//
+// **********************************************************************
+
+#include <IceE/IceE.h>
+#include <Throughput.h>
+
+using namespace std;
+using namespace Demo;
+
+static HWND editHwnd;
+static bool wmDestroy = false;
+
+static LRESULT CALLBACK
+WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
+{
+ switch(msg)
+ {
+ case WM_CREATE:
+ {
+ RECT rcClient;
+ GetClientRect(hWnd, &rcClient);
+ editHwnd = CreateWindowEx(WS_EX_CLIENTEDGE, L"EDIT", L"",
+ WS_CHILD | WS_VISIBLE | WS_VSCROLL | ES_MULTILINE,
+ 0, 0, rcClient.right - rcClient.left, rcClient.bottom - rcClient.top,
+ hWnd, (HMENU)101, GetModuleHandle(NULL), NULL);
+ assert(editHwnd != NULL);
+ }
+ break;
+
+ case WM_SIZE:
+ {
+ RECT rcClient;
+ GetClientRect(hWnd, &rcClient);
+ SetWindowPos(editHwnd, NULL, 0, 0, rcClient.right, rcClient.bottom, SWP_NOZORDER);
+ }
+ break;
+
+ case WM_CLOSE:
+ DestroyWindow(hWnd);
+ break;
+
+ case WM_DESTROY:
+ wmDestroy = true;
+ PostQuitMessage(0);
+ break;
+
+ default:
+ return DefWindowProc(hWnd, msg, wParam, lParam);
+ }
+ return 0;
+}
+
+int WINAPI
+WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPTSTR lpCmdLine, int nCmdShow)
+{
+ static const TCHAR windowClassName[] = L"Throughput Client";
+ WNDCLASS wc;
+
+ wc.style = CS_HREDRAW|CS_VREDRAW;
+ wc.lpfnWndProc = (WNDPROC)WndProc;
+ wc.cbClsExtra = 0;
+ wc.cbWndExtra = 0;
+ wc.hInstance = hInstance;
+ wc.hIcon = LoadIcon(NULL, 0);
+ wc.hCursor = 0;
+ wc.hbrBackground = (HBRUSH) GetStockObject(WHITE_BRUSH);
+ wc.lpszMenuName = NULL;
+ wc.lpszClassName = windowClassName;
+
+ if(!RegisterClass(&wc))
+ {
+ MessageBox(NULL, L"Window Registration Failed!", L"Error!",
+ MB_ICONEXCLAMATION | MB_OK);
+ return 0;
+ }
+
+ RECT rect;
+ GetClientRect(GetDesktopWindow(), &rect);
+ int width = rect.right - rect.left;
+ if(width > 320)
+ {
+ width = 320;
+ }
+ int height = rect.bottom - rect.top;
+ if(height > 200)
+ {
+ height = 200;
+ }
+ HWND mainWnd = CreateWindow(windowClassName, L"Throughput Client", WS_VISIBLE|WS_OVERLAPPED|WS_SYSMENU|WS_SIZEBOX,
+ CW_USEDEFAULT, CW_USEDEFAULT, width, height,
+ NULL, NULL, hInstance, NULL);
+ if(mainWnd == NULL)
+ {
+ MessageBox(NULL, L"Window Creation Failed!", L"Error!", MB_ICONEXCLAMATION | MB_OK);
+ return 0;
+ }
+
+ ShowWindow(mainWnd, SW_SHOW);
+ UpdateWindow(mainWnd);
+
+ int status = EXIT_SUCCESS;
+ Ice::CommunicatorPtr communicator;
+
+ try
+ {
+ Ice::PropertiesPtr properties = Ice::createProperties();
+
+ //
+ // Set a default value for Hello.Proxy so that the demo will
+ // run without a configuration file.
+ //
+ properties->setProperty("Throughput.Throughput", "throughput:tcp -p 10000");
+
+ //
+ // Now, load the configuration file if present.
+ //
+ try
+ {
+ properties->load("config");
+ }
+ catch(const Ice::FileException&)
+ {
+ }
+ communicator = Ice::initializeWithProperties(__argc, __argv, properties);
+
+ const char* proxyProperty = "Throughput.Throughput";
+ string proxy = properties->getProperty(proxyProperty);
+
+ //
+ // We use a fixed string so that the demo will run without a
+ // configuration file.
+ //
+ ThroughputPrx throughput = ThroughputPrx::checkedCast(communicator->stringToProxy(proxy));
+ if(!throughput)
+ {
+ MessageBox(NULL, L"invalid proxy", L"Throughput Client", MB_ICONEXCLAMATION | MB_OK);
+ return EXIT_FAILURE;
+ }
+ ThroughputPrx throughputOneway = ThroughputPrx::uncheckedCast(throughput->ice_oneway());
+
+ //
+ // The amount by which we reduce buffer sizes for CE runs
+ //
+ const int reduce = 100;
+
+ //
+ // Initialize data structures
+ //
+ ByteSeq byteSeq(ByteSeqSize / reduce, 0);
+
+ StringSeq stringSeq(StringSeqSize / reduce, "hello");
+
+ StringDoubleSeq structSeq(StringDoubleSeqSize / 100);
+ int i;
+ for(i = 0; i < StringDoubleSeqSize / reduce; ++i)
+ {
+ structSeq[i].s = "hello";
+ structSeq[i].d = 3.14;
+ }
+
+ FixedSeq fixedSeq(FixedSeqSize / reduce);
+ for(i = 0; i < FixedSeqSize / reduce; ++i)
+ {
+ fixedSeq[i].i = 0;
+ fixedSeq[i].j = 0;
+ fixedSeq[i].d = 0;
+ }
+
+ const int repetitions = 1000;
+
+ // Initial ping to setup the connection.
+ throughput->ice_ping();
+
+ ::SendMessage(editHwnd, EM_REPLACESEL, (WPARAM)FALSE,
+ (LPARAM)L"Running throughput tests (this may take a while)\r\n");
+
+ for(int type = 0; type < 4; ++type)
+ {
+ wchar_t* data;
+ int seqSize;
+ if(type == 0)
+ {
+ data = L"byte";
+ seqSize = ByteSeqSize / reduce;
+ }
+ else if(type == 1)
+ {
+ data = L"string";
+ seqSize = StringSeqSize / reduce;
+ }
+ else if(type == 2)
+ {
+ data = L"variable-length struct";
+ seqSize = StringDoubleSeqSize / reduce;
+ }
+ else if(type == 3)
+ {
+ data = L"fixed-length struct";
+ seqSize = FixedSeqSize / reduce;
+ }
+
+
+ for(int mode = 0; mode < 4; ++mode)
+ {
+ wchar_t* action;
+ wchar_t* qualifier = L"";
+ if(mode == 0)
+ {
+ action = L"sending";
+ }
+ else if(mode == 1)
+ {
+ action = L"sending";
+ qualifier = L" as oneway";
+ }
+ else if(mode == 2)
+ {
+ action = L"receiving";
+ }
+ else if(mode == 3)
+ {
+ action = L"sending and receiving";
+ }
+
+
+ wchar_t buf[1000];
+ wsprintf(buf, L"\r\n%s %d %s sequences of size %d%s\r\n", action, repetitions, data, seqSize,
+ qualifier);
+ ::SendMessage(editHwnd, EM_REPLACESEL, (WPARAM)FALSE, (LPARAM)buf);
+
+ IceUtil::Time tm = IceUtil::Time::now();
+ for(i = 0; i < repetitions; ++i)
+ {
+ switch(type)
+ {
+ case 0:
+ {
+ switch(mode)
+ {
+ case 0:
+ {
+ throughput->sendByteSeq(byteSeq);
+ break;
+ }
+
+ case 1:
+ {
+ throughputOneway->sendByteSeq(byteSeq);
+ break;
+ }
+
+ case 2:
+ {
+ throughput->recvByteSeq();
+ break;
+ }
+
+ case 3:
+ {
+ throughput->echoByteSeq(byteSeq);
+ break;
+ }
+ }
+ break;
+ }
+
+ case 1:
+ {
+ switch(mode)
+ {
+ case 0:
+ {
+ throughput->sendStringSeq(stringSeq);
+ break;
+ }
+
+ case 1:
+ {
+ throughputOneway->sendStringSeq(stringSeq);
+ break;
+ }
+
+ case 2:
+ {
+ throughput->recvStringSeq();
+ break;
+ }
+
+ case 3:
+ {
+ throughput->echoStringSeq(stringSeq);
+ break;
+ }
+ }
+ break;
+ }
+
+ case 2:
+ {
+ switch(mode)
+ {
+ case 0:
+ {
+ throughput->sendStructSeq(structSeq);
+ break;
+ }
+
+ case 1:
+ {
+ throughputOneway->sendStructSeq(structSeq);
+ break;
+ }
+
+ case 2:
+ {
+ throughput->recvStructSeq();
+ break;
+ }
+
+ case 3:
+ {
+ throughput->echoStructSeq(structSeq);
+ break;
+ }
+ }
+ break;
+ }
+
+ case 3:
+ {
+ switch(mode)
+ {
+ case 0:
+ {
+ throughput->sendFixedSeq(fixedSeq);
+ break;
+ }
+
+ case 1:
+ {
+ throughputOneway->sendFixedSeq(fixedSeq);
+ break;
+ }
+
+ case 2:
+ {
+ throughput->recvFixedSeq();
+ break;
+ }
+
+ case 3:
+ {
+ throughput->echoFixedSeq(fixedSeq);
+ break;
+ }
+ }
+ break;
+ }
+ }
+
+ if((i % 100) == 0)
+ {
+ ::SendMessage(editHwnd, EM_REPLACESEL, (WPARAM)FALSE, (LPARAM)L".");
+ //
+ // Run the message pump just in case the user tries to close the app.
+ //
+ MSG Msg;
+ while(PeekMessage(&Msg, NULL, 0, 0, PM_REMOVE))
+ {
+ TranslateMessage(&Msg);
+ DispatchMessage(&Msg);
+ }
+ if(wmDestroy)
+ {
+ break;
+ }
+ }
+ }
+ tm = IceUtil::Time::now() - tm;
+
+ wsprintf(buf, L"\r\ntime for %d sequences: %fms\r\ntime per sequence: %fms\r\n",
+ repetitions, tm.toMilliSecondsDouble(), tm.toMilliSecondsDouble() / repetitions);
+ ::SendMessage(editHwnd, EM_REPLACESEL, (WPARAM)FALSE, (LPARAM)buf);
+
+ int wireSize = 0;
+ switch(type)
+ {
+ case 0:
+ {
+ wireSize = 1;
+ break;
+ }
+ case 1:
+ {
+ wireSize = static_cast<int>(stringSeq[0].size());
+ break;
+ }
+ case 2:
+ {
+ wireSize = static_cast<int>(structSeq[0].s.size());
+ wireSize += 8; // Size of double on the wire.
+ break;
+ }
+ case 3:
+ {
+ wireSize = 16; // Size of two ints and a double on the wire.
+ break;
+ }
+ }
+ double mbit = repetitions * seqSize * wireSize * 8.0 / tm.toMicroSeconds();
+ if(mode == 3)
+ {
+ mbit *= 2;
+ }
+ wsprintf(buf, L"throughput: %f MBit/s\r\n", mbit);
+ ::SendMessage(editHwnd, EM_REPLACESEL, (WPARAM)FALSE, (LPARAM)buf);
+ }
+ }
+
+ ::SendMessage(editHwnd, EM_REPLACESEL, (WPARAM)FALSE,
+ (LPARAM)L"\r\nThroughput tests completed\r\n");
+
+ //
+ // Run the message pump.
+ //
+ MSG Msg;
+ while(GetMessage(&Msg, NULL, 0, 0) > 0)
+ {
+ TranslateMessage(&Msg);
+ DispatchMessage(&Msg);
+ }
+ }
+ catch(const Ice::Exception& ex)
+ {
+ TCHAR wtext[1024];
+ string err = ex.toString();
+ mbstowcs(wtext, err.c_str(), err.size());
+ MessageBox(NULL, wtext, L"Error", MB_ICONEXCLAMATION | MB_OK);
+
+ status = EXIT_FAILURE;
+ }
+
+ if(communicator)
+ {
+ try
+ {
+ communicator->destroy();
+ }
+ catch(const Ice::Exception& ex)
+ {
+ TCHAR wtext[1024];
+ string err = ex.toString();
+ mbstowcs(wtext, err.c_str(), err.size());
+ MessageBox(NULL, wtext, L"Error", MB_ICONEXCLAMATION | MB_OK);
+
+ status = EXIT_FAILURE;
+ }
+ }
+
+ return status;
+}
diff --git a/cppe/demo/IceE/throughput/WinCEServer.cpp b/cppe/demo/IceE/throughput/WinCEServer.cpp
new file mode 100755
index 00000000000..4985806763f
--- /dev/null
+++ b/cppe/demo/IceE/throughput/WinCEServer.cpp
@@ -0,0 +1,182 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2005 ZeroC, Inc. All rights reserved.
+//
+// This copy of Ice-E is licensed to you under the terms described in the
+// ICEE_LICENSE file included in this distribution.
+//
+// **********************************************************************
+
+#include <IceE/IceE.h>
+#include <ThroughputI.h>
+
+using namespace std;
+using namespace Demo;
+
+static HWND editHwnd;
+
+static LRESULT CALLBACK
+WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
+{
+ switch(msg)
+ {
+ case WM_CREATE:
+ {
+ RECT rcClient;
+ GetClientRect(hWnd, &rcClient);
+ editHwnd = CreateWindowEx(WS_EX_CLIENTEDGE, L"EDIT", L"",
+ WS_CHILD | WS_VISIBLE | WS_VSCROLL /*| WS_HSCROLL*/ | ES_MULTILINE,
+ 0, 0, rcClient.right - rcClient.left, rcClient.bottom - rcClient.top,
+ hWnd, (HMENU)101, GetModuleHandle(NULL), NULL);
+ assert(editHwnd != NULL);
+ }
+ break;
+
+ case WM_SIZE:
+ {
+ RECT rcClient;
+ GetClientRect(hWnd, &rcClient);
+ SetWindowPos(editHwnd, NULL, 0, 0, rcClient.right, rcClient.bottom, SWP_NOZORDER);
+ }
+ break;
+
+ case WM_CLOSE:
+ DestroyWindow(hWnd);
+ break;
+
+ case WM_DESTROY:
+ PostQuitMessage(0);
+ break;
+
+ default:
+ return DefWindowProc(hWnd, msg, wParam, lParam);
+ }
+ return 0;
+}
+
+int WINAPI
+WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPTSTR lpCmdLine, int nCmdShow)
+{
+ static const TCHAR windowClassName[] = L"Throughput Server";
+ WNDCLASS wc;
+
+ wc.style = CS_HREDRAW|CS_VREDRAW;
+ wc.lpfnWndProc = (WNDPROC)WndProc;
+ wc.cbClsExtra = 0;
+ wc.cbWndExtra = 0;
+ wc.hInstance = hInstance;
+ wc.hIcon = LoadIcon(NULL, 0);
+ wc.hCursor = 0;
+ wc.hbrBackground = (HBRUSH) GetStockObject(WHITE_BRUSH);
+ wc.lpszMenuName = NULL;
+ wc.lpszClassName = windowClassName;
+
+ if(!RegisterClass(&wc))
+ {
+ MessageBox(NULL, L"Window Registration Failed!", L"Error!",
+ MB_ICONEXCLAMATION | MB_OK);
+ return 0;
+ }
+
+ RECT rect;
+ GetClientRect(GetDesktopWindow(), &rect);
+ int width = rect.right - rect.left;
+ if(width > 320)
+ {
+ width = 320;
+ }
+ int height = rect.bottom - rect.top;
+ if(height > 200)
+ {
+ height = 200;
+ }
+ HWND mainWnd = CreateWindow(windowClassName, L"Throughput Server", WS_VISIBLE|WS_OVERLAPPED|WS_SYSMENU|WS_SIZEBOX,
+ CW_USEDEFAULT, CW_USEDEFAULT, width, height,
+ NULL, NULL, hInstance, NULL);
+ if(mainWnd == NULL)
+ {
+ MessageBox(NULL, L"Window Creation Failed!", L"Error!", MB_ICONEXCLAMATION | MB_OK);
+ return 0;
+ }
+
+ ShowWindow(mainWnd, SW_SHOW);
+ UpdateWindow(mainWnd);
+
+ int status = EXIT_SUCCESS;
+
+ extern int __argc;
+ extern char **__argv;
+
+ Ice::CommunicatorPtr communicator;
+
+ try
+ {
+ Ice::PropertiesPtr properties = Ice::createProperties();
+ //
+ // Set a default value for Latency.Endpoints so that the demo
+ // will run without a configuration file.
+ //
+ properties->setProperty("Throughput.Endpoints","tcp -p 10000");
+
+ //
+ // Now, load the configuration file if present.
+ //
+ try
+ {
+ properties->load("config");
+ }
+ catch(const Ice::FileException&)
+ {
+ }
+
+ communicator = Ice::initializeWithProperties(__argc, __argv, properties);
+
+ Ice::ObjectAdapterPtr adapter = communicator->createObjectAdapter("Throughput");
+ Ice::ObjectPtr object = new ThroughputI(100);
+ adapter->add(object, Ice::stringToIdentity("throughput"));
+ adapter->activate();
+
+ //
+ // Display a helpful message to the user.
+ //
+ ::SendMessage(editHwnd, EM_REPLACESEL,
+ (WPARAM)FALSE, (LPARAM)L"Close the window to terminate the server.\r\n");
+
+ //
+ // Run the message pump.
+ //
+ MSG Msg;
+ while(GetMessage(&Msg, NULL, 0, 0) > 0)
+ {
+ TranslateMessage(&Msg);
+ DispatchMessage(&Msg);
+ }
+ }
+ catch(const Ice::Exception& ex)
+ {
+ TCHAR wtext[1024];
+ string err = ex.toString();
+ mbstowcs(wtext, err.c_str(), err.size());
+ MessageBox(mainWnd, wtext, L"Error", MB_ICONEXCLAMATION | MB_OK);
+
+ status = EXIT_FAILURE;
+ }
+
+ if(communicator)
+ {
+ try
+ {
+ communicator->destroy();
+ }
+ catch(const Ice::Exception& ex)
+ {
+ TCHAR wtext[1024];
+ string err = ex.toString();
+ mbstowcs(wtext, err.c_str(), err.size());
+ MessageBox(mainWnd, wtext, L"Error", MB_ICONEXCLAMATION | MB_OK);
+
+ status = EXIT_FAILURE;
+ }
+ }
+ return status;
+}
diff --git a/cppe/demo/IceE/throughput/throughputC.vcp b/cppe/demo/IceE/throughput/throughputC.vcp
new file mode 100755
index 00000000000..d473df06f9d
--- /dev/null
+++ b/cppe/demo/IceE/throughput/throughputC.vcp
@@ -0,0 +1,2064 @@
+# Microsoft eMbedded Visual Tools Project File - Name="throughputC" - Package Owner=<4>
+# Microsoft eMbedded Visual Tools Generated Build File, Format Version 6.02
+# ** DO NOT EDIT **
+
+# TARGTYPE "Win32 (WCE ARMV4) Application" 0xa301
+# TARGTYPE "Win32 (WCE emulator) Application" 0xa601
+
+CFG=throughputC - Win32 (WCE emulator) Release
+!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 "throughputC.vcn".
+!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 "throughputC.vcn" CFG="throughputC - Win32 (WCE emulator) Release"
+!MESSAGE
+!MESSAGE Possible choices for configuration are:
+!MESSAGE
+!MESSAGE "throughputC - Win32 (WCE emulator) Release" (based on "Win32 (WCE emulator) Application")
+!MESSAGE "throughputC - Win32 (WCE emulator) Debug" (based on "Win32 (WCE emulator) Application")
+!MESSAGE "throughputC - Win32 (WCE ARMV4) Release" (based on "Win32 (WCE ARMV4) Application")
+!MESSAGE "throughputC - Win32 (WCE ARMV4) Debug" (based on "Win32 (WCE ARMV4) Application")
+!MESSAGE "throughputC - Win32 (WCE ARMV4) Debug Static" (based on "Win32 (WCE ARMV4) Application")
+!MESSAGE "throughputC - Win32 (WCE ARMV4) Release Static" (based on "Win32 (WCE ARMV4) Application")
+!MESSAGE "throughputC - Win32 (WCE emulator) Debug Static" (based on "Win32 (WCE emulator) Application")
+!MESSAGE "throughputC - Win32 (WCE emulator) Release Static" (based on "Win32 (WCE emulator) Application")
+!MESSAGE
+
+# Begin Project
+# PROP AllowPerConfigDependencies 0
+# PROP Scc_ProjName ""
+# PROP Scc_LocalPath ""
+# PROP ATL_Project 2
+
+!IF "$(CFG)" == "throughputC - Win32 (WCE emulator) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "emulatorRel"
+# PROP BASE Intermediate_Dir "emulatorRel"
+# PROP BASE CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "emulatorRelC"
+# PROP Intermediate_Dir "emulatorRelC"
+# PROP CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /YX /Gs8192 /GF /O2 /c
+# ADD CPP /nologo /W3 /GR /GX /I "." /I "../../../include" /D "_i386_" /D "i_386_" /D "_X86_" /D "x86" /D "NDEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "ICEE_PURE_CLIENT" /Gs8192 /GF /O2 /c
+# SUBTRACT CPP /YX
+MTL=midl.exe
+# 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 $(CEx86Corelibc) /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+# ADD LINK32 $(CEx86Corelibc) coredll.lib ccrtrtti.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /out:"throughputClient.exe" /libpath:"../../../lib" /subsystem:$(CESubsystem) /MACHINE:IX86
+
+!ELSEIF "$(CFG)" == "throughputC - Win32 (WCE emulator) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "emulatorDbg"
+# PROP BASE Intermediate_Dir "emulatorDbg"
+# PROP BASE CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "emulatorDbgC"
+# PROP Intermediate_Dir "emulatorDbgC"
+# PROP CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d "$(CePlatform)" /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "_X86_" /d "x86" /d "_i386_" /r
+# ADD RSC /l 0x409 /d "$(CePlatform)" /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "_X86_" /d "x86" /d "_i386_" /r
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /GR /GX /Zi /Od /D "DEBUG" /D "_i386_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /YX /Gs8192 /GF /c
+# ADD CPP /nologo /W3 /GR /GX /Zi /Od /I "." /I "../../../include" /D "DEBUG" /D "_i386_" /D "i_386_" /D "_X86_" /D "x86" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "ICEE_PURE_CLIENT" /Gs8192 /GF /c
+# SUBTRACT CPP /YX
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+# ADD LINK32 $(CEx86Corelibc) coredll.lib ccrtrtti.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /out:"throughputClient.exe" /libpath:"../../../lib" /subsystem:$(CESubsystem) /MACHINE:IX86
+
+!ELSEIF "$(CFG)" == "throughputC - Win32 (WCE ARMV4) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "ARMV4Rel"
+# PROP BASE Intermediate_Dir "ARMV4Rel"
+# PROP BASE CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "ARMV4RelC"
+# PROP Intermediate_Dir "ARMV4RelC"
+# PROP CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "NDEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /d "ARMV4" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "NDEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /d "ARMV4" /r
+CPP=clarm.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D "ARMV4" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /O2 /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /GR /GX /Gy /I "." /I "../../../include" /D "ARM" /D "_ARM_" /D "ARMV4" /D "NDEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "ICEE_PURE_CLIENT" /O2 /M$(CECrtMT) /c
+# SUBTRACT CPP /YX
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+# ADD LINK32 coredll.lib ccrtrtti.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /out:"throughputClient.exe" /libpath:"../../../lib" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+
+!ELSEIF "$(CFG)" == "throughputC - Win32 (WCE ARMV4) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "ARMV4Dbg"
+# PROP BASE Intermediate_Dir "ARMV4Dbg"
+# PROP BASE CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "ARMV4DbgC"
+# PROP Intermediate_Dir "ARMV4DbgC"
+# PROP CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "DEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /d "ARMV4" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "DEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /d "ARMV4" /r
+CPP=clarm.exe
+# ADD BASE CPP /nologo /W3 /GR /GX /Zi /Od /D "DEBUG" /D "ARM" /D "_ARM_" /D "ARMV4" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /GR /GX /Zi /Od /Gy /I "." /I "../../../include" /D "DEBUG" /D "ARM" /D "_ARM_" /D "ARMV4" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "ICEE_PURE_CLIENT" /M$(CECrtMTDebug) /c
+# SUBTRACT CPP /YX
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+# ADD LINK32 coredll.lib ccrtrtti.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /out:"throughputClient.exe" /libpath:"../../../lib" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+
+!ELSEIF "$(CFG)" == "throughputC - Win32 (WCE ARMV4) Debug Static"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "ARMV4Debug Static"
+# PROP BASE Intermediate_Dir "ARMV4Debug Static"
+# PROP BASE CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Ignore_Export_Lib 0
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "ARMV4DebugStaticC"
+# PROP Intermediate_Dir "ARMV4DebugStaticC"
+# PROP CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "DEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /d "ARMV4" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "DEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /d "ARMV4" /r
+CPP=clarm.exe
+# ADD BASE CPP /nologo /W3 /GR /GX /Zi /Od /D "DEBUG" /D "ARM" /D "_ARM_" /D "ARMV4" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /GR /GX /Zi /Od /Gy /I "." /I "../../../include" /D "DEBUG" /D "ARM" /D "_ARM_" /D "ARMV4" /D "ICEE_STATIC_LIBS" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "ICEE_PURE_CLIENT" /M$(CECrtMTDebug) /c
+# SUBTRACT CPP /YX
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 coredll.lib ccrtrtti.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /out:"throughputClient.exe" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+# ADD LINK32 coredll.lib ccrtrtti.lib ws2.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /out:"throughputClient.exe" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+
+!ELSEIF "$(CFG)" == "throughputC - Win32 (WCE ARMV4) Release Static"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "ARMV4Release Static"
+# PROP BASE Intermediate_Dir "ARMV4Release Static"
+# PROP BASE CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Ignore_Export_Lib 0
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "ARMV4ReleaseStaticC"
+# PROP Intermediate_Dir "ARMV4ReleaseStaticC"
+# PROP CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "NDEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /d "ARMV4" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "NDEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /d "ARMV4" /r
+CPP=clarm.exe
+# ADD BASE CPP /nologo /W3 /GR /GX /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D "ARMV4" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /O2 /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /GR /GX /Gy /I "." /I "../../../include" /D "ARM" /D "_ARM_" /D "ARMV4" /D "NDEBUG" /D "ICEE_STATIC_LIBS" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "ICEE_PURE_CLIENT" /O2 /M$(CECrtMT) /c
+# SUBTRACT CPP /YX
+MTL=midl.exe
+# 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 coredll.lib ccrtrtti.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /out:"throughputClient.exe" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+# ADD LINK32 coredll.lib ccrtrtti.lib ws2.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /out:"throughputClient.exe" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+
+!ELSEIF "$(CFG)" == "throughputC - Win32 (WCE emulator) Debug Static"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "emulatorDebug Static"
+# PROP BASE Intermediate_Dir "emulatorDebug Static"
+# PROP BASE CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Ignore_Export_Lib 0
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "emulatorDebugStaticC"
+# PROP Intermediate_Dir "emulatorDebugStaticC"
+# PROP CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d "$(CePlatform)" /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "_X86_" /d "x86" /d "_i386_" /r
+# ADD RSC /l 0x409 /d "$(CePlatform)" /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "_X86_" /d "x86" /d "_i386_" /r
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /GR /GX /Zi /Od /D "DEBUG" /D "_i386_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /YX /Gs8192 /GF /c
+# ADD CPP /nologo /W3 /GR /GX /Zi /Od /I "." /I "../../../include" /D "DEBUG" /D "_i386_" /D "i_386_" /D "_X86_" /D "x86" /D "ICEE_STATIC_LIBS" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "ICEE_PURE_CLIENT" /Gs8192 /GF /c
+# SUBTRACT CPP /YX
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 $(CEx86Corelibc) coredll.lib ccrtrtti.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /out:"throughputClient.exe" /subsystem:$(CESubsystem) /MACHINE:IX86
+# ADD LINK32 $(CEx86Corelibc) coredll.lib ccrtrtti.lib ws2.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /out:"throughputClient.exe" /subsystem:$(CESubsystem) /MACHINE:IX86
+
+!ELSEIF "$(CFG)" == "throughputC - Win32 (WCE emulator) Release Static"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "emulatorRelease Static"
+# PROP BASE Intermediate_Dir "emulatorRelease Static"
+# PROP BASE CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Ignore_Export_Lib 0
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "emulatorReleaseStaticC"
+# PROP Intermediate_Dir "emulatorReleaseStaticC"
+# PROP CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /GR /GX /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /YX /Gs8192 /GF /O2 /c
+# ADD CPP /nologo /W3 /GR /GX /I "." /I "../../../include" /D "_i386_" /D "i_386_" /D "_X86_" /D "x86" /D "NDEBUG" /D "ICEE_STATIC_LIBS" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "ICEE_PURE_CLIENT" /Gs8192 /GF /O2 /c
+# SUBTRACT CPP /YX
+MTL=midl.exe
+# 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 $(CEx86Corelibc) coredll.lib ccrtrtti.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /out:"throughputClient.exe" /subsystem:$(CESubsystem) /MACHINE:IX86
+# ADD LINK32 $(CEx86Corelibc) coredll.lib ccrtrtti.lib ws2.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /out:"throughputClient.exe" /subsystem:$(CESubsystem) /MACHINE:IX86
+
+!ENDIF
+
+# Begin Target
+
+# Name "throughputC - Win32 (WCE emulator) Release"
+# Name "throughputC - Win32 (WCE emulator) Debug"
+# Name "throughputC - Win32 (WCE ARMV4) Release"
+# Name "throughputC - Win32 (WCE ARMV4) Debug"
+# Name "throughputC - Win32 (WCE ARMV4) Debug Static"
+# Name "throughputC - Win32 (WCE ARMV4) Release Static"
+# Name "throughputC - Win32 (WCE emulator) Debug Static"
+# Name "throughputC - Win32 (WCE emulator) Release Static"
+# Begin Group "Source Files"
+
+# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
+# Begin Source File
+
+SOURCE=.\Throughput.cpp
+
+!IF "$(CFG)" == "throughputC - Win32 (WCE emulator) Release"
+
+DEP_CPP_THROU=\
+ "..\..\..\include\IceE\BasicStream.h"\
+ "..\..\..\include\IceE\Buffer.h"\
+ "..\..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\include\IceE\CommunicatorF.h"\
+ "..\..\..\include\IceE\Cond.h"\
+ "..\..\..\include\IceE\Config.h"\
+ "..\..\..\include\IceE\ConnectionF.h"\
+ "..\..\..\include\IceE\Current.h"\
+ "..\..\..\include\IceE\DispatchStatus.h"\
+ "..\..\..\include\IceE\Exception.h"\
+ "..\..\..\include\IceE\ExceptionBase.h"\
+ "..\..\..\include\IceE\Handle.h"\
+ "..\..\..\include\IceE\Identity.h"\
+ "..\..\..\include\IceE\Incoming.h"\
+ "..\..\..\include\IceE\InstanceF.h"\
+ "..\..\..\include\IceE\LocalException.h"\
+ "..\..\..\include\IceE\LocalObject.h"\
+ "..\..\..\include\IceE\LocalObjectF.h"\
+ "..\..\..\include\IceE\Lock.h"\
+ "..\..\..\include\IceE\Monitor.h"\
+ "..\..\..\include\IceE\Mutex.h"\
+ "..\..\..\include\IceE\Object.h"\
+ "..\..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\..\include\IceE\ObjectF.h"\
+ "..\..\..\include\IceE\OperationMode.h"\
+ "..\..\..\include\IceE\Outgoing.h"\
+ "..\..\..\include\IceE\Proxy.h"\
+ "..\..\..\include\IceE\ProxyF.h"\
+ "..\..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\..\include\IceE\ProxyHandle.h"\
+ "..\..\..\include\IceE\ReferenceF.h"\
+ "..\..\..\include\IceE\ServantManagerF.h"\
+ "..\..\..\include\IceE\Shared.h"\
+ "..\..\..\include\IceE\ThreadException.h"\
+ "..\..\..\include\IceE\Time.h"\
+ "..\..\..\include\IceE\UndefSysMacros.h"\
+ ".\Throughput.h"\
+
+NODEP_CPP_THROU=\
+ "..\..\..\..\..\usr\include\pthread.h"\
+ ".\onfig\_epilog.h"\
+ ".\onfig\_msvc_warnings_off.h"\
+ ".\onfig\_prolog.h"\
+ ".\onfig\stl_apcc.h"\
+ ".\onfig\stl_apple.h"\
+ ".\onfig\stl_as400.h"\
+ ".\onfig\stl_bc.h"\
+ ".\onfig\stl_como.h"\
+ ".\onfig\stl_confix.h"\
+ ".\onfig\stl_cray.h"\
+ ".\onfig\stl_dec.h"\
+ ".\onfig\stl_dec_vms.h"\
+ ".\onfig\stl_dm.h"\
+ ".\onfig\stl_evc.h"\
+ ".\onfig\stl_fujitsu.h"\
+ ".\onfig\stl_gcc.h"\
+ ".\onfig\stl_hpacc.h"\
+ ".\onfig\stl_ibm.h"\
+ ".\onfig\stl_icc.h"\
+ ".\onfig\stl_intel.h"\
+ ".\onfig\stl_kai.h"\
+ ".\onfig\stl_msvc.h"\
+ ".\onfig\stl_mwerks.h"\
+ ".\onfig\stl_mycomp.h"\
+ ".\onfig\stl_sco.h"\
+ ".\onfig\stl_sgi.h"\
+ ".\onfig\stl_solaris.h"\
+ ".\onfig\stl_sunpro.h"\
+ ".\onfig\stl_symantec.h"\
+ ".\onfig\stl_watcom.h"\
+ ".\onfig\stl_wince.h"\
+ ".\onfig\stlcomp.h"\
+ ".\thread.h"\
+ ".\tl\_abbrevs.h"\
+ ".\tl\_config.h"\
+ ".\tl\_config_compat.h"\
+ ".\tl\_config_compat_post.h"\
+ ".\tl\_epilog.h"\
+ ".\tl\_prolog.h"\
+ ".\tl\_site_config.h"\
+ ".\tl\_stlport_version.h"\
+ ".\tl_user_config.h"\
+
+
+!ELSEIF "$(CFG)" == "throughputC - Win32 (WCE emulator) Debug"
+
+DEP_CPP_THROU=\
+ "..\..\..\include\IceE\BasicStream.h"\
+ "..\..\..\include\IceE\Buffer.h"\
+ "..\..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\include\IceE\CommunicatorF.h"\
+ "..\..\..\include\IceE\Cond.h"\
+ "..\..\..\include\IceE\Config.h"\
+ "..\..\..\include\IceE\ConnectionF.h"\
+ "..\..\..\include\IceE\Current.h"\
+ "..\..\..\include\IceE\DispatchStatus.h"\
+ "..\..\..\include\IceE\Exception.h"\
+ "..\..\..\include\IceE\ExceptionBase.h"\
+ "..\..\..\include\IceE\Handle.h"\
+ "..\..\..\include\IceE\Identity.h"\
+ "..\..\..\include\IceE\Incoming.h"\
+ "..\..\..\include\IceE\InstanceF.h"\
+ "..\..\..\include\IceE\LocalException.h"\
+ "..\..\..\include\IceE\LocalObject.h"\
+ "..\..\..\include\IceE\LocalObjectF.h"\
+ "..\..\..\include\IceE\Lock.h"\
+ "..\..\..\include\IceE\Monitor.h"\
+ "..\..\..\include\IceE\Mutex.h"\
+ "..\..\..\include\IceE\Object.h"\
+ "..\..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\..\include\IceE\ObjectF.h"\
+ "..\..\..\include\IceE\OperationMode.h"\
+ "..\..\..\include\IceE\Outgoing.h"\
+ "..\..\..\include\IceE\Proxy.h"\
+ "..\..\..\include\IceE\ProxyF.h"\
+ "..\..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\..\include\IceE\ProxyHandle.h"\
+ "..\..\..\include\IceE\ReferenceF.h"\
+ "..\..\..\include\IceE\ServantManagerF.h"\
+ "..\..\..\include\IceE\Shared.h"\
+ "..\..\..\include\IceE\ThreadException.h"\
+ "..\..\..\include\IceE\Time.h"\
+ "..\..\..\include\IceE\UndefSysMacros.h"\
+ ".\Throughput.h"\
+
+NODEP_CPP_THROU=\
+ "..\..\..\..\..\usr\include\pthread.h"\
+ ".\onfig\_epilog.h"\
+ ".\onfig\_msvc_warnings_off.h"\
+ ".\onfig\_prolog.h"\
+ ".\onfig\stl_apcc.h"\
+ ".\onfig\stl_apple.h"\
+ ".\onfig\stl_as400.h"\
+ ".\onfig\stl_bc.h"\
+ ".\onfig\stl_como.h"\
+ ".\onfig\stl_confix.h"\
+ ".\onfig\stl_cray.h"\
+ ".\onfig\stl_dec.h"\
+ ".\onfig\stl_dec_vms.h"\
+ ".\onfig\stl_dm.h"\
+ ".\onfig\stl_evc.h"\
+ ".\onfig\stl_fujitsu.h"\
+ ".\onfig\stl_gcc.h"\
+ ".\onfig\stl_hpacc.h"\
+ ".\onfig\stl_ibm.h"\
+ ".\onfig\stl_icc.h"\
+ ".\onfig\stl_intel.h"\
+ ".\onfig\stl_kai.h"\
+ ".\onfig\stl_msvc.h"\
+ ".\onfig\stl_mwerks.h"\
+ ".\onfig\stl_mycomp.h"\
+ ".\onfig\stl_sco.h"\
+ ".\onfig\stl_sgi.h"\
+ ".\onfig\stl_solaris.h"\
+ ".\onfig\stl_sunpro.h"\
+ ".\onfig\stl_symantec.h"\
+ ".\onfig\stl_watcom.h"\
+ ".\onfig\stl_wince.h"\
+ ".\onfig\stlcomp.h"\
+ ".\thread.h"\
+ ".\tl\_abbrevs.h"\
+ ".\tl\_config.h"\
+ ".\tl\_config_compat.h"\
+ ".\tl\_config_compat_post.h"\
+ ".\tl\_epilog.h"\
+ ".\tl\_prolog.h"\
+ ".\tl\_site_config.h"\
+ ".\tl\_stlport_version.h"\
+ ".\tl_user_config.h"\
+
+
+!ELSEIF "$(CFG)" == "throughputC - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_THROU=\
+ "..\..\..\include\IceE\BasicStream.h"\
+ "..\..\..\include\IceE\Buffer.h"\
+ "..\..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\include\IceE\CommunicatorF.h"\
+ "..\..\..\include\IceE\Cond.h"\
+ "..\..\..\include\IceE\Config.h"\
+ "..\..\..\include\IceE\ConnectionF.h"\
+ "..\..\..\include\IceE\Current.h"\
+ "..\..\..\include\IceE\DispatchStatus.h"\
+ "..\..\..\include\IceE\Exception.h"\
+ "..\..\..\include\IceE\ExceptionBase.h"\
+ "..\..\..\include\IceE\Handle.h"\
+ "..\..\..\include\IceE\Identity.h"\
+ "..\..\..\include\IceE\Incoming.h"\
+ "..\..\..\include\IceE\InstanceF.h"\
+ "..\..\..\include\IceE\LocalException.h"\
+ "..\..\..\include\IceE\LocalObject.h"\
+ "..\..\..\include\IceE\LocalObjectF.h"\
+ "..\..\..\include\IceE\Lock.h"\
+ "..\..\..\include\IceE\Monitor.h"\
+ "..\..\..\include\IceE\Mutex.h"\
+ "..\..\..\include\IceE\Object.h"\
+ "..\..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\..\include\IceE\ObjectF.h"\
+ "..\..\..\include\IceE\OperationMode.h"\
+ "..\..\..\include\IceE\Outgoing.h"\
+ "..\..\..\include\IceE\Proxy.h"\
+ "..\..\..\include\IceE\ProxyF.h"\
+ "..\..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\..\include\IceE\ProxyHandle.h"\
+ "..\..\..\include\IceE\ReferenceF.h"\
+ "..\..\..\include\IceE\ServantManagerF.h"\
+ "..\..\..\include\IceE\Shared.h"\
+ "..\..\..\include\IceE\ThreadException.h"\
+ "..\..\..\include\IceE\Time.h"\
+ "..\..\..\include\IceE\UndefSysMacros.h"\
+ ".\Throughput.h"\
+
+NODEP_CPP_THROU=\
+ "..\..\..\..\..\usr\include\pthread.h"\
+ ".\onfig\_epilog.h"\
+ ".\onfig\_msvc_warnings_off.h"\
+ ".\onfig\_prolog.h"\
+ ".\onfig\stl_apcc.h"\
+ ".\onfig\stl_apple.h"\
+ ".\onfig\stl_as400.h"\
+ ".\onfig\stl_bc.h"\
+ ".\onfig\stl_como.h"\
+ ".\onfig\stl_confix.h"\
+ ".\onfig\stl_cray.h"\
+ ".\onfig\stl_dec.h"\
+ ".\onfig\stl_dec_vms.h"\
+ ".\onfig\stl_dm.h"\
+ ".\onfig\stl_evc.h"\
+ ".\onfig\stl_fujitsu.h"\
+ ".\onfig\stl_gcc.h"\
+ ".\onfig\stl_hpacc.h"\
+ ".\onfig\stl_ibm.h"\
+ ".\onfig\stl_icc.h"\
+ ".\onfig\stl_intel.h"\
+ ".\onfig\stl_kai.h"\
+ ".\onfig\stl_msvc.h"\
+ ".\onfig\stl_mwerks.h"\
+ ".\onfig\stl_mycomp.h"\
+ ".\onfig\stl_sco.h"\
+ ".\onfig\stl_sgi.h"\
+ ".\onfig\stl_solaris.h"\
+ ".\onfig\stl_sunpro.h"\
+ ".\onfig\stl_symantec.h"\
+ ".\onfig\stl_watcom.h"\
+ ".\onfig\stl_wince.h"\
+ ".\onfig\stlcomp.h"\
+ ".\thread.h"\
+ ".\tl\_abbrevs.h"\
+ ".\tl\_config.h"\
+ ".\tl\_config_compat.h"\
+ ".\tl\_config_compat_post.h"\
+ ".\tl\_epilog.h"\
+ ".\tl\_prolog.h"\
+ ".\tl\_site_config.h"\
+ ".\tl\_stlport_version.h"\
+ ".\tl_user_config.h"\
+
+
+!ELSEIF "$(CFG)" == "throughputC - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_THROU=\
+ "..\..\..\include\IceE\BasicStream.h"\
+ "..\..\..\include\IceE\Buffer.h"\
+ "..\..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\include\IceE\CommunicatorF.h"\
+ "..\..\..\include\IceE\Cond.h"\
+ "..\..\..\include\IceE\Config.h"\
+ "..\..\..\include\IceE\ConnectionF.h"\
+ "..\..\..\include\IceE\Current.h"\
+ "..\..\..\include\IceE\DispatchStatus.h"\
+ "..\..\..\include\IceE\Exception.h"\
+ "..\..\..\include\IceE\ExceptionBase.h"\
+ "..\..\..\include\IceE\Handle.h"\
+ "..\..\..\include\IceE\Identity.h"\
+ "..\..\..\include\IceE\Incoming.h"\
+ "..\..\..\include\IceE\InstanceF.h"\
+ "..\..\..\include\IceE\LocalException.h"\
+ "..\..\..\include\IceE\LocalObject.h"\
+ "..\..\..\include\IceE\LocalObjectF.h"\
+ "..\..\..\include\IceE\Lock.h"\
+ "..\..\..\include\IceE\Monitor.h"\
+ "..\..\..\include\IceE\Mutex.h"\
+ "..\..\..\include\IceE\Object.h"\
+ "..\..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\..\include\IceE\ObjectF.h"\
+ "..\..\..\include\IceE\OperationMode.h"\
+ "..\..\..\include\IceE\Outgoing.h"\
+ "..\..\..\include\IceE\Proxy.h"\
+ "..\..\..\include\IceE\ProxyF.h"\
+ "..\..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\..\include\IceE\ProxyHandle.h"\
+ "..\..\..\include\IceE\ReferenceF.h"\
+ "..\..\..\include\IceE\ServantManagerF.h"\
+ "..\..\..\include\IceE\Shared.h"\
+ "..\..\..\include\IceE\ThreadException.h"\
+ "..\..\..\include\IceE\Time.h"\
+ "..\..\..\include\IceE\UndefSysMacros.h"\
+ ".\Throughput.h"\
+
+NODEP_CPP_THROU=\
+ "..\..\..\..\..\usr\include\pthread.h"\
+ ".\onfig\_epilog.h"\
+ ".\onfig\_msvc_warnings_off.h"\
+ ".\onfig\_prolog.h"\
+ ".\onfig\stl_apcc.h"\
+ ".\onfig\stl_apple.h"\
+ ".\onfig\stl_as400.h"\
+ ".\onfig\stl_bc.h"\
+ ".\onfig\stl_como.h"\
+ ".\onfig\stl_confix.h"\
+ ".\onfig\stl_cray.h"\
+ ".\onfig\stl_dec.h"\
+ ".\onfig\stl_dec_vms.h"\
+ ".\onfig\stl_dm.h"\
+ ".\onfig\stl_evc.h"\
+ ".\onfig\stl_fujitsu.h"\
+ ".\onfig\stl_gcc.h"\
+ ".\onfig\stl_hpacc.h"\
+ ".\onfig\stl_ibm.h"\
+ ".\onfig\stl_icc.h"\
+ ".\onfig\stl_intel.h"\
+ ".\onfig\stl_kai.h"\
+ ".\onfig\stl_msvc.h"\
+ ".\onfig\stl_mwerks.h"\
+ ".\onfig\stl_mycomp.h"\
+ ".\onfig\stl_sco.h"\
+ ".\onfig\stl_sgi.h"\
+ ".\onfig\stl_solaris.h"\
+ ".\onfig\stl_sunpro.h"\
+ ".\onfig\stl_symantec.h"\
+ ".\onfig\stl_watcom.h"\
+ ".\onfig\stl_wince.h"\
+ ".\onfig\stlcomp.h"\
+ ".\thread.h"\
+ ".\tl\_abbrevs.h"\
+ ".\tl\_config.h"\
+ ".\tl\_config_compat.h"\
+ ".\tl\_config_compat_post.h"\
+ ".\tl\_epilog.h"\
+ ".\tl\_prolog.h"\
+ ".\tl\_site_config.h"\
+ ".\tl\_stlport_version.h"\
+ ".\tl_user_config.h"\
+
+
+!ELSEIF "$(CFG)" == "throughputC - Win32 (WCE ARMV4) Debug Static"
+
+DEP_CPP_THROU=\
+ "..\..\..\include\IceE\BasicStream.h"\
+ "..\..\..\include\IceE\Buffer.h"\
+ "..\..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\include\IceE\CommunicatorF.h"\
+ "..\..\..\include\IceE\Cond.h"\
+ "..\..\..\include\IceE\Config.h"\
+ "..\..\..\include\IceE\ConnectionF.h"\
+ "..\..\..\include\IceE\Current.h"\
+ "..\..\..\include\IceE\DispatchStatus.h"\
+ "..\..\..\include\IceE\Exception.h"\
+ "..\..\..\include\IceE\ExceptionBase.h"\
+ "..\..\..\include\IceE\Handle.h"\
+ "..\..\..\include\IceE\Identity.h"\
+ "..\..\..\include\IceE\Incoming.h"\
+ "..\..\..\include\IceE\InstanceF.h"\
+ "..\..\..\include\IceE\LocalException.h"\
+ "..\..\..\include\IceE\LocalObject.h"\
+ "..\..\..\include\IceE\LocalObjectF.h"\
+ "..\..\..\include\IceE\Lock.h"\
+ "..\..\..\include\IceE\Monitor.h"\
+ "..\..\..\include\IceE\Mutex.h"\
+ "..\..\..\include\IceE\Object.h"\
+ "..\..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\..\include\IceE\ObjectF.h"\
+ "..\..\..\include\IceE\OperationMode.h"\
+ "..\..\..\include\IceE\Outgoing.h"\
+ "..\..\..\include\IceE\Proxy.h"\
+ "..\..\..\include\IceE\ProxyF.h"\
+ "..\..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\..\include\IceE\ProxyHandle.h"\
+ "..\..\..\include\IceE\ReferenceF.h"\
+ "..\..\..\include\IceE\ServantManagerF.h"\
+ "..\..\..\include\IceE\Shared.h"\
+ "..\..\..\include\IceE\ThreadException.h"\
+ "..\..\..\include\IceE\Time.h"\
+ "..\..\..\include\IceE\UndefSysMacros.h"\
+ ".\Throughput.h"\
+
+NODEP_CPP_THROU=\
+ "..\..\..\..\..\usr\include\pthread.h"\
+ ".\onfig\_epilog.h"\
+ ".\onfig\_msvc_warnings_off.h"\
+ ".\onfig\_prolog.h"\
+ ".\onfig\stl_apcc.h"\
+ ".\onfig\stl_apple.h"\
+ ".\onfig\stl_as400.h"\
+ ".\onfig\stl_bc.h"\
+ ".\onfig\stl_como.h"\
+ ".\onfig\stl_confix.h"\
+ ".\onfig\stl_cray.h"\
+ ".\onfig\stl_dec.h"\
+ ".\onfig\stl_dec_vms.h"\
+ ".\onfig\stl_dm.h"\
+ ".\onfig\stl_evc.h"\
+ ".\onfig\stl_fujitsu.h"\
+ ".\onfig\stl_gcc.h"\
+ ".\onfig\stl_hpacc.h"\
+ ".\onfig\stl_ibm.h"\
+ ".\onfig\stl_icc.h"\
+ ".\onfig\stl_intel.h"\
+ ".\onfig\stl_kai.h"\
+ ".\onfig\stl_msvc.h"\
+ ".\onfig\stl_mwerks.h"\
+ ".\onfig\stl_mycomp.h"\
+ ".\onfig\stl_sco.h"\
+ ".\onfig\stl_sgi.h"\
+ ".\onfig\stl_solaris.h"\
+ ".\onfig\stl_sunpro.h"\
+ ".\onfig\stl_symantec.h"\
+ ".\onfig\stl_watcom.h"\
+ ".\onfig\stl_wince.h"\
+ ".\onfig\stlcomp.h"\
+ ".\thread.h"\
+ ".\tl\_abbrevs.h"\
+ ".\tl\_config.h"\
+ ".\tl\_config_compat.h"\
+ ".\tl\_config_compat_post.h"\
+ ".\tl\_epilog.h"\
+ ".\tl\_prolog.h"\
+ ".\tl\_site_config.h"\
+ ".\tl\_stlport_version.h"\
+ ".\tl_user_config.h"\
+
+
+!ELSEIF "$(CFG)" == "throughputC - Win32 (WCE ARMV4) Release Static"
+
+DEP_CPP_THROU=\
+ "..\..\..\include\IceE\BasicStream.h"\
+ "..\..\..\include\IceE\Buffer.h"\
+ "..\..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\include\IceE\CommunicatorF.h"\
+ "..\..\..\include\IceE\Cond.h"\
+ "..\..\..\include\IceE\Config.h"\
+ "..\..\..\include\IceE\ConnectionF.h"\
+ "..\..\..\include\IceE\Current.h"\
+ "..\..\..\include\IceE\DispatchStatus.h"\
+ "..\..\..\include\IceE\Exception.h"\
+ "..\..\..\include\IceE\ExceptionBase.h"\
+ "..\..\..\include\IceE\Handle.h"\
+ "..\..\..\include\IceE\Identity.h"\
+ "..\..\..\include\IceE\Incoming.h"\
+ "..\..\..\include\IceE\InstanceF.h"\
+ "..\..\..\include\IceE\LocalException.h"\
+ "..\..\..\include\IceE\LocalObject.h"\
+ "..\..\..\include\IceE\LocalObjectF.h"\
+ "..\..\..\include\IceE\Lock.h"\
+ "..\..\..\include\IceE\Monitor.h"\
+ "..\..\..\include\IceE\Mutex.h"\
+ "..\..\..\include\IceE\Object.h"\
+ "..\..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\..\include\IceE\ObjectF.h"\
+ "..\..\..\include\IceE\OperationMode.h"\
+ "..\..\..\include\IceE\Outgoing.h"\
+ "..\..\..\include\IceE\Proxy.h"\
+ "..\..\..\include\IceE\ProxyF.h"\
+ "..\..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\..\include\IceE\ProxyHandle.h"\
+ "..\..\..\include\IceE\ReferenceF.h"\
+ "..\..\..\include\IceE\ServantManagerF.h"\
+ "..\..\..\include\IceE\Shared.h"\
+ "..\..\..\include\IceE\ThreadException.h"\
+ "..\..\..\include\IceE\Time.h"\
+ "..\..\..\include\IceE\UndefSysMacros.h"\
+ ".\Throughput.h"\
+
+NODEP_CPP_THROU=\
+ "..\..\..\..\..\usr\include\pthread.h"\
+ ".\onfig\_epilog.h"\
+ ".\onfig\_msvc_warnings_off.h"\
+ ".\onfig\_prolog.h"\
+ ".\onfig\stl_apcc.h"\
+ ".\onfig\stl_apple.h"\
+ ".\onfig\stl_as400.h"\
+ ".\onfig\stl_bc.h"\
+ ".\onfig\stl_como.h"\
+ ".\onfig\stl_confix.h"\
+ ".\onfig\stl_cray.h"\
+ ".\onfig\stl_dec.h"\
+ ".\onfig\stl_dec_vms.h"\
+ ".\onfig\stl_dm.h"\
+ ".\onfig\stl_evc.h"\
+ ".\onfig\stl_fujitsu.h"\
+ ".\onfig\stl_gcc.h"\
+ ".\onfig\stl_hpacc.h"\
+ ".\onfig\stl_ibm.h"\
+ ".\onfig\stl_icc.h"\
+ ".\onfig\stl_intel.h"\
+ ".\onfig\stl_kai.h"\
+ ".\onfig\stl_msvc.h"\
+ ".\onfig\stl_mwerks.h"\
+ ".\onfig\stl_mycomp.h"\
+ ".\onfig\stl_sco.h"\
+ ".\onfig\stl_sgi.h"\
+ ".\onfig\stl_solaris.h"\
+ ".\onfig\stl_sunpro.h"\
+ ".\onfig\stl_symantec.h"\
+ ".\onfig\stl_watcom.h"\
+ ".\onfig\stl_wince.h"\
+ ".\onfig\stlcomp.h"\
+ ".\thread.h"\
+ ".\tl\_abbrevs.h"\
+ ".\tl\_config.h"\
+ ".\tl\_config_compat.h"\
+ ".\tl\_config_compat_post.h"\
+ ".\tl\_epilog.h"\
+ ".\tl\_prolog.h"\
+ ".\tl\_site_config.h"\
+ ".\tl\_stlport_version.h"\
+ ".\tl_user_config.h"\
+
+
+!ELSEIF "$(CFG)" == "throughputC - Win32 (WCE emulator) Debug Static"
+
+DEP_CPP_THROU=\
+ "..\..\..\include\IceE\BasicStream.h"\
+ "..\..\..\include\IceE\Buffer.h"\
+ "..\..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\include\IceE\CommunicatorF.h"\
+ "..\..\..\include\IceE\Cond.h"\
+ "..\..\..\include\IceE\Config.h"\
+ "..\..\..\include\IceE\ConnectionF.h"\
+ "..\..\..\include\IceE\Current.h"\
+ "..\..\..\include\IceE\DispatchStatus.h"\
+ "..\..\..\include\IceE\Exception.h"\
+ "..\..\..\include\IceE\ExceptionBase.h"\
+ "..\..\..\include\IceE\Handle.h"\
+ "..\..\..\include\IceE\Identity.h"\
+ "..\..\..\include\IceE\Incoming.h"\
+ "..\..\..\include\IceE\InstanceF.h"\
+ "..\..\..\include\IceE\LocalException.h"\
+ "..\..\..\include\IceE\LocalObject.h"\
+ "..\..\..\include\IceE\LocalObjectF.h"\
+ "..\..\..\include\IceE\Lock.h"\
+ "..\..\..\include\IceE\Monitor.h"\
+ "..\..\..\include\IceE\Mutex.h"\
+ "..\..\..\include\IceE\Object.h"\
+ "..\..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\..\include\IceE\ObjectF.h"\
+ "..\..\..\include\IceE\OperationMode.h"\
+ "..\..\..\include\IceE\Outgoing.h"\
+ "..\..\..\include\IceE\Proxy.h"\
+ "..\..\..\include\IceE\ProxyF.h"\
+ "..\..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\..\include\IceE\ProxyHandle.h"\
+ "..\..\..\include\IceE\ReferenceF.h"\
+ "..\..\..\include\IceE\ServantManagerF.h"\
+ "..\..\..\include\IceE\Shared.h"\
+ "..\..\..\include\IceE\ThreadException.h"\
+ "..\..\..\include\IceE\Time.h"\
+ "..\..\..\include\IceE\UndefSysMacros.h"\
+ ".\Throughput.h"\
+
+NODEP_CPP_THROU=\
+ "..\..\..\..\..\usr\include\pthread.h"\
+ ".\onfig\_epilog.h"\
+ ".\onfig\_msvc_warnings_off.h"\
+ ".\onfig\_prolog.h"\
+ ".\onfig\stl_apcc.h"\
+ ".\onfig\stl_apple.h"\
+ ".\onfig\stl_as400.h"\
+ ".\onfig\stl_bc.h"\
+ ".\onfig\stl_como.h"\
+ ".\onfig\stl_confix.h"\
+ ".\onfig\stl_cray.h"\
+ ".\onfig\stl_dec.h"\
+ ".\onfig\stl_dec_vms.h"\
+ ".\onfig\stl_dm.h"\
+ ".\onfig\stl_evc.h"\
+ ".\onfig\stl_fujitsu.h"\
+ ".\onfig\stl_gcc.h"\
+ ".\onfig\stl_hpacc.h"\
+ ".\onfig\stl_ibm.h"\
+ ".\onfig\stl_icc.h"\
+ ".\onfig\stl_intel.h"\
+ ".\onfig\stl_kai.h"\
+ ".\onfig\stl_msvc.h"\
+ ".\onfig\stl_mwerks.h"\
+ ".\onfig\stl_mycomp.h"\
+ ".\onfig\stl_sco.h"\
+ ".\onfig\stl_sgi.h"\
+ ".\onfig\stl_solaris.h"\
+ ".\onfig\stl_sunpro.h"\
+ ".\onfig\stl_symantec.h"\
+ ".\onfig\stl_watcom.h"\
+ ".\onfig\stl_wince.h"\
+ ".\onfig\stlcomp.h"\
+ ".\thread.h"\
+ ".\tl\_abbrevs.h"\
+ ".\tl\_config.h"\
+ ".\tl\_config_compat.h"\
+ ".\tl\_config_compat_post.h"\
+ ".\tl\_epilog.h"\
+ ".\tl\_prolog.h"\
+ ".\tl\_site_config.h"\
+ ".\tl\_stlport_version.h"\
+ ".\tl_user_config.h"\
+
+
+!ELSEIF "$(CFG)" == "throughputC - Win32 (WCE emulator) Release Static"
+
+DEP_CPP_THROU=\
+ "..\..\..\include\IceE\BasicStream.h"\
+ "..\..\..\include\IceE\Buffer.h"\
+ "..\..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\include\IceE\CommunicatorF.h"\
+ "..\..\..\include\IceE\Cond.h"\
+ "..\..\..\include\IceE\Config.h"\
+ "..\..\..\include\IceE\ConnectionF.h"\
+ "..\..\..\include\IceE\Current.h"\
+ "..\..\..\include\IceE\DispatchStatus.h"\
+ "..\..\..\include\IceE\Exception.h"\
+ "..\..\..\include\IceE\ExceptionBase.h"\
+ "..\..\..\include\IceE\Handle.h"\
+ "..\..\..\include\IceE\Identity.h"\
+ "..\..\..\include\IceE\Incoming.h"\
+ "..\..\..\include\IceE\InstanceF.h"\
+ "..\..\..\include\IceE\LocalException.h"\
+ "..\..\..\include\IceE\LocalObject.h"\
+ "..\..\..\include\IceE\LocalObjectF.h"\
+ "..\..\..\include\IceE\Lock.h"\
+ "..\..\..\include\IceE\Monitor.h"\
+ "..\..\..\include\IceE\Mutex.h"\
+ "..\..\..\include\IceE\Object.h"\
+ "..\..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\..\include\IceE\ObjectF.h"\
+ "..\..\..\include\IceE\OperationMode.h"\
+ "..\..\..\include\IceE\Outgoing.h"\
+ "..\..\..\include\IceE\Proxy.h"\
+ "..\..\..\include\IceE\ProxyF.h"\
+ "..\..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\..\include\IceE\ProxyHandle.h"\
+ "..\..\..\include\IceE\ReferenceF.h"\
+ "..\..\..\include\IceE\ServantManagerF.h"\
+ "..\..\..\include\IceE\Shared.h"\
+ "..\..\..\include\IceE\ThreadException.h"\
+ "..\..\..\include\IceE\Time.h"\
+ "..\..\..\include\IceE\UndefSysMacros.h"\
+ ".\Throughput.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_THROU=\
+ "..\..\..\..\..\usr\include\pthread.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\WinCEClient.cpp
+
+!IF "$(CFG)" == "throughputC - Win32 (WCE emulator) Release"
+
+DEP_CPP_WINCE=\
+ "..\..\..\include\IceE\BasicStream.h"\
+ "..\..\..\include\IceE\Buffer.h"\
+ "..\..\..\include\IceE\Communicator.h"\
+ "..\..\..\include\IceE\CommunicatorF.h"\
+ "..\..\..\include\IceE\Cond.h"\
+ "..\..\..\include\IceE\Config.h"\
+ "..\..\..\include\IceE\Connection.h"\
+ "..\..\..\include\IceE\ConnectionF.h"\
+ "..\..\..\include\IceE\Current.h"\
+ "..\..\..\include\IceE\DispatchStatus.h"\
+ "..\..\..\include\IceE\EndpointF.h"\
+ "..\..\..\include\IceE\Exception.h"\
+ "..\..\..\include\IceE\ExceptionBase.h"\
+ "..\..\..\include\IceE\Functional.h"\
+ "..\..\..\include\IceE\Handle.h"\
+ "..\..\..\include\IceE\IceE.h"\
+ "..\..\..\include\IceE\IdentityUtil.h"\
+ "..\..\..\include\IceE\Incoming.h"\
+ "..\..\..\include\IceE\IncomingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Initialize.h"\
+ "..\..\..\include\IceE\InstanceF.h"\
+ "..\..\..\include\IceE\LocalObject.h"\
+ "..\..\..\include\IceE\LocalObjectF.h"\
+ "..\..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\..\include\IceE\Lock.h"\
+ "..\..\..\include\IceE\LoggerUtil.h"\
+ "..\..\..\include\IceE\Monitor.h"\
+ "..\..\..\include\IceE\Mutex.h"\
+ "..\..\..\include\IceE\Object.h"\
+ "..\..\..\include\IceE\ObjectAdapter.h"\
+ "..\..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\..\include\IceE\ObjectAdapterFactoryF.h"\
+ "..\..\..\include\IceE\ObjectF.h"\
+ "..\..\..\include\IceE\OperationMode.h"\
+ "..\..\..\include\IceE\Outgoing.h"\
+ "..\..\..\include\IceE\OutgoingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Properties.h"\
+ "..\..\..\include\IceE\PropertiesF.h"\
+ "..\..\..\include\IceE\Proxy.h"\
+ "..\..\..\include\IceE\ProxyF.h"\
+ "..\..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\..\include\IceE\ProxyHandle.h"\
+ "..\..\..\include\IceE\RecMutex.h"\
+ "..\..\..\include\IceE\ReferenceF.h"\
+ "..\..\..\include\IceE\ServantManagerF.h"\
+ "..\..\..\include\IceE\Shared.h"\
+ "..\..\..\include\IceE\Thread.h"\
+ "..\..\..\include\IceE\ThreadException.h"\
+ "..\..\..\include\IceE\Time.h"\
+ "..\..\..\include\IceE\TraceLevelsF.h"\
+ "..\..\..\include\IceE\TransceiverF.h"\
+ "..\..\..\include\IceE\UndefSysMacros.h"\
+
+NODEP_CPP_WINCE=\
+ "..\..\..\..\..\usr\include\pthread.h"\
+ "..\..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\include\IceE\FacetMap.h"\
+ "..\..\..\include\IceE\Identity.h"\
+ "..\..\..\include\IceE\LocalException.h"\
+ "..\..\..\include\IceE\LocatorF.h"\
+ "..\..\..\include\IceE\Logger.h"\
+ "..\..\..\include\IceE\LoggerF.h"\
+ "..\..\..\include\IceE\RouterF.h"\
+ ".\Hello.h"\
+ ".\onfig\_epilog.h"\
+ ".\onfig\_msvc_warnings_off.h"\
+ ".\onfig\_prolog.h"\
+ ".\onfig\stl_apcc.h"\
+ ".\onfig\stl_apple.h"\
+ ".\onfig\stl_as400.h"\
+ ".\onfig\stl_bc.h"\
+ ".\onfig\stl_como.h"\
+ ".\onfig\stl_confix.h"\
+ ".\onfig\stl_cray.h"\
+ ".\onfig\stl_dec.h"\
+ ".\onfig\stl_dec_vms.h"\
+ ".\onfig\stl_dm.h"\
+ ".\onfig\stl_evc.h"\
+ ".\onfig\stl_fujitsu.h"\
+ ".\onfig\stl_gcc.h"\
+ ".\onfig\stl_hpacc.h"\
+ ".\onfig\stl_ibm.h"\
+ ".\onfig\stl_icc.h"\
+ ".\onfig\stl_intel.h"\
+ ".\onfig\stl_kai.h"\
+ ".\onfig\stl_msvc.h"\
+ ".\onfig\stl_mwerks.h"\
+ ".\onfig\stl_mycomp.h"\
+ ".\onfig\stl_sco.h"\
+ ".\onfig\stl_sgi.h"\
+ ".\onfig\stl_solaris.h"\
+ ".\onfig\stl_sunpro.h"\
+ ".\onfig\stl_symantec.h"\
+ ".\onfig\stl_watcom.h"\
+ ".\onfig\stl_wince.h"\
+ ".\onfig\stlcomp.h"\
+ ".\thread.h"\
+ ".\tl\_abbrevs.h"\
+ ".\tl\_config.h"\
+ ".\tl\_config_compat.h"\
+ ".\tl\_config_compat_post.h"\
+ ".\tl\_epilog.h"\
+ ".\tl\_prolog.h"\
+ ".\tl\_site_config.h"\
+ ".\tl\_stlport_version.h"\
+ ".\tl_user_config.h"\
+
+
+!ELSEIF "$(CFG)" == "throughputC - Win32 (WCE emulator) Debug"
+
+DEP_CPP_WINCE=\
+ "..\..\..\include\IceE\BasicStream.h"\
+ "..\..\..\include\IceE\Buffer.h"\
+ "..\..\..\include\IceE\Communicator.h"\
+ "..\..\..\include\IceE\CommunicatorF.h"\
+ "..\..\..\include\IceE\Cond.h"\
+ "..\..\..\include\IceE\Config.h"\
+ "..\..\..\include\IceE\Connection.h"\
+ "..\..\..\include\IceE\ConnectionF.h"\
+ "..\..\..\include\IceE\Current.h"\
+ "..\..\..\include\IceE\DispatchStatus.h"\
+ "..\..\..\include\IceE\EndpointF.h"\
+ "..\..\..\include\IceE\Exception.h"\
+ "..\..\..\include\IceE\ExceptionBase.h"\
+ "..\..\..\include\IceE\Functional.h"\
+ "..\..\..\include\IceE\Handle.h"\
+ "..\..\..\include\IceE\IceE.h"\
+ "..\..\..\include\IceE\IdentityUtil.h"\
+ "..\..\..\include\IceE\Incoming.h"\
+ "..\..\..\include\IceE\IncomingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Initialize.h"\
+ "..\..\..\include\IceE\InstanceF.h"\
+ "..\..\..\include\IceE\LocalObject.h"\
+ "..\..\..\include\IceE\LocalObjectF.h"\
+ "..\..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\..\include\IceE\Lock.h"\
+ "..\..\..\include\IceE\LoggerUtil.h"\
+ "..\..\..\include\IceE\Monitor.h"\
+ "..\..\..\include\IceE\Mutex.h"\
+ "..\..\..\include\IceE\Object.h"\
+ "..\..\..\include\IceE\ObjectAdapter.h"\
+ "..\..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\..\include\IceE\ObjectAdapterFactoryF.h"\
+ "..\..\..\include\IceE\ObjectF.h"\
+ "..\..\..\include\IceE\OperationMode.h"\
+ "..\..\..\include\IceE\Outgoing.h"\
+ "..\..\..\include\IceE\OutgoingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Properties.h"\
+ "..\..\..\include\IceE\PropertiesF.h"\
+ "..\..\..\include\IceE\Proxy.h"\
+ "..\..\..\include\IceE\ProxyF.h"\
+ "..\..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\..\include\IceE\ProxyHandle.h"\
+ "..\..\..\include\IceE\RecMutex.h"\
+ "..\..\..\include\IceE\ReferenceF.h"\
+ "..\..\..\include\IceE\ServantManagerF.h"\
+ "..\..\..\include\IceE\Shared.h"\
+ "..\..\..\include\IceE\Thread.h"\
+ "..\..\..\include\IceE\ThreadException.h"\
+ "..\..\..\include\IceE\Time.h"\
+ "..\..\..\include\IceE\TraceLevelsF.h"\
+ "..\..\..\include\IceE\TransceiverF.h"\
+ "..\..\..\include\IceE\UndefSysMacros.h"\
+
+NODEP_CPP_WINCE=\
+ "..\..\..\..\..\usr\include\pthread.h"\
+ "..\..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\include\IceE\FacetMap.h"\
+ "..\..\..\include\IceE\Identity.h"\
+ "..\..\..\include\IceE\LocalException.h"\
+ "..\..\..\include\IceE\LocatorF.h"\
+ "..\..\..\include\IceE\Logger.h"\
+ "..\..\..\include\IceE\LoggerF.h"\
+ "..\..\..\include\IceE\RouterF.h"\
+ ".\Hello.h"\
+ ".\onfig\_epilog.h"\
+ ".\onfig\_msvc_warnings_off.h"\
+ ".\onfig\_prolog.h"\
+ ".\onfig\stl_apcc.h"\
+ ".\onfig\stl_apple.h"\
+ ".\onfig\stl_as400.h"\
+ ".\onfig\stl_bc.h"\
+ ".\onfig\stl_como.h"\
+ ".\onfig\stl_confix.h"\
+ ".\onfig\stl_cray.h"\
+ ".\onfig\stl_dec.h"\
+ ".\onfig\stl_dec_vms.h"\
+ ".\onfig\stl_dm.h"\
+ ".\onfig\stl_evc.h"\
+ ".\onfig\stl_fujitsu.h"\
+ ".\onfig\stl_gcc.h"\
+ ".\onfig\stl_hpacc.h"\
+ ".\onfig\stl_ibm.h"\
+ ".\onfig\stl_icc.h"\
+ ".\onfig\stl_intel.h"\
+ ".\onfig\stl_kai.h"\
+ ".\onfig\stl_msvc.h"\
+ ".\onfig\stl_mwerks.h"\
+ ".\onfig\stl_mycomp.h"\
+ ".\onfig\stl_sco.h"\
+ ".\onfig\stl_sgi.h"\
+ ".\onfig\stl_solaris.h"\
+ ".\onfig\stl_sunpro.h"\
+ ".\onfig\stl_symantec.h"\
+ ".\onfig\stl_watcom.h"\
+ ".\onfig\stl_wince.h"\
+ ".\onfig\stlcomp.h"\
+ ".\thread.h"\
+ ".\tl\_abbrevs.h"\
+ ".\tl\_config.h"\
+ ".\tl\_config_compat.h"\
+ ".\tl\_config_compat_post.h"\
+ ".\tl\_epilog.h"\
+ ".\tl\_prolog.h"\
+ ".\tl\_site_config.h"\
+ ".\tl\_stlport_version.h"\
+ ".\tl_user_config.h"\
+
+
+!ELSEIF "$(CFG)" == "throughputC - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_WINCE=\
+ "..\..\..\include\IceE\BasicStream.h"\
+ "..\..\..\include\IceE\Buffer.h"\
+ "..\..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\include\IceE\Communicator.h"\
+ "..\..\..\include\IceE\CommunicatorF.h"\
+ "..\..\..\include\IceE\Cond.h"\
+ "..\..\..\include\IceE\Config.h"\
+ "..\..\..\include\IceE\Connection.h"\
+ "..\..\..\include\IceE\ConnectionF.h"\
+ "..\..\..\include\IceE\Current.h"\
+ "..\..\..\include\IceE\DispatchStatus.h"\
+ "..\..\..\include\IceE\EndpointF.h"\
+ "..\..\..\include\IceE\Exception.h"\
+ "..\..\..\include\IceE\ExceptionBase.h"\
+ "..\..\..\include\IceE\FacetMap.h"\
+ "..\..\..\include\IceE\Functional.h"\
+ "..\..\..\include\IceE\Handle.h"\
+ "..\..\..\include\IceE\IceE.h"\
+ "..\..\..\include\IceE\Identity.h"\
+ "..\..\..\include\IceE\IdentityUtil.h"\
+ "..\..\..\include\IceE\Incoming.h"\
+ "..\..\..\include\IceE\IncomingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Initialize.h"\
+ "..\..\..\include\IceE\InstanceF.h"\
+ "..\..\..\include\IceE\LocalObject.h"\
+ "..\..\..\include\IceE\LocalObjectF.h"\
+ "..\..\..\include\IceE\LocatorF.h"\
+ "..\..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\..\include\IceE\Lock.h"\
+ "..\..\..\include\IceE\Logger.h"\
+ "..\..\..\include\IceE\LoggerF.h"\
+ "..\..\..\include\IceE\LoggerUtil.h"\
+ "..\..\..\include\IceE\Monitor.h"\
+ "..\..\..\include\IceE\Mutex.h"\
+ "..\..\..\include\IceE\Object.h"\
+ "..\..\..\include\IceE\ObjectAdapter.h"\
+ "..\..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\..\include\IceE\ObjectAdapterFactoryF.h"\
+ "..\..\..\include\IceE\ObjectF.h"\
+ "..\..\..\include\IceE\OperationMode.h"\
+ "..\..\..\include\IceE\Outgoing.h"\
+ "..\..\..\include\IceE\OutgoingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Properties.h"\
+ "..\..\..\include\IceE\PropertiesF.h"\
+ "..\..\..\include\IceE\Proxy.h"\
+ "..\..\..\include\IceE\ProxyF.h"\
+ "..\..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\..\include\IceE\ProxyHandle.h"\
+ "..\..\..\include\IceE\RecMutex.h"\
+ "..\..\..\include\IceE\ReferenceF.h"\
+ "..\..\..\include\IceE\RouterF.h"\
+ "..\..\..\include\IceE\ServantManagerF.h"\
+ "..\..\..\include\IceE\Shared.h"\
+ "..\..\..\include\IceE\Thread.h"\
+ "..\..\..\include\IceE\ThreadException.h"\
+ "..\..\..\include\IceE\Time.h"\
+ "..\..\..\include\IceE\TraceLevelsF.h"\
+ "..\..\..\include\IceE\TransceiverF.h"\
+ "..\..\..\include\IceE\UndefSysMacros.h"\
+
+NODEP_CPP_WINCE=\
+ "..\..\..\..\..\usr\include\pthread.h"\
+ "..\..\..\include\IceE\LocalExceptions.h"\
+ ".\Hello.h"\
+ ".\onfig\_epilog.h"\
+ ".\onfig\_msvc_warnings_off.h"\
+ ".\onfig\_prolog.h"\
+ ".\onfig\stl_apcc.h"\
+ ".\onfig\stl_apple.h"\
+ ".\onfig\stl_as400.h"\
+ ".\onfig\stl_bc.h"\
+ ".\onfig\stl_como.h"\
+ ".\onfig\stl_confix.h"\
+ ".\onfig\stl_cray.h"\
+ ".\onfig\stl_dec.h"\
+ ".\onfig\stl_dec_vms.h"\
+ ".\onfig\stl_dm.h"\
+ ".\onfig\stl_evc.h"\
+ ".\onfig\stl_fujitsu.h"\
+ ".\onfig\stl_gcc.h"\
+ ".\onfig\stl_hpacc.h"\
+ ".\onfig\stl_ibm.h"\
+ ".\onfig\stl_icc.h"\
+ ".\onfig\stl_intel.h"\
+ ".\onfig\stl_kai.h"\
+ ".\onfig\stl_msvc.h"\
+ ".\onfig\stl_mwerks.h"\
+ ".\onfig\stl_mycomp.h"\
+ ".\onfig\stl_sco.h"\
+ ".\onfig\stl_sgi.h"\
+ ".\onfig\stl_solaris.h"\
+ ".\onfig\stl_sunpro.h"\
+ ".\onfig\stl_symantec.h"\
+ ".\onfig\stl_watcom.h"\
+ ".\onfig\stl_wince.h"\
+ ".\onfig\stlcomp.h"\
+ ".\thread.h"\
+ ".\tl\_abbrevs.h"\
+ ".\tl\_config.h"\
+ ".\tl\_config_compat.h"\
+ ".\tl\_config_compat_post.h"\
+ ".\tl\_epilog.h"\
+ ".\tl\_prolog.h"\
+ ".\tl\_site_config.h"\
+ ".\tl\_stlport_version.h"\
+ ".\tl_user_config.h"\
+
+
+!ELSEIF "$(CFG)" == "throughputC - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_WINCE=\
+ "..\..\..\include\IceE\BasicStream.h"\
+ "..\..\..\include\IceE\Buffer.h"\
+ "..\..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\include\IceE\Communicator.h"\
+ "..\..\..\include\IceE\CommunicatorF.h"\
+ "..\..\..\include\IceE\Cond.h"\
+ "..\..\..\include\IceE\Config.h"\
+ "..\..\..\include\IceE\Connection.h"\
+ "..\..\..\include\IceE\ConnectionF.h"\
+ "..\..\..\include\IceE\Current.h"\
+ "..\..\..\include\IceE\DispatchStatus.h"\
+ "..\..\..\include\IceE\EndpointF.h"\
+ "..\..\..\include\IceE\Exception.h"\
+ "..\..\..\include\IceE\ExceptionBase.h"\
+ "..\..\..\include\IceE\FacetMap.h"\
+ "..\..\..\include\IceE\Functional.h"\
+ "..\..\..\include\IceE\Handle.h"\
+ "..\..\..\include\IceE\IceE.h"\
+ "..\..\..\include\IceE\Identity.h"\
+ "..\..\..\include\IceE\IdentityUtil.h"\
+ "..\..\..\include\IceE\Incoming.h"\
+ "..\..\..\include\IceE\IncomingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Initialize.h"\
+ "..\..\..\include\IceE\InstanceF.h"\
+ "..\..\..\include\IceE\LocalObject.h"\
+ "..\..\..\include\IceE\LocalObjectF.h"\
+ "..\..\..\include\IceE\LocatorF.h"\
+ "..\..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\..\include\IceE\Lock.h"\
+ "..\..\..\include\IceE\Logger.h"\
+ "..\..\..\include\IceE\LoggerF.h"\
+ "..\..\..\include\IceE\LoggerUtil.h"\
+ "..\..\..\include\IceE\Monitor.h"\
+ "..\..\..\include\IceE\Mutex.h"\
+ "..\..\..\include\IceE\Object.h"\
+ "..\..\..\include\IceE\ObjectAdapter.h"\
+ "..\..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\..\include\IceE\ObjectAdapterFactoryF.h"\
+ "..\..\..\include\IceE\ObjectF.h"\
+ "..\..\..\include\IceE\OperationMode.h"\
+ "..\..\..\include\IceE\Outgoing.h"\
+ "..\..\..\include\IceE\OutgoingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Properties.h"\
+ "..\..\..\include\IceE\PropertiesF.h"\
+ "..\..\..\include\IceE\Proxy.h"\
+ "..\..\..\include\IceE\ProxyF.h"\
+ "..\..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\..\include\IceE\ProxyHandle.h"\
+ "..\..\..\include\IceE\RecMutex.h"\
+ "..\..\..\include\IceE\ReferenceF.h"\
+ "..\..\..\include\IceE\RouterF.h"\
+ "..\..\..\include\IceE\ServantManagerF.h"\
+ "..\..\..\include\IceE\Shared.h"\
+ "..\..\..\include\IceE\Thread.h"\
+ "..\..\..\include\IceE\ThreadException.h"\
+ "..\..\..\include\IceE\Time.h"\
+ "..\..\..\include\IceE\TraceLevelsF.h"\
+ "..\..\..\include\IceE\TransceiverF.h"\
+ "..\..\..\include\IceE\UndefSysMacros.h"\
+
+NODEP_CPP_WINCE=\
+ "..\..\..\..\..\usr\include\pthread.h"\
+ "..\..\..\include\IceE\LocalExceptions.h"\
+ ".\Hello.h"\
+ ".\onfig\_epilog.h"\
+ ".\onfig\_msvc_warnings_off.h"\
+ ".\onfig\_prolog.h"\
+ ".\onfig\stl_apcc.h"\
+ ".\onfig\stl_apple.h"\
+ ".\onfig\stl_as400.h"\
+ ".\onfig\stl_bc.h"\
+ ".\onfig\stl_como.h"\
+ ".\onfig\stl_confix.h"\
+ ".\onfig\stl_cray.h"\
+ ".\onfig\stl_dec.h"\
+ ".\onfig\stl_dec_vms.h"\
+ ".\onfig\stl_dm.h"\
+ ".\onfig\stl_evc.h"\
+ ".\onfig\stl_fujitsu.h"\
+ ".\onfig\stl_gcc.h"\
+ ".\onfig\stl_hpacc.h"\
+ ".\onfig\stl_ibm.h"\
+ ".\onfig\stl_icc.h"\
+ ".\onfig\stl_intel.h"\
+ ".\onfig\stl_kai.h"\
+ ".\onfig\stl_msvc.h"\
+ ".\onfig\stl_mwerks.h"\
+ ".\onfig\stl_mycomp.h"\
+ ".\onfig\stl_sco.h"\
+ ".\onfig\stl_sgi.h"\
+ ".\onfig\stl_solaris.h"\
+ ".\onfig\stl_sunpro.h"\
+ ".\onfig\stl_symantec.h"\
+ ".\onfig\stl_watcom.h"\
+ ".\onfig\stl_wince.h"\
+ ".\onfig\stlcomp.h"\
+ ".\thread.h"\
+ ".\tl\_abbrevs.h"\
+ ".\tl\_config.h"\
+ ".\tl\_config_compat.h"\
+ ".\tl\_config_compat_post.h"\
+ ".\tl\_epilog.h"\
+ ".\tl\_prolog.h"\
+ ".\tl\_site_config.h"\
+ ".\tl\_stlport_version.h"\
+ ".\tl_user_config.h"\
+
+
+!ELSEIF "$(CFG)" == "throughputC - Win32 (WCE ARMV4) Debug Static"
+
+DEP_CPP_WINCE=\
+ "..\..\..\include\IceE\BasicStream.h"\
+ "..\..\..\include\IceE\Buffer.h"\
+ "..\..\..\include\IceE\Communicator.h"\
+ "..\..\..\include\IceE\CommunicatorF.h"\
+ "..\..\..\include\IceE\Cond.h"\
+ "..\..\..\include\IceE\Config.h"\
+ "..\..\..\include\IceE\Connection.h"\
+ "..\..\..\include\IceE\ConnectionF.h"\
+ "..\..\..\include\IceE\Current.h"\
+ "..\..\..\include\IceE\DispatchStatus.h"\
+ "..\..\..\include\IceE\EndpointF.h"\
+ "..\..\..\include\IceE\Exception.h"\
+ "..\..\..\include\IceE\ExceptionBase.h"\
+ "..\..\..\include\IceE\Functional.h"\
+ "..\..\..\include\IceE\Handle.h"\
+ "..\..\..\include\IceE\IceE.h"\
+ "..\..\..\include\IceE\IdentityUtil.h"\
+ "..\..\..\include\IceE\Incoming.h"\
+ "..\..\..\include\IceE\IncomingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Initialize.h"\
+ "..\..\..\include\IceE\InstanceF.h"\
+ "..\..\..\include\IceE\LocalObject.h"\
+ "..\..\..\include\IceE\LocalObjectF.h"\
+ "..\..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\..\include\IceE\Lock.h"\
+ "..\..\..\include\IceE\LoggerUtil.h"\
+ "..\..\..\include\IceE\Monitor.h"\
+ "..\..\..\include\IceE\Mutex.h"\
+ "..\..\..\include\IceE\Object.h"\
+ "..\..\..\include\IceE\ObjectAdapter.h"\
+ "..\..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\..\include\IceE\ObjectAdapterFactoryF.h"\
+ "..\..\..\include\IceE\ObjectF.h"\
+ "..\..\..\include\IceE\OperationMode.h"\
+ "..\..\..\include\IceE\Outgoing.h"\
+ "..\..\..\include\IceE\OutgoingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Properties.h"\
+ "..\..\..\include\IceE\PropertiesF.h"\
+ "..\..\..\include\IceE\Proxy.h"\
+ "..\..\..\include\IceE\ProxyF.h"\
+ "..\..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\..\include\IceE\ProxyHandle.h"\
+ "..\..\..\include\IceE\RecMutex.h"\
+ "..\..\..\include\IceE\ReferenceF.h"\
+ "..\..\..\include\IceE\ServantManagerF.h"\
+ "..\..\..\include\IceE\Shared.h"\
+ "..\..\..\include\IceE\Thread.h"\
+ "..\..\..\include\IceE\ThreadException.h"\
+ "..\..\..\include\IceE\Time.h"\
+ "..\..\..\include\IceE\TraceLevelsF.h"\
+ "..\..\..\include\IceE\TransceiverF.h"\
+ "..\..\..\include\IceE\UndefSysMacros.h"\
+
+NODEP_CPP_WINCE=\
+ "..\..\..\..\..\usr\include\pthread.h"\
+ "..\..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\include\IceE\FacetMap.h"\
+ "..\..\..\include\IceE\Identity.h"\
+ "..\..\..\include\IceE\LocalException.h"\
+ "..\..\..\include\IceE\LocatorF.h"\
+ "..\..\..\include\IceE\Logger.h"\
+ "..\..\..\include\IceE\LoggerF.h"\
+ "..\..\..\include\IceE\RouterF.h"\
+ ".\Hello.h"\
+ ".\onfig\_epilog.h"\
+ ".\onfig\_msvc_warnings_off.h"\
+ ".\onfig\_prolog.h"\
+ ".\onfig\stl_apcc.h"\
+ ".\onfig\stl_apple.h"\
+ ".\onfig\stl_as400.h"\
+ ".\onfig\stl_bc.h"\
+ ".\onfig\stl_como.h"\
+ ".\onfig\stl_confix.h"\
+ ".\onfig\stl_cray.h"\
+ ".\onfig\stl_dec.h"\
+ ".\onfig\stl_dec_vms.h"\
+ ".\onfig\stl_dm.h"\
+ ".\onfig\stl_evc.h"\
+ ".\onfig\stl_fujitsu.h"\
+ ".\onfig\stl_gcc.h"\
+ ".\onfig\stl_hpacc.h"\
+ ".\onfig\stl_ibm.h"\
+ ".\onfig\stl_icc.h"\
+ ".\onfig\stl_intel.h"\
+ ".\onfig\stl_kai.h"\
+ ".\onfig\stl_msvc.h"\
+ ".\onfig\stl_mwerks.h"\
+ ".\onfig\stl_mycomp.h"\
+ ".\onfig\stl_sco.h"\
+ ".\onfig\stl_sgi.h"\
+ ".\onfig\stl_solaris.h"\
+ ".\onfig\stl_sunpro.h"\
+ ".\onfig\stl_symantec.h"\
+ ".\onfig\stl_watcom.h"\
+ ".\onfig\stl_wince.h"\
+ ".\onfig\stlcomp.h"\
+ ".\thread.h"\
+ ".\tl\_abbrevs.h"\
+ ".\tl\_config.h"\
+ ".\tl\_config_compat.h"\
+ ".\tl\_config_compat_post.h"\
+ ".\tl\_epilog.h"\
+ ".\tl\_prolog.h"\
+ ".\tl\_site_config.h"\
+ ".\tl\_stlport_version.h"\
+ ".\tl_user_config.h"\
+
+
+!ELSEIF "$(CFG)" == "throughputC - Win32 (WCE ARMV4) Release Static"
+
+DEP_CPP_WINCE=\
+ "..\..\..\include\IceE\BasicStream.h"\
+ "..\..\..\include\IceE\Buffer.h"\
+ "..\..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\include\IceE\Communicator.h"\
+ "..\..\..\include\IceE\CommunicatorF.h"\
+ "..\..\..\include\IceE\Cond.h"\
+ "..\..\..\include\IceE\Config.h"\
+ "..\..\..\include\IceE\Connection.h"\
+ "..\..\..\include\IceE\ConnectionF.h"\
+ "..\..\..\include\IceE\Current.h"\
+ "..\..\..\include\IceE\DispatchStatus.h"\
+ "..\..\..\include\IceE\EndpointF.h"\
+ "..\..\..\include\IceE\Exception.h"\
+ "..\..\..\include\IceE\ExceptionBase.h"\
+ "..\..\..\include\IceE\FacetMap.h"\
+ "..\..\..\include\IceE\Functional.h"\
+ "..\..\..\include\IceE\Handle.h"\
+ "..\..\..\include\IceE\IceE.h"\
+ "..\..\..\include\IceE\Identity.h"\
+ "..\..\..\include\IceE\IdentityUtil.h"\
+ "..\..\..\include\IceE\Incoming.h"\
+ "..\..\..\include\IceE\IncomingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Initialize.h"\
+ "..\..\..\include\IceE\InstanceF.h"\
+ "..\..\..\include\IceE\LocalException.h"\
+ "..\..\..\include\IceE\LocalObject.h"\
+ "..\..\..\include\IceE\LocalObjectF.h"\
+ "..\..\..\include\IceE\LocatorF.h"\
+ "..\..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\..\include\IceE\Lock.h"\
+ "..\..\..\include\IceE\Logger.h"\
+ "..\..\..\include\IceE\LoggerF.h"\
+ "..\..\..\include\IceE\LoggerUtil.h"\
+ "..\..\..\include\IceE\Monitor.h"\
+ "..\..\..\include\IceE\Mutex.h"\
+ "..\..\..\include\IceE\Object.h"\
+ "..\..\..\include\IceE\ObjectAdapter.h"\
+ "..\..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\..\include\IceE\ObjectAdapterFactoryF.h"\
+ "..\..\..\include\IceE\ObjectF.h"\
+ "..\..\..\include\IceE\OperationMode.h"\
+ "..\..\..\include\IceE\Outgoing.h"\
+ "..\..\..\include\IceE\OutgoingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Properties.h"\
+ "..\..\..\include\IceE\PropertiesF.h"\
+ "..\..\..\include\IceE\Proxy.h"\
+ "..\..\..\include\IceE\ProxyF.h"\
+ "..\..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\..\include\IceE\ProxyHandle.h"\
+ "..\..\..\include\IceE\RecMutex.h"\
+ "..\..\..\include\IceE\ReferenceF.h"\
+ "..\..\..\include\IceE\RouterF.h"\
+ "..\..\..\include\IceE\ServantManagerF.h"\
+ "..\..\..\include\IceE\Shared.h"\
+ "..\..\..\include\IceE\Thread.h"\
+ "..\..\..\include\IceE\ThreadException.h"\
+ "..\..\..\include\IceE\Time.h"\
+ "..\..\..\include\IceE\TraceLevelsF.h"\
+ "..\..\..\include\IceE\TransceiverF.h"\
+ "..\..\..\include\IceE\UndefSysMacros.h"\
+ ".\Throughput.h"\
+
+NODEP_CPP_WINCE=\
+ "..\..\..\..\..\usr\include\pthread.h"\
+ ".\onfig\_epilog.h"\
+ ".\onfig\_msvc_warnings_off.h"\
+ ".\onfig\_prolog.h"\
+ ".\onfig\stl_apcc.h"\
+ ".\onfig\stl_apple.h"\
+ ".\onfig\stl_as400.h"\
+ ".\onfig\stl_bc.h"\
+ ".\onfig\stl_como.h"\
+ ".\onfig\stl_confix.h"\
+ ".\onfig\stl_cray.h"\
+ ".\onfig\stl_dec.h"\
+ ".\onfig\stl_dec_vms.h"\
+ ".\onfig\stl_dm.h"\
+ ".\onfig\stl_evc.h"\
+ ".\onfig\stl_fujitsu.h"\
+ ".\onfig\stl_gcc.h"\
+ ".\onfig\stl_hpacc.h"\
+ ".\onfig\stl_ibm.h"\
+ ".\onfig\stl_icc.h"\
+ ".\onfig\stl_intel.h"\
+ ".\onfig\stl_kai.h"\
+ ".\onfig\stl_msvc.h"\
+ ".\onfig\stl_mwerks.h"\
+ ".\onfig\stl_mycomp.h"\
+ ".\onfig\stl_sco.h"\
+ ".\onfig\stl_sgi.h"\
+ ".\onfig\stl_solaris.h"\
+ ".\onfig\stl_sunpro.h"\
+ ".\onfig\stl_symantec.h"\
+ ".\onfig\stl_watcom.h"\
+ ".\onfig\stl_wince.h"\
+ ".\onfig\stlcomp.h"\
+ ".\thread.h"\
+ ".\tl\_abbrevs.h"\
+ ".\tl\_config.h"\
+ ".\tl\_config_compat.h"\
+ ".\tl\_config_compat_post.h"\
+ ".\tl\_epilog.h"\
+ ".\tl\_prolog.h"\
+ ".\tl\_site_config.h"\
+ ".\tl\_stlport_version.h"\
+ ".\tl_user_config.h"\
+
+
+!ELSEIF "$(CFG)" == "throughputC - Win32 (WCE emulator) Debug Static"
+
+DEP_CPP_WINCE=\
+ "..\..\..\include\IceE\BasicStream.h"\
+ "..\..\..\include\IceE\Buffer.h"\
+ "..\..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\include\IceE\Communicator.h"\
+ "..\..\..\include\IceE\CommunicatorF.h"\
+ "..\..\..\include\IceE\Cond.h"\
+ "..\..\..\include\IceE\Config.h"\
+ "..\..\..\include\IceE\Connection.h"\
+ "..\..\..\include\IceE\ConnectionF.h"\
+ "..\..\..\include\IceE\Current.h"\
+ "..\..\..\include\IceE\DispatchStatus.h"\
+ "..\..\..\include\IceE\EndpointF.h"\
+ "..\..\..\include\IceE\Exception.h"\
+ "..\..\..\include\IceE\ExceptionBase.h"\
+ "..\..\..\include\IceE\FacetMap.h"\
+ "..\..\..\include\IceE\Functional.h"\
+ "..\..\..\include\IceE\Handle.h"\
+ "..\..\..\include\IceE\IceE.h"\
+ "..\..\..\include\IceE\Identity.h"\
+ "..\..\..\include\IceE\IdentityUtil.h"\
+ "..\..\..\include\IceE\IncomingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Initialize.h"\
+ "..\..\..\include\IceE\InstanceF.h"\
+ "..\..\..\include\IceE\LocalObject.h"\
+ "..\..\..\include\IceE\LocalObjectF.h"\
+ "..\..\..\include\IceE\LocatorF.h"\
+ "..\..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\..\include\IceE\Lock.h"\
+ "..\..\..\include\IceE\Logger.h"\
+ "..\..\..\include\IceE\LoggerF.h"\
+ "..\..\..\include\IceE\LoggerUtil.h"\
+ "..\..\..\include\IceE\Monitor.h"\
+ "..\..\..\include\IceE\Mutex.h"\
+ "..\..\..\include\IceE\Object.h"\
+ "..\..\..\include\IceE\ObjectAdapter.h"\
+ "..\..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\..\include\IceE\ObjectAdapterFactoryF.h"\
+ "..\..\..\include\IceE\ObjectF.h"\
+ "..\..\..\include\IceE\OperationMode.h"\
+ "..\..\..\include\IceE\OutgoingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Properties.h"\
+ "..\..\..\include\IceE\PropertiesF.h"\
+ "..\..\..\include\IceE\Proxy.h"\
+ "..\..\..\include\IceE\ProxyF.h"\
+ "..\..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\..\include\IceE\ProxyHandle.h"\
+ "..\..\..\include\IceE\RecMutex.h"\
+ "..\..\..\include\IceE\ReferenceF.h"\
+ "..\..\..\include\IceE\RouterF.h"\
+ "..\..\..\include\IceE\ServantManagerF.h"\
+ "..\..\..\include\IceE\Shared.h"\
+ "..\..\..\include\IceE\Thread.h"\
+ "..\..\..\include\IceE\ThreadException.h"\
+ "..\..\..\include\IceE\Time.h"\
+ "..\..\..\include\IceE\TraceLevelsF.h"\
+ "..\..\..\include\IceE\TransceiverF.h"\
+ "..\..\..\include\IceE\UndefSysMacros.h"\
+
+NODEP_CPP_WINCE=\
+ "..\..\..\..\..\usr\include\pthread.h"\
+ "..\..\..\include\IceE\LocalExceptions.h"\
+ ".\onfig\_epilog.h"\
+ ".\onfig\_msvc_warnings_off.h"\
+ ".\onfig\_prolog.h"\
+ ".\onfig\stl_apcc.h"\
+ ".\onfig\stl_apple.h"\
+ ".\onfig\stl_as400.h"\
+ ".\onfig\stl_bc.h"\
+ ".\onfig\stl_como.h"\
+ ".\onfig\stl_confix.h"\
+ ".\onfig\stl_cray.h"\
+ ".\onfig\stl_dec.h"\
+ ".\onfig\stl_dec_vms.h"\
+ ".\onfig\stl_dm.h"\
+ ".\onfig\stl_evc.h"\
+ ".\onfig\stl_fujitsu.h"\
+ ".\onfig\stl_gcc.h"\
+ ".\onfig\stl_hpacc.h"\
+ ".\onfig\stl_ibm.h"\
+ ".\onfig\stl_icc.h"\
+ ".\onfig\stl_intel.h"\
+ ".\onfig\stl_kai.h"\
+ ".\onfig\stl_msvc.h"\
+ ".\onfig\stl_mwerks.h"\
+ ".\onfig\stl_mycomp.h"\
+ ".\onfig\stl_sco.h"\
+ ".\onfig\stl_sgi.h"\
+ ".\onfig\stl_solaris.h"\
+ ".\onfig\stl_sunpro.h"\
+ ".\onfig\stl_symantec.h"\
+ ".\onfig\stl_watcom.h"\
+ ".\onfig\stl_wince.h"\
+ ".\onfig\stlcomp.h"\
+ ".\thread.h"\
+ ".\tl\_abbrevs.h"\
+ ".\tl\_config.h"\
+ ".\tl\_config_compat.h"\
+ ".\tl\_config_compat_post.h"\
+ ".\tl\_epilog.h"\
+ ".\tl\_prolog.h"\
+ ".\tl\_site_config.h"\
+ ".\tl\_stlport_version.h"\
+ ".\tl_user_config.h"\
+
+
+!ELSEIF "$(CFG)" == "throughputC - Win32 (WCE emulator) Release Static"
+
+DEP_CPP_WINCE=\
+ "..\..\..\include\IceE\BasicStream.h"\
+ "..\..\..\include\IceE\Buffer.h"\
+ "..\..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\include\IceE\Communicator.h"\
+ "..\..\..\include\IceE\CommunicatorF.h"\
+ "..\..\..\include\IceE\Cond.h"\
+ "..\..\..\include\IceE\Config.h"\
+ "..\..\..\include\IceE\Connection.h"\
+ "..\..\..\include\IceE\ConnectionF.h"\
+ "..\..\..\include\IceE\Current.h"\
+ "..\..\..\include\IceE\DispatchStatus.h"\
+ "..\..\..\include\IceE\EndpointF.h"\
+ "..\..\..\include\IceE\Exception.h"\
+ "..\..\..\include\IceE\ExceptionBase.h"\
+ "..\..\..\include\IceE\FacetMap.h"\
+ "..\..\..\include\IceE\Functional.h"\
+ "..\..\..\include\IceE\Handle.h"\
+ "..\..\..\include\IceE\IceE.h"\
+ "..\..\..\include\IceE\Identity.h"\
+ "..\..\..\include\IceE\IdentityUtil.h"\
+ "..\..\..\include\IceE\Incoming.h"\
+ "..\..\..\include\IceE\IncomingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Initialize.h"\
+ "..\..\..\include\IceE\InstanceF.h"\
+ "..\..\..\include\IceE\LocalException.h"\
+ "..\..\..\include\IceE\LocalObject.h"\
+ "..\..\..\include\IceE\LocalObjectF.h"\
+ "..\..\..\include\IceE\LocatorF.h"\
+ "..\..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\..\include\IceE\Lock.h"\
+ "..\..\..\include\IceE\Logger.h"\
+ "..\..\..\include\IceE\LoggerF.h"\
+ "..\..\..\include\IceE\LoggerUtil.h"\
+ "..\..\..\include\IceE\Monitor.h"\
+ "..\..\..\include\IceE\Mutex.h"\
+ "..\..\..\include\IceE\Object.h"\
+ "..\..\..\include\IceE\ObjectAdapter.h"\
+ "..\..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\..\include\IceE\ObjectAdapterFactoryF.h"\
+ "..\..\..\include\IceE\ObjectF.h"\
+ "..\..\..\include\IceE\OperationMode.h"\
+ "..\..\..\include\IceE\Outgoing.h"\
+ "..\..\..\include\IceE\OutgoingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Properties.h"\
+ "..\..\..\include\IceE\PropertiesF.h"\
+ "..\..\..\include\IceE\Proxy.h"\
+ "..\..\..\include\IceE\ProxyF.h"\
+ "..\..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\..\include\IceE\ProxyHandle.h"\
+ "..\..\..\include\IceE\RecMutex.h"\
+ "..\..\..\include\IceE\ReferenceF.h"\
+ "..\..\..\include\IceE\RouterF.h"\
+ "..\..\..\include\IceE\ServantManagerF.h"\
+ "..\..\..\include\IceE\Shared.h"\
+ "..\..\..\include\IceE\Thread.h"\
+ "..\..\..\include\IceE\ThreadException.h"\
+ "..\..\..\include\IceE\Time.h"\
+ "..\..\..\include\IceE\TraceLevelsF.h"\
+ "..\..\..\include\IceE\TransceiverF.h"\
+ "..\..\..\include\IceE\UndefSysMacros.h"\
+ ".\Throughput.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_WINCE=\
+ "..\..\..\..\..\usr\include\pthread.h"\
+
+
+!ENDIF
+
+# End Source File
+# End Group
+# Begin Group "Header Files"
+
+# PROP Default_Filter "h;hpp;hxx;hm;inl"
+# Begin Source File
+
+SOURCE=.\Throughput.h
+# End Source File
+# End Group
+# Begin Group "Resource Files"
+
+# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
+# Begin Source File
+
+SOURCE=.\Throughput.ice
+
+!IF "$(CFG)" == "throughputC - Win32 (WCE emulator) Release"
+
+# Begin Custom Build
+InputPath=.\Throughput.ice
+
+BuildCmds= \
+ slice2cppe.exe Throughput.ice
+
+"Throughput.cpp" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"Throughput.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+# End Custom Build
+
+!ELSEIF "$(CFG)" == "throughputC - Win32 (WCE emulator) Debug"
+
+# Begin Custom Build
+InputPath=.\Throughput.ice
+
+BuildCmds= \
+ slice2cppe.exe Throughput.ice
+
+"Throughput.cpp" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"Throughput.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+# End Custom Build
+
+!ELSEIF "$(CFG)" == "throughputC - Win32 (WCE ARMV4) Release"
+
+# Begin Custom Build
+InputPath=.\Throughput.ice
+
+BuildCmds= \
+ slice2cppe.exe Throughput.ice
+
+"Throughput.cpp" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"Throughput.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+# End Custom Build
+
+!ELSEIF "$(CFG)" == "throughputC - Win32 (WCE ARMV4) Debug"
+
+# Begin Custom Build
+InputPath=.\Throughput.ice
+
+BuildCmds= \
+ slice2cppe.exe Throughput.ice
+
+"Throughput.cpp" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"Throughput.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+# End Custom Build
+
+!ELSEIF "$(CFG)" == "throughputC - Win32 (WCE ARMV4) Debug Static"
+
+# Begin Custom Build
+InputPath=.\Throughput.ice
+
+BuildCmds= \
+ slice2cppe.exe Throughput.ice
+
+"Throughput.cpp" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"Throughput.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+# End Custom Build
+
+!ELSEIF "$(CFG)" == "throughputC - Win32 (WCE ARMV4) Release Static"
+
+# Begin Custom Build
+InputPath=.\Throughput.ice
+
+BuildCmds= \
+ slice2cppe.exe Throughput.ice
+
+"Throughput.cpp" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"Throughput.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+# End Custom Build
+
+!ELSEIF "$(CFG)" == "throughputC - Win32 (WCE emulator) Debug Static"
+
+# Begin Custom Build
+InputPath=.\Throughput.ice
+
+BuildCmds= \
+ slice2cppe.exe Throughput.ice
+
+"Throughput.cpp" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"Throughput.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+# End Custom Build
+
+!ELSEIF "$(CFG)" == "throughputC - Win32 (WCE emulator) Release Static"
+
+# Begin Custom Build
+InputPath=.\Throughput.ice
+
+BuildCmds= \
+ slice2cppe.exe Throughput.ice
+
+"Throughput.cpp" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"Throughput.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+# End Custom Build
+
+!ENDIF
+
+# End Source File
+# End Group
+# End Target
+# End Project
diff --git a/cppe/demo/IceE/throughput/throughputS.vcp b/cppe/demo/IceE/throughput/throughputS.vcp
new file mode 100755
index 00000000000..99db5112d84
--- /dev/null
+++ b/cppe/demo/IceE/throughput/throughputS.vcp
@@ -0,0 +1,2792 @@
+# Microsoft eMbedded Visual Tools Project File - Name="throughputS" - Package Owner=<4>
+# Microsoft eMbedded Visual Tools Generated Build File, Format Version 6.02
+# ** DO NOT EDIT **
+
+# TARGTYPE "Win32 (WCE ARMV4) Application" 0xa301
+# TARGTYPE "Win32 (WCE emulator) Application" 0xa601
+
+CFG=throughputS - Win32 (WCE emulator) Release
+!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 "throughputS.vcn".
+!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 "throughputS.vcn" CFG="throughputS - Win32 (WCE emulator) Release"
+!MESSAGE
+!MESSAGE Possible choices for configuration are:
+!MESSAGE
+!MESSAGE "throughputS - Win32 (WCE emulator) Release" (based on "Win32 (WCE emulator) Application")
+!MESSAGE "throughputS - Win32 (WCE emulator) Debug" (based on "Win32 (WCE emulator) Application")
+!MESSAGE "throughputS - Win32 (WCE ARMV4) Release" (based on "Win32 (WCE ARMV4) Application")
+!MESSAGE "throughputS - Win32 (WCE ARMV4) Debug" (based on "Win32 (WCE ARMV4) Application")
+!MESSAGE "throughputS - Win32 (WCE ARMV4) Debug Static" (based on "Win32 (WCE ARMV4) Application")
+!MESSAGE "throughputS - Win32 (WCE ARMV4) Release Static" (based on "Win32 (WCE ARMV4) Application")
+!MESSAGE "throughputS - Win32 (WCE emulator) Debug Static" (based on "Win32 (WCE emulator) Application")
+!MESSAGE "throughputS - Win32 (WCE emulator) Release Static" (based on "Win32 (WCE emulator) Application")
+!MESSAGE
+
+# Begin Project
+# PROP AllowPerConfigDependencies 0
+# PROP Scc_ProjName ""
+# PROP Scc_LocalPath ""
+# PROP ATL_Project 2
+
+!IF "$(CFG)" == "throughputS - Win32 (WCE emulator) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "emulatorRel"
+# PROP BASE Intermediate_Dir "emulatorRel"
+# PROP BASE CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "emulatorRel"
+# PROP Intermediate_Dir "emulatorRel"
+# PROP CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /YX /Gs8192 /GF /O2 /c
+# ADD CPP /nologo /W3 /GR /GX /I "." /I "../../include" /I "../../../include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /Gs8192 /GF /O2 /c
+# SUBTRACT CPP /YX
+MTL=midl.exe
+# 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 $(CEx86Corelibc) /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+# ADD LINK32 $(CEx86Corelibc) coredll.lib ccrtrtti.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /out:"throughputServer.exe" /libpath:"../../../lib" /subsystem:$(CESubsystem) /MACHINE:IX86
+
+!ELSEIF "$(CFG)" == "throughputS - Win32 (WCE emulator) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "emulatorDbg"
+# PROP BASE Intermediate_Dir "emulatorDbg"
+# PROP BASE CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "emulatorDbg"
+# PROP Intermediate_Dir "emulatorDbg"
+# PROP CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d "$(CePlatform)" /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "_X86_" /d "x86" /d "_i386_" /r
+# ADD RSC /l 0x409 /d "$(CePlatform)" /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "_X86_" /d "x86" /d "_i386_" /r
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /GR /GX /Zi /Od /D "DEBUG" /D "_i386_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /YX /Gs8192 /GF /c
+# ADD CPP /nologo /W3 /GR /GX /Zi /Od /I "." /I "../../include" /I "../../../include" /D "DEBUG" /D "_i386_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /Gs8192 /GF /c
+# SUBTRACT CPP /YX
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+# ADD LINK32 $(CEx86Corelibc) coredll.lib ccrtrtti.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /out:"throughputServer.exe" /libpath:"../../../lib" /subsystem:$(CESubsystem) /MACHINE:IX86
+
+!ELSEIF "$(CFG)" == "throughputS - Win32 (WCE ARMV4) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "ARMV4Rel"
+# PROP BASE Intermediate_Dir "ARMV4Rel"
+# PROP BASE CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "ARMV4Rel"
+# PROP Intermediate_Dir "ARMV4Rel"
+# PROP CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "NDEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /d "ARMV4" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "NDEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /d "ARMV4" /r
+CPP=clarm.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D "ARMV4" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /O2 /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /GR /GX /Gy /I "." /I "../../include" /I "../../../include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D "ARMV4" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /O2 /M$(CECrtMT) /c
+# SUBTRACT CPP /YX
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+# ADD LINK32 coredll.lib ccrtrtti.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /out:"throughputServer.exe" /libpath:"../../../lib" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+
+!ELSEIF "$(CFG)" == "throughputS - Win32 (WCE ARMV4) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "ARMV4Dbg"
+# PROP BASE Intermediate_Dir "ARMV4Dbg"
+# PROP BASE CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "ARMV4Dbg"
+# PROP Intermediate_Dir "ARMV4Dbg"
+# PROP CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "DEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /d "ARMV4" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "DEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /d "ARMV4" /r
+CPP=clarm.exe
+# ADD BASE CPP /nologo /W3 /GR /GX /Zi /Od /D "DEBUG" /D "ARM" /D "_ARM_" /D "ARMV4" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /GR /GX /Zi /Od /Gy /I "." /I "../../include" /I "../../../include" /D "DEBUG" /D "ARM" /D "_ARM_" /D "ARMV4" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /M$(CECrtMTDebug) /c
+# SUBTRACT CPP /YX
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+# ADD LINK32 coredll.lib ccrtrtti.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /out:"throughputServer.exe" /libpath:"../../../lib" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+
+!ELSEIF "$(CFG)" == "throughputS - Win32 (WCE ARMV4) Debug Static"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "ARMV4Debug Static"
+# PROP BASE Intermediate_Dir "ARMV4Debug Static"
+# PROP BASE CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Ignore_Export_Lib 0
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "ARMV4DebugStatic"
+# PROP Intermediate_Dir "ARMV4DebugStatic"
+# PROP CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "DEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /d "ARMV4" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "DEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /d "ARMV4" /r
+CPP=clarm.exe
+# ADD BASE CPP /nologo /W3 /GR /GX /Zi /Od /D "DEBUG" /D "ARM" /D "_ARM_" /D "ARMV4" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /GR /GX /Zi /Od /Gy /I "." /I "../../include" /I "../../../include" /D "DEBUG" /D "ARM" /D "_ARM_" /D "ARMV4" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "ICEE_STATIC_LIBS" /M$(CECrtMTDebug) /c
+# SUBTRACT CPP /YX
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 coredll.lib ccrtrtti.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /out:"throughputServer.exe" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+# ADD LINK32 coredll.lib ccrtrtti.lib ws2.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /out:"throughputServer.exe" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+
+!ELSEIF "$(CFG)" == "throughputS - Win32 (WCE ARMV4) Release Static"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "ARMV4Release Static"
+# PROP BASE Intermediate_Dir "ARMV4Release Static"
+# PROP BASE CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Ignore_Export_Lib 0
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "ARMV4ReleaseStatic"
+# PROP Intermediate_Dir "ARMV4ReleaseStatic"
+# PROP CPU_ID "{ECBEA43D-CD7B-4852-AD55-D4227B5D624B}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "NDEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /d "ARMV4" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "NDEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /d "ARMV4" /r
+CPP=clarm.exe
+# ADD BASE CPP /nologo /W3 /GR /GX /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D "ARMV4" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /O2 /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /GR /GX /Gy /I "." /I "../../include" /I "../../../include" /D "ARM" /D "_ARM_" /D "ARMV4" /D "NDEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "ICEE_STATIC_LIBS" /O2 /M$(CECrtMT) /c
+# SUBTRACT CPP /YX
+MTL=midl.exe
+# 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 coredll.lib ccrtrtti.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /out:"throughputServer.exe" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+# ADD LINK32 coredll.lib ccrtrtti.lib ws2.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /out:"throughputServer.exe" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+
+!ELSEIF "$(CFG)" == "throughputS - Win32 (WCE emulator) Debug Static"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "emulatorDebug Static"
+# PROP BASE Intermediate_Dir "emulatorDebug Static"
+# PROP BASE CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Ignore_Export_Lib 0
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "emulatorDebugStatic"
+# PROP Intermediate_Dir "emulatorDebugStatic"
+# PROP CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d "$(CePlatform)" /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "_X86_" /d "x86" /d "_i386_" /r
+# ADD RSC /l 0x409 /d "$(CePlatform)" /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "_X86_" /d "x86" /d "_i386_" /r
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /GR /GX /Zi /Od /D "DEBUG" /D "_i386_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /YX /Gs8192 /GF /c
+# ADD CPP /nologo /W3 /GR /GX /Zi /Od /I "." /I "../../include" /I "../../../include" /D "DEBUG" /D "_i386_" /D "i_386_" /D "_X86_" /D "x86" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "ICEE_STATIC_LIBS" /Gs8192 /GF /c
+# SUBTRACT CPP /YX
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 $(CEx86Corelibc) coredll.lib ccrtrtti.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /out:"throughputServer.exe" /subsystem:$(CESubsystem) /MACHINE:IX86
+# ADD LINK32 $(CEx86Corelibc) coredll.lib ccrtrtti.lib ws2.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /out:"throughputServer.exe" /subsystem:$(CESubsystem) /MACHINE:IX86
+
+!ELSEIF "$(CFG)" == "throughputS - Win32 (WCE emulator) Release Static"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "emulatorRelease Static"
+# PROP BASE Intermediate_Dir "emulatorRelease Static"
+# PROP BASE CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Ignore_Export_Lib 0
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "emulatorReleaseStatic"
+# PROP Intermediate_Dir "emulatorReleaseStatic"
+# PROP CPU_ID "{32E52003-403E-442D-BE48-DE10F8C6131D}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /GR /GX /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /YX /Gs8192 /GF /O2 /c
+# ADD CPP /nologo /W3 /GR /GX /I "." /I "../../include" /I "../../../include" /D "_i386_" /D "i_386_" /D "_X86_" /D "x86" /D "NDEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "ICEE_STATIC_LIBS" /Gs8192 /GF /O2 /c
+# SUBTRACT CPP /YX
+MTL=midl.exe
+# 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 $(CEx86Corelibc) coredll.lib ccrtrtti.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /out:"throughputServer.exe" /subsystem:$(CESubsystem) /MACHINE:IX86
+# ADD LINK32 $(CEx86Corelibc) coredll.lib ccrtrtti.lib ws2.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /out:"throughputServer.exe" /subsystem:$(CESubsystem) /MACHINE:IX86
+
+!ENDIF
+
+# Begin Target
+
+# Name "throughputS - Win32 (WCE emulator) Release"
+# Name "throughputS - Win32 (WCE emulator) Debug"
+# Name "throughputS - Win32 (WCE ARMV4) Release"
+# Name "throughputS - Win32 (WCE ARMV4) Debug"
+# Name "throughputS - Win32 (WCE ARMV4) Debug Static"
+# Name "throughputS - Win32 (WCE ARMV4) Release Static"
+# Name "throughputS - Win32 (WCE emulator) Debug Static"
+# Name "throughputS - Win32 (WCE emulator) Release Static"
+# Begin Group "Source Files"
+
+# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
+# Begin Source File
+
+SOURCE=.\Throughput.cpp
+
+!IF "$(CFG)" == "throughputS - Win32 (WCE emulator) Release"
+
+DEP_CPP_THROU=\
+ "..\..\..\include\IceE\BasicStream.h"\
+ "..\..\..\include\IceE\Buffer.h"\
+ "..\..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\include\IceE\CommunicatorF.h"\
+ "..\..\..\include\IceE\Cond.h"\
+ "..\..\..\include\IceE\Config.h"\
+ "..\..\..\include\IceE\ConnectionF.h"\
+ "..\..\..\include\IceE\Current.h"\
+ "..\..\..\include\IceE\DispatchStatus.h"\
+ "..\..\..\include\IceE\Exception.h"\
+ "..\..\..\include\IceE\ExceptionBase.h"\
+ "..\..\..\include\IceE\Handle.h"\
+ "..\..\..\include\IceE\Identity.h"\
+ "..\..\..\include\IceE\Incoming.h"\
+ "..\..\..\include\IceE\InstanceF.h"\
+ "..\..\..\include\IceE\LocalException.h"\
+ "..\..\..\include\IceE\LocalObject.h"\
+ "..\..\..\include\IceE\LocalObjectF.h"\
+ "..\..\..\include\IceE\Lock.h"\
+ "..\..\..\include\IceE\Monitor.h"\
+ "..\..\..\include\IceE\Mutex.h"\
+ "..\..\..\include\IceE\Object.h"\
+ "..\..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\..\include\IceE\ObjectF.h"\
+ "..\..\..\include\IceE\OperationMode.h"\
+ "..\..\..\include\IceE\Outgoing.h"\
+ "..\..\..\include\IceE\Proxy.h"\
+ "..\..\..\include\IceE\ProxyF.h"\
+ "..\..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\..\include\IceE\ProxyHandle.h"\
+ "..\..\..\include\IceE\ReferenceF.h"\
+ "..\..\..\include\IceE\ServantManagerF.h"\
+ "..\..\..\include\IceE\Shared.h"\
+ "..\..\..\include\IceE\ThreadException.h"\
+ "..\..\..\include\IceE\Time.h"\
+ "..\..\..\include\IceE\UndefSysMacros.h"\
+ ".\Throughput.h"\
+
+NODEP_CPP_THROU=\
+ "..\..\..\..\..\usr\include\pthread.h"\
+ ".\onfig\_epilog.h"\
+ ".\onfig\_msvc_warnings_off.h"\
+ ".\onfig\_prolog.h"\
+ ".\onfig\stl_apcc.h"\
+ ".\onfig\stl_apple.h"\
+ ".\onfig\stl_as400.h"\
+ ".\onfig\stl_bc.h"\
+ ".\onfig\stl_como.h"\
+ ".\onfig\stl_confix.h"\
+ ".\onfig\stl_cray.h"\
+ ".\onfig\stl_dec.h"\
+ ".\onfig\stl_dec_vms.h"\
+ ".\onfig\stl_dm.h"\
+ ".\onfig\stl_evc.h"\
+ ".\onfig\stl_fujitsu.h"\
+ ".\onfig\stl_gcc.h"\
+ ".\onfig\stl_hpacc.h"\
+ ".\onfig\stl_ibm.h"\
+ ".\onfig\stl_icc.h"\
+ ".\onfig\stl_intel.h"\
+ ".\onfig\stl_kai.h"\
+ ".\onfig\stl_msvc.h"\
+ ".\onfig\stl_mwerks.h"\
+ ".\onfig\stl_mycomp.h"\
+ ".\onfig\stl_sco.h"\
+ ".\onfig\stl_sgi.h"\
+ ".\onfig\stl_solaris.h"\
+ ".\onfig\stl_sunpro.h"\
+ ".\onfig\stl_symantec.h"\
+ ".\onfig\stl_watcom.h"\
+ ".\onfig\stl_wince.h"\
+ ".\onfig\stlcomp.h"\
+ ".\thread.h"\
+ ".\tl\_abbrevs.h"\
+ ".\tl\_config.h"\
+ ".\tl\_config_compat.h"\
+ ".\tl\_config_compat_post.h"\
+ ".\tl\_epilog.h"\
+ ".\tl\_prolog.h"\
+ ".\tl\_site_config.h"\
+ ".\tl\_stlport_version.h"\
+ ".\tl_user_config.h"\
+
+
+!ELSEIF "$(CFG)" == "throughputS - Win32 (WCE emulator) Debug"
+
+DEP_CPP_THROU=\
+ "..\..\..\include\IceE\BasicStream.h"\
+ "..\..\..\include\IceE\Buffer.h"\
+ "..\..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\include\IceE\CommunicatorF.h"\
+ "..\..\..\include\IceE\Cond.h"\
+ "..\..\..\include\IceE\Config.h"\
+ "..\..\..\include\IceE\ConnectionF.h"\
+ "..\..\..\include\IceE\Current.h"\
+ "..\..\..\include\IceE\DispatchStatus.h"\
+ "..\..\..\include\IceE\Exception.h"\
+ "..\..\..\include\IceE\ExceptionBase.h"\
+ "..\..\..\include\IceE\Handle.h"\
+ "..\..\..\include\IceE\Identity.h"\
+ "..\..\..\include\IceE\Incoming.h"\
+ "..\..\..\include\IceE\InstanceF.h"\
+ "..\..\..\include\IceE\LocalException.h"\
+ "..\..\..\include\IceE\LocalObject.h"\
+ "..\..\..\include\IceE\LocalObjectF.h"\
+ "..\..\..\include\IceE\Lock.h"\
+ "..\..\..\include\IceE\Monitor.h"\
+ "..\..\..\include\IceE\Mutex.h"\
+ "..\..\..\include\IceE\Object.h"\
+ "..\..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\..\include\IceE\ObjectF.h"\
+ "..\..\..\include\IceE\OperationMode.h"\
+ "..\..\..\include\IceE\Outgoing.h"\
+ "..\..\..\include\IceE\Proxy.h"\
+ "..\..\..\include\IceE\ProxyF.h"\
+ "..\..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\..\include\IceE\ProxyHandle.h"\
+ "..\..\..\include\IceE\ReferenceF.h"\
+ "..\..\..\include\IceE\ServantManagerF.h"\
+ "..\..\..\include\IceE\Shared.h"\
+ "..\..\..\include\IceE\ThreadException.h"\
+ "..\..\..\include\IceE\Time.h"\
+ "..\..\..\include\IceE\UndefSysMacros.h"\
+ ".\Throughput.h"\
+
+NODEP_CPP_THROU=\
+ "..\..\..\..\..\usr\include\pthread.h"\
+ ".\onfig\_epilog.h"\
+ ".\onfig\_msvc_warnings_off.h"\
+ ".\onfig\_prolog.h"\
+ ".\onfig\stl_apcc.h"\
+ ".\onfig\stl_apple.h"\
+ ".\onfig\stl_as400.h"\
+ ".\onfig\stl_bc.h"\
+ ".\onfig\stl_como.h"\
+ ".\onfig\stl_confix.h"\
+ ".\onfig\stl_cray.h"\
+ ".\onfig\stl_dec.h"\
+ ".\onfig\stl_dec_vms.h"\
+ ".\onfig\stl_dm.h"\
+ ".\onfig\stl_evc.h"\
+ ".\onfig\stl_fujitsu.h"\
+ ".\onfig\stl_gcc.h"\
+ ".\onfig\stl_hpacc.h"\
+ ".\onfig\stl_ibm.h"\
+ ".\onfig\stl_icc.h"\
+ ".\onfig\stl_intel.h"\
+ ".\onfig\stl_kai.h"\
+ ".\onfig\stl_msvc.h"\
+ ".\onfig\stl_mwerks.h"\
+ ".\onfig\stl_mycomp.h"\
+ ".\onfig\stl_sco.h"\
+ ".\onfig\stl_sgi.h"\
+ ".\onfig\stl_solaris.h"\
+ ".\onfig\stl_sunpro.h"\
+ ".\onfig\stl_symantec.h"\
+ ".\onfig\stl_watcom.h"\
+ ".\onfig\stl_wince.h"\
+ ".\onfig\stlcomp.h"\
+ ".\thread.h"\
+ ".\tl\_abbrevs.h"\
+ ".\tl\_config.h"\
+ ".\tl\_config_compat.h"\
+ ".\tl\_config_compat_post.h"\
+ ".\tl\_epilog.h"\
+ ".\tl\_prolog.h"\
+ ".\tl\_site_config.h"\
+ ".\tl\_stlport_version.h"\
+ ".\tl_user_config.h"\
+
+
+!ELSEIF "$(CFG)" == "throughputS - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_THROU=\
+ "..\..\..\include\IceE\BasicStream.h"\
+ "..\..\..\include\IceE\Buffer.h"\
+ "..\..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\include\IceE\CommunicatorF.h"\
+ "..\..\..\include\IceE\Cond.h"\
+ "..\..\..\include\IceE\Config.h"\
+ "..\..\..\include\IceE\ConnectionF.h"\
+ "..\..\..\include\IceE\Current.h"\
+ "..\..\..\include\IceE\DispatchStatus.h"\
+ "..\..\..\include\IceE\Exception.h"\
+ "..\..\..\include\IceE\ExceptionBase.h"\
+ "..\..\..\include\IceE\Handle.h"\
+ "..\..\..\include\IceE\Identity.h"\
+ "..\..\..\include\IceE\Incoming.h"\
+ "..\..\..\include\IceE\InstanceF.h"\
+ "..\..\..\include\IceE\LocalException.h"\
+ "..\..\..\include\IceE\LocalObject.h"\
+ "..\..\..\include\IceE\LocalObjectF.h"\
+ "..\..\..\include\IceE\Lock.h"\
+ "..\..\..\include\IceE\Monitor.h"\
+ "..\..\..\include\IceE\Mutex.h"\
+ "..\..\..\include\IceE\Object.h"\
+ "..\..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\..\include\IceE\ObjectF.h"\
+ "..\..\..\include\IceE\OperationMode.h"\
+ "..\..\..\include\IceE\Outgoing.h"\
+ "..\..\..\include\IceE\Proxy.h"\
+ "..\..\..\include\IceE\ProxyF.h"\
+ "..\..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\..\include\IceE\ProxyHandle.h"\
+ "..\..\..\include\IceE\ReferenceF.h"\
+ "..\..\..\include\IceE\ServantManagerF.h"\
+ "..\..\..\include\IceE\Shared.h"\
+ "..\..\..\include\IceE\ThreadException.h"\
+ "..\..\..\include\IceE\Time.h"\
+ "..\..\..\include\IceE\UndefSysMacros.h"\
+ ".\Throughput.h"\
+
+NODEP_CPP_THROU=\
+ "..\..\..\..\..\usr\include\pthread.h"\
+ ".\onfig\_epilog.h"\
+ ".\onfig\_msvc_warnings_off.h"\
+ ".\onfig\_prolog.h"\
+ ".\onfig\stl_apcc.h"\
+ ".\onfig\stl_apple.h"\
+ ".\onfig\stl_as400.h"\
+ ".\onfig\stl_bc.h"\
+ ".\onfig\stl_como.h"\
+ ".\onfig\stl_confix.h"\
+ ".\onfig\stl_cray.h"\
+ ".\onfig\stl_dec.h"\
+ ".\onfig\stl_dec_vms.h"\
+ ".\onfig\stl_dm.h"\
+ ".\onfig\stl_evc.h"\
+ ".\onfig\stl_fujitsu.h"\
+ ".\onfig\stl_gcc.h"\
+ ".\onfig\stl_hpacc.h"\
+ ".\onfig\stl_ibm.h"\
+ ".\onfig\stl_icc.h"\
+ ".\onfig\stl_intel.h"\
+ ".\onfig\stl_kai.h"\
+ ".\onfig\stl_msvc.h"\
+ ".\onfig\stl_mwerks.h"\
+ ".\onfig\stl_mycomp.h"\
+ ".\onfig\stl_sco.h"\
+ ".\onfig\stl_sgi.h"\
+ ".\onfig\stl_solaris.h"\
+ ".\onfig\stl_sunpro.h"\
+ ".\onfig\stl_symantec.h"\
+ ".\onfig\stl_watcom.h"\
+ ".\onfig\stl_wince.h"\
+ ".\onfig\stlcomp.h"\
+ ".\thread.h"\
+ ".\tl\_abbrevs.h"\
+ ".\tl\_config.h"\
+ ".\tl\_config_compat.h"\
+ ".\tl\_config_compat_post.h"\
+ ".\tl\_epilog.h"\
+ ".\tl\_prolog.h"\
+ ".\tl\_site_config.h"\
+ ".\tl\_stlport_version.h"\
+ ".\tl_user_config.h"\
+
+
+!ELSEIF "$(CFG)" == "throughputS - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_THROU=\
+ "..\..\..\include\IceE\BasicStream.h"\
+ "..\..\..\include\IceE\Buffer.h"\
+ "..\..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\include\IceE\CommunicatorF.h"\
+ "..\..\..\include\IceE\Cond.h"\
+ "..\..\..\include\IceE\Config.h"\
+ "..\..\..\include\IceE\ConnectionF.h"\
+ "..\..\..\include\IceE\Current.h"\
+ "..\..\..\include\IceE\DispatchStatus.h"\
+ "..\..\..\include\IceE\Exception.h"\
+ "..\..\..\include\IceE\ExceptionBase.h"\
+ "..\..\..\include\IceE\Handle.h"\
+ "..\..\..\include\IceE\Identity.h"\
+ "..\..\..\include\IceE\Incoming.h"\
+ "..\..\..\include\IceE\InstanceF.h"\
+ "..\..\..\include\IceE\LocalException.h"\
+ "..\..\..\include\IceE\LocalObject.h"\
+ "..\..\..\include\IceE\LocalObjectF.h"\
+ "..\..\..\include\IceE\Lock.h"\
+ "..\..\..\include\IceE\Monitor.h"\
+ "..\..\..\include\IceE\Mutex.h"\
+ "..\..\..\include\IceE\Object.h"\
+ "..\..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\..\include\IceE\ObjectF.h"\
+ "..\..\..\include\IceE\OperationMode.h"\
+ "..\..\..\include\IceE\Outgoing.h"\
+ "..\..\..\include\IceE\Proxy.h"\
+ "..\..\..\include\IceE\ProxyF.h"\
+ "..\..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\..\include\IceE\ProxyHandle.h"\
+ "..\..\..\include\IceE\ReferenceF.h"\
+ "..\..\..\include\IceE\ServantManagerF.h"\
+ "..\..\..\include\IceE\Shared.h"\
+ "..\..\..\include\IceE\ThreadException.h"\
+ "..\..\..\include\IceE\Time.h"\
+ "..\..\..\include\IceE\UndefSysMacros.h"\
+ ".\Throughput.h"\
+
+NODEP_CPP_THROU=\
+ "..\..\..\..\..\usr\include\pthread.h"\
+ ".\onfig\_epilog.h"\
+ ".\onfig\_msvc_warnings_off.h"\
+ ".\onfig\_prolog.h"\
+ ".\onfig\stl_apcc.h"\
+ ".\onfig\stl_apple.h"\
+ ".\onfig\stl_as400.h"\
+ ".\onfig\stl_bc.h"\
+ ".\onfig\stl_como.h"\
+ ".\onfig\stl_confix.h"\
+ ".\onfig\stl_cray.h"\
+ ".\onfig\stl_dec.h"\
+ ".\onfig\stl_dec_vms.h"\
+ ".\onfig\stl_dm.h"\
+ ".\onfig\stl_evc.h"\
+ ".\onfig\stl_fujitsu.h"\
+ ".\onfig\stl_gcc.h"\
+ ".\onfig\stl_hpacc.h"\
+ ".\onfig\stl_ibm.h"\
+ ".\onfig\stl_icc.h"\
+ ".\onfig\stl_intel.h"\
+ ".\onfig\stl_kai.h"\
+ ".\onfig\stl_msvc.h"\
+ ".\onfig\stl_mwerks.h"\
+ ".\onfig\stl_mycomp.h"\
+ ".\onfig\stl_sco.h"\
+ ".\onfig\stl_sgi.h"\
+ ".\onfig\stl_solaris.h"\
+ ".\onfig\stl_sunpro.h"\
+ ".\onfig\stl_symantec.h"\
+ ".\onfig\stl_watcom.h"\
+ ".\onfig\stl_wince.h"\
+ ".\onfig\stlcomp.h"\
+ ".\thread.h"\
+ ".\tl\_abbrevs.h"\
+ ".\tl\_config.h"\
+ ".\tl\_config_compat.h"\
+ ".\tl\_config_compat_post.h"\
+ ".\tl\_epilog.h"\
+ ".\tl\_prolog.h"\
+ ".\tl\_site_config.h"\
+ ".\tl\_stlport_version.h"\
+ ".\tl_user_config.h"\
+
+
+!ELSEIF "$(CFG)" == "throughputS - Win32 (WCE ARMV4) Debug Static"
+
+DEP_CPP_THROU=\
+ "..\..\..\include\IceE\BasicStream.h"\
+ "..\..\..\include\IceE\Buffer.h"\
+ "..\..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\include\IceE\CommunicatorF.h"\
+ "..\..\..\include\IceE\Cond.h"\
+ "..\..\..\include\IceE\Config.h"\
+ "..\..\..\include\IceE\ConnectionF.h"\
+ "..\..\..\include\IceE\Current.h"\
+ "..\..\..\include\IceE\DispatchStatus.h"\
+ "..\..\..\include\IceE\Exception.h"\
+ "..\..\..\include\IceE\ExceptionBase.h"\
+ "..\..\..\include\IceE\Handle.h"\
+ "..\..\..\include\IceE\Identity.h"\
+ "..\..\..\include\IceE\Incoming.h"\
+ "..\..\..\include\IceE\InstanceF.h"\
+ "..\..\..\include\IceE\LocalException.h"\
+ "..\..\..\include\IceE\LocalObject.h"\
+ "..\..\..\include\IceE\LocalObjectF.h"\
+ "..\..\..\include\IceE\Lock.h"\
+ "..\..\..\include\IceE\Monitor.h"\
+ "..\..\..\include\IceE\Mutex.h"\
+ "..\..\..\include\IceE\Object.h"\
+ "..\..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\..\include\IceE\ObjectF.h"\
+ "..\..\..\include\IceE\OperationMode.h"\
+ "..\..\..\include\IceE\Outgoing.h"\
+ "..\..\..\include\IceE\Proxy.h"\
+ "..\..\..\include\IceE\ProxyF.h"\
+ "..\..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\..\include\IceE\ProxyHandle.h"\
+ "..\..\..\include\IceE\ReferenceF.h"\
+ "..\..\..\include\IceE\ServantManagerF.h"\
+ "..\..\..\include\IceE\Shared.h"\
+ "..\..\..\include\IceE\ThreadException.h"\
+ "..\..\..\include\IceE\Time.h"\
+ "..\..\..\include\IceE\UndefSysMacros.h"\
+ ".\Throughput.h"\
+
+NODEP_CPP_THROU=\
+ "..\..\..\..\..\usr\include\pthread.h"\
+ ".\onfig\_epilog.h"\
+ ".\onfig\_msvc_warnings_off.h"\
+ ".\onfig\_prolog.h"\
+ ".\onfig\stl_apcc.h"\
+ ".\onfig\stl_apple.h"\
+ ".\onfig\stl_as400.h"\
+ ".\onfig\stl_bc.h"\
+ ".\onfig\stl_como.h"\
+ ".\onfig\stl_confix.h"\
+ ".\onfig\stl_cray.h"\
+ ".\onfig\stl_dec.h"\
+ ".\onfig\stl_dec_vms.h"\
+ ".\onfig\stl_dm.h"\
+ ".\onfig\stl_evc.h"\
+ ".\onfig\stl_fujitsu.h"\
+ ".\onfig\stl_gcc.h"\
+ ".\onfig\stl_hpacc.h"\
+ ".\onfig\stl_ibm.h"\
+ ".\onfig\stl_icc.h"\
+ ".\onfig\stl_intel.h"\
+ ".\onfig\stl_kai.h"\
+ ".\onfig\stl_msvc.h"\
+ ".\onfig\stl_mwerks.h"\
+ ".\onfig\stl_mycomp.h"\
+ ".\onfig\stl_sco.h"\
+ ".\onfig\stl_sgi.h"\
+ ".\onfig\stl_solaris.h"\
+ ".\onfig\stl_sunpro.h"\
+ ".\onfig\stl_symantec.h"\
+ ".\onfig\stl_watcom.h"\
+ ".\onfig\stl_wince.h"\
+ ".\onfig\stlcomp.h"\
+ ".\thread.h"\
+ ".\tl\_abbrevs.h"\
+ ".\tl\_config.h"\
+ ".\tl\_config_compat.h"\
+ ".\tl\_config_compat_post.h"\
+ ".\tl\_epilog.h"\
+ ".\tl\_prolog.h"\
+ ".\tl\_site_config.h"\
+ ".\tl\_stlport_version.h"\
+ ".\tl_user_config.h"\
+
+
+!ELSEIF "$(CFG)" == "throughputS - Win32 (WCE ARMV4) Release Static"
+
+DEP_CPP_THROU=\
+ "..\..\..\include\IceE\BasicStream.h"\
+ "..\..\..\include\IceE\Buffer.h"\
+ "..\..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\include\IceE\CommunicatorF.h"\
+ "..\..\..\include\IceE\Cond.h"\
+ "..\..\..\include\IceE\Config.h"\
+ "..\..\..\include\IceE\ConnectionF.h"\
+ "..\..\..\include\IceE\Current.h"\
+ "..\..\..\include\IceE\DispatchStatus.h"\
+ "..\..\..\include\IceE\Exception.h"\
+ "..\..\..\include\IceE\ExceptionBase.h"\
+ "..\..\..\include\IceE\Handle.h"\
+ "..\..\..\include\IceE\Identity.h"\
+ "..\..\..\include\IceE\Incoming.h"\
+ "..\..\..\include\IceE\InstanceF.h"\
+ "..\..\..\include\IceE\LocalException.h"\
+ "..\..\..\include\IceE\LocalObject.h"\
+ "..\..\..\include\IceE\LocalObjectF.h"\
+ "..\..\..\include\IceE\Lock.h"\
+ "..\..\..\include\IceE\Monitor.h"\
+ "..\..\..\include\IceE\Mutex.h"\
+ "..\..\..\include\IceE\Object.h"\
+ "..\..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\..\include\IceE\ObjectF.h"\
+ "..\..\..\include\IceE\OperationMode.h"\
+ "..\..\..\include\IceE\Outgoing.h"\
+ "..\..\..\include\IceE\Proxy.h"\
+ "..\..\..\include\IceE\ProxyF.h"\
+ "..\..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\..\include\IceE\ProxyHandle.h"\
+ "..\..\..\include\IceE\ReferenceF.h"\
+ "..\..\..\include\IceE\ServantManagerF.h"\
+ "..\..\..\include\IceE\Shared.h"\
+ "..\..\..\include\IceE\ThreadException.h"\
+ "..\..\..\include\IceE\Time.h"\
+ "..\..\..\include\IceE\UndefSysMacros.h"\
+ ".\Throughput.h"\
+
+NODEP_CPP_THROU=\
+ "..\..\..\..\..\usr\include\pthread.h"\
+ ".\onfig\_epilog.h"\
+ ".\onfig\_msvc_warnings_off.h"\
+ ".\onfig\_prolog.h"\
+ ".\onfig\stl_apcc.h"\
+ ".\onfig\stl_apple.h"\
+ ".\onfig\stl_as400.h"\
+ ".\onfig\stl_bc.h"\
+ ".\onfig\stl_como.h"\
+ ".\onfig\stl_confix.h"\
+ ".\onfig\stl_cray.h"\
+ ".\onfig\stl_dec.h"\
+ ".\onfig\stl_dec_vms.h"\
+ ".\onfig\stl_dm.h"\
+ ".\onfig\stl_evc.h"\
+ ".\onfig\stl_fujitsu.h"\
+ ".\onfig\stl_gcc.h"\
+ ".\onfig\stl_hpacc.h"\
+ ".\onfig\stl_ibm.h"\
+ ".\onfig\stl_icc.h"\
+ ".\onfig\stl_intel.h"\
+ ".\onfig\stl_kai.h"\
+ ".\onfig\stl_msvc.h"\
+ ".\onfig\stl_mwerks.h"\
+ ".\onfig\stl_mycomp.h"\
+ ".\onfig\stl_sco.h"\
+ ".\onfig\stl_sgi.h"\
+ ".\onfig\stl_solaris.h"\
+ ".\onfig\stl_sunpro.h"\
+ ".\onfig\stl_symantec.h"\
+ ".\onfig\stl_watcom.h"\
+ ".\onfig\stl_wince.h"\
+ ".\onfig\stlcomp.h"\
+ ".\thread.h"\
+ ".\tl\_abbrevs.h"\
+ ".\tl\_config.h"\
+ ".\tl\_config_compat.h"\
+ ".\tl\_config_compat_post.h"\
+ ".\tl\_epilog.h"\
+ ".\tl\_prolog.h"\
+ ".\tl\_site_config.h"\
+ ".\tl\_stlport_version.h"\
+ ".\tl_user_config.h"\
+
+
+!ELSEIF "$(CFG)" == "throughputS - Win32 (WCE emulator) Debug Static"
+
+DEP_CPP_THROU=\
+ "..\..\..\include\IceE\BasicStream.h"\
+ "..\..\..\include\IceE\Buffer.h"\
+ "..\..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\include\IceE\CommunicatorF.h"\
+ "..\..\..\include\IceE\Cond.h"\
+ "..\..\..\include\IceE\Config.h"\
+ "..\..\..\include\IceE\ConnectionF.h"\
+ "..\..\..\include\IceE\Current.h"\
+ "..\..\..\include\IceE\DispatchStatus.h"\
+ "..\..\..\include\IceE\Exception.h"\
+ "..\..\..\include\IceE\ExceptionBase.h"\
+ "..\..\..\include\IceE\Handle.h"\
+ "..\..\..\include\IceE\Identity.h"\
+ "..\..\..\include\IceE\Incoming.h"\
+ "..\..\..\include\IceE\InstanceF.h"\
+ "..\..\..\include\IceE\LocalException.h"\
+ "..\..\..\include\IceE\LocalObject.h"\
+ "..\..\..\include\IceE\LocalObjectF.h"\
+ "..\..\..\include\IceE\Lock.h"\
+ "..\..\..\include\IceE\Monitor.h"\
+ "..\..\..\include\IceE\Mutex.h"\
+ "..\..\..\include\IceE\Object.h"\
+ "..\..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\..\include\IceE\ObjectF.h"\
+ "..\..\..\include\IceE\OperationMode.h"\
+ "..\..\..\include\IceE\Outgoing.h"\
+ "..\..\..\include\IceE\Proxy.h"\
+ "..\..\..\include\IceE\ProxyF.h"\
+ "..\..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\..\include\IceE\ProxyHandle.h"\
+ "..\..\..\include\IceE\ReferenceF.h"\
+ "..\..\..\include\IceE\ServantManagerF.h"\
+ "..\..\..\include\IceE\Shared.h"\
+ "..\..\..\include\IceE\ThreadException.h"\
+ "..\..\..\include\IceE\Time.h"\
+ "..\..\..\include\IceE\UndefSysMacros.h"\
+ ".\Throughput.h"\
+
+NODEP_CPP_THROU=\
+ "..\..\..\..\..\usr\include\pthread.h"\
+ ".\onfig\_epilog.h"\
+ ".\onfig\_msvc_warnings_off.h"\
+ ".\onfig\_prolog.h"\
+ ".\onfig\stl_apcc.h"\
+ ".\onfig\stl_apple.h"\
+ ".\onfig\stl_as400.h"\
+ ".\onfig\stl_bc.h"\
+ ".\onfig\stl_como.h"\
+ ".\onfig\stl_confix.h"\
+ ".\onfig\stl_cray.h"\
+ ".\onfig\stl_dec.h"\
+ ".\onfig\stl_dec_vms.h"\
+ ".\onfig\stl_dm.h"\
+ ".\onfig\stl_evc.h"\
+ ".\onfig\stl_fujitsu.h"\
+ ".\onfig\stl_gcc.h"\
+ ".\onfig\stl_hpacc.h"\
+ ".\onfig\stl_ibm.h"\
+ ".\onfig\stl_icc.h"\
+ ".\onfig\stl_intel.h"\
+ ".\onfig\stl_kai.h"\
+ ".\onfig\stl_msvc.h"\
+ ".\onfig\stl_mwerks.h"\
+ ".\onfig\stl_mycomp.h"\
+ ".\onfig\stl_sco.h"\
+ ".\onfig\stl_sgi.h"\
+ ".\onfig\stl_solaris.h"\
+ ".\onfig\stl_sunpro.h"\
+ ".\onfig\stl_symantec.h"\
+ ".\onfig\stl_watcom.h"\
+ ".\onfig\stl_wince.h"\
+ ".\onfig\stlcomp.h"\
+ ".\thread.h"\
+ ".\tl\_abbrevs.h"\
+ ".\tl\_config.h"\
+ ".\tl\_config_compat.h"\
+ ".\tl\_config_compat_post.h"\
+ ".\tl\_epilog.h"\
+ ".\tl\_prolog.h"\
+ ".\tl\_site_config.h"\
+ ".\tl\_stlport_version.h"\
+ ".\tl_user_config.h"\
+
+
+!ELSEIF "$(CFG)" == "throughputS - Win32 (WCE emulator) Release Static"
+
+DEP_CPP_THROU=\
+ "..\..\..\include\IceE\BasicStream.h"\
+ "..\..\..\include\IceE\Buffer.h"\
+ "..\..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\include\IceE\CommunicatorF.h"\
+ "..\..\..\include\IceE\Cond.h"\
+ "..\..\..\include\IceE\Config.h"\
+ "..\..\..\include\IceE\ConnectionF.h"\
+ "..\..\..\include\IceE\Current.h"\
+ "..\..\..\include\IceE\DispatchStatus.h"\
+ "..\..\..\include\IceE\Exception.h"\
+ "..\..\..\include\IceE\ExceptionBase.h"\
+ "..\..\..\include\IceE\Handle.h"\
+ "..\..\..\include\IceE\Identity.h"\
+ "..\..\..\include\IceE\Incoming.h"\
+ "..\..\..\include\IceE\InstanceF.h"\
+ "..\..\..\include\IceE\LocalException.h"\
+ "..\..\..\include\IceE\LocalObject.h"\
+ "..\..\..\include\IceE\LocalObjectF.h"\
+ "..\..\..\include\IceE\Lock.h"\
+ "..\..\..\include\IceE\Monitor.h"\
+ "..\..\..\include\IceE\Mutex.h"\
+ "..\..\..\include\IceE\Object.h"\
+ "..\..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\..\include\IceE\ObjectF.h"\
+ "..\..\..\include\IceE\OperationMode.h"\
+ "..\..\..\include\IceE\Outgoing.h"\
+ "..\..\..\include\IceE\Proxy.h"\
+ "..\..\..\include\IceE\ProxyF.h"\
+ "..\..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\..\include\IceE\ProxyHandle.h"\
+ "..\..\..\include\IceE\ReferenceF.h"\
+ "..\..\..\include\IceE\ServantManagerF.h"\
+ "..\..\..\include\IceE\Shared.h"\
+ "..\..\..\include\IceE\ThreadException.h"\
+ "..\..\..\include\IceE\Time.h"\
+ "..\..\..\include\IceE\UndefSysMacros.h"\
+ ".\Throughput.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_THROU=\
+ "..\..\..\..\..\usr\include\pthread.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\ThroughputI.cpp
+
+!IF "$(CFG)" == "throughputS - Win32 (WCE emulator) Release"
+
+DEP_CPP_THROUG=\
+ "..\..\..\include\IceE\BasicStream.h"\
+ "..\..\..\include\IceE\Buffer.h"\
+ "..\..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\include\IceE\Communicator.h"\
+ "..\..\..\include\IceE\CommunicatorF.h"\
+ "..\..\..\include\IceE\Cond.h"\
+ "..\..\..\include\IceE\Config.h"\
+ "..\..\..\include\IceE\Connection.h"\
+ "..\..\..\include\IceE\ConnectionF.h"\
+ "..\..\..\include\IceE\Current.h"\
+ "..\..\..\include\IceE\DispatchStatus.h"\
+ "..\..\..\include\IceE\EndpointF.h"\
+ "..\..\..\include\IceE\Exception.h"\
+ "..\..\..\include\IceE\ExceptionBase.h"\
+ "..\..\..\include\IceE\FacetMap.h"\
+ "..\..\..\include\IceE\Functional.h"\
+ "..\..\..\include\IceE\Handle.h"\
+ "..\..\..\include\IceE\IceE.h"\
+ "..\..\..\include\IceE\Identity.h"\
+ "..\..\..\include\IceE\IdentityUtil.h"\
+ "..\..\..\include\IceE\Incoming.h"\
+ "..\..\..\include\IceE\IncomingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Initialize.h"\
+ "..\..\..\include\IceE\InstanceF.h"\
+ "..\..\..\include\IceE\LocalException.h"\
+ "..\..\..\include\IceE\LocalObject.h"\
+ "..\..\..\include\IceE\LocalObjectF.h"\
+ "..\..\..\include\IceE\LocatorF.h"\
+ "..\..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\..\include\IceE\Lock.h"\
+ "..\..\..\include\IceE\Logger.h"\
+ "..\..\..\include\IceE\LoggerF.h"\
+ "..\..\..\include\IceE\LoggerUtil.h"\
+ "..\..\..\include\IceE\Monitor.h"\
+ "..\..\..\include\IceE\Mutex.h"\
+ "..\..\..\include\IceE\Object.h"\
+ "..\..\..\include\IceE\ObjectAdapter.h"\
+ "..\..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\..\include\IceE\ObjectAdapterFactoryF.h"\
+ "..\..\..\include\IceE\ObjectF.h"\
+ "..\..\..\include\IceE\OperationMode.h"\
+ "..\..\..\include\IceE\Outgoing.h"\
+ "..\..\..\include\IceE\OutgoingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Properties.h"\
+ "..\..\..\include\IceE\PropertiesF.h"\
+ "..\..\..\include\IceE\Proxy.h"\
+ "..\..\..\include\IceE\ProxyF.h"\
+ "..\..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\..\include\IceE\ProxyHandle.h"\
+ "..\..\..\include\IceE\RecMutex.h"\
+ "..\..\..\include\IceE\ReferenceF.h"\
+ "..\..\..\include\IceE\RouterF.h"\
+ "..\..\..\include\IceE\ServantManagerF.h"\
+ "..\..\..\include\IceE\Shared.h"\
+ "..\..\..\include\IceE\Thread.h"\
+ "..\..\..\include\IceE\ThreadException.h"\
+ "..\..\..\include\IceE\Time.h"\
+ "..\..\..\include\IceE\TraceLevelsF.h"\
+ "..\..\..\include\IceE\TransceiverF.h"\
+ "..\..\..\include\IceE\UndefSysMacros.h"\
+ ".\Throughput.h"\
+ ".\ThroughputI.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_THROUG=\
+ "..\..\..\..\..\usr\include\pthread.h"\
+
+
+!ELSEIF "$(CFG)" == "throughputS - Win32 (WCE emulator) Debug"
+
+DEP_CPP_THROUG=\
+ "..\..\..\include\IceE\BasicStream.h"\
+ "..\..\..\include\IceE\Buffer.h"\
+ "..\..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\include\IceE\Communicator.h"\
+ "..\..\..\include\IceE\CommunicatorF.h"\
+ "..\..\..\include\IceE\Cond.h"\
+ "..\..\..\include\IceE\Config.h"\
+ "..\..\..\include\IceE\Connection.h"\
+ "..\..\..\include\IceE\ConnectionF.h"\
+ "..\..\..\include\IceE\Current.h"\
+ "..\..\..\include\IceE\DispatchStatus.h"\
+ "..\..\..\include\IceE\EndpointF.h"\
+ "..\..\..\include\IceE\Exception.h"\
+ "..\..\..\include\IceE\ExceptionBase.h"\
+ "..\..\..\include\IceE\FacetMap.h"\
+ "..\..\..\include\IceE\Functional.h"\
+ "..\..\..\include\IceE\Handle.h"\
+ "..\..\..\include\IceE\IceE.h"\
+ "..\..\..\include\IceE\Identity.h"\
+ "..\..\..\include\IceE\IdentityUtil.h"\
+ "..\..\..\include\IceE\Incoming.h"\
+ "..\..\..\include\IceE\IncomingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Initialize.h"\
+ "..\..\..\include\IceE\InstanceF.h"\
+ "..\..\..\include\IceE\LocalException.h"\
+ "..\..\..\include\IceE\LocalObject.h"\
+ "..\..\..\include\IceE\LocalObjectF.h"\
+ "..\..\..\include\IceE\LocatorF.h"\
+ "..\..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\..\include\IceE\Lock.h"\
+ "..\..\..\include\IceE\Logger.h"\
+ "..\..\..\include\IceE\LoggerF.h"\
+ "..\..\..\include\IceE\LoggerUtil.h"\
+ "..\..\..\include\IceE\Monitor.h"\
+ "..\..\..\include\IceE\Mutex.h"\
+ "..\..\..\include\IceE\Object.h"\
+ "..\..\..\include\IceE\ObjectAdapter.h"\
+ "..\..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\..\include\IceE\ObjectAdapterFactoryF.h"\
+ "..\..\..\include\IceE\ObjectF.h"\
+ "..\..\..\include\IceE\OperationMode.h"\
+ "..\..\..\include\IceE\Outgoing.h"\
+ "..\..\..\include\IceE\OutgoingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Properties.h"\
+ "..\..\..\include\IceE\PropertiesF.h"\
+ "..\..\..\include\IceE\Proxy.h"\
+ "..\..\..\include\IceE\ProxyF.h"\
+ "..\..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\..\include\IceE\ProxyHandle.h"\
+ "..\..\..\include\IceE\RecMutex.h"\
+ "..\..\..\include\IceE\ReferenceF.h"\
+ "..\..\..\include\IceE\RouterF.h"\
+ "..\..\..\include\IceE\ServantManagerF.h"\
+ "..\..\..\include\IceE\Shared.h"\
+ "..\..\..\include\IceE\Thread.h"\
+ "..\..\..\include\IceE\ThreadException.h"\
+ "..\..\..\include\IceE\Time.h"\
+ "..\..\..\include\IceE\TraceLevelsF.h"\
+ "..\..\..\include\IceE\TransceiverF.h"\
+ "..\..\..\include\IceE\UndefSysMacros.h"\
+ ".\Throughput.h"\
+ ".\ThroughputI.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_THROUG=\
+ "..\..\..\..\..\usr\include\pthread.h"\
+
+
+!ELSEIF "$(CFG)" == "throughputS - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_THROUG=\
+ "..\..\..\include\IceE\BasicStream.h"\
+ "..\..\..\include\IceE\Buffer.h"\
+ "..\..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\include\IceE\Communicator.h"\
+ "..\..\..\include\IceE\CommunicatorF.h"\
+ "..\..\..\include\IceE\Cond.h"\
+ "..\..\..\include\IceE\Config.h"\
+ "..\..\..\include\IceE\Connection.h"\
+ "..\..\..\include\IceE\ConnectionF.h"\
+ "..\..\..\include\IceE\Current.h"\
+ "..\..\..\include\IceE\DispatchStatus.h"\
+ "..\..\..\include\IceE\EndpointF.h"\
+ "..\..\..\include\IceE\Exception.h"\
+ "..\..\..\include\IceE\ExceptionBase.h"\
+ "..\..\..\include\IceE\FacetMap.h"\
+ "..\..\..\include\IceE\Functional.h"\
+ "..\..\..\include\IceE\Handle.h"\
+ "..\..\..\include\IceE\IceE.h"\
+ "..\..\..\include\IceE\Identity.h"\
+ "..\..\..\include\IceE\IdentityUtil.h"\
+ "..\..\..\include\IceE\Incoming.h"\
+ "..\..\..\include\IceE\IncomingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Initialize.h"\
+ "..\..\..\include\IceE\InstanceF.h"\
+ "..\..\..\include\IceE\LocalException.h"\
+ "..\..\..\include\IceE\LocalObject.h"\
+ "..\..\..\include\IceE\LocalObjectF.h"\
+ "..\..\..\include\IceE\LocatorF.h"\
+ "..\..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\..\include\IceE\Lock.h"\
+ "..\..\..\include\IceE\Logger.h"\
+ "..\..\..\include\IceE\LoggerF.h"\
+ "..\..\..\include\IceE\LoggerUtil.h"\
+ "..\..\..\include\IceE\Monitor.h"\
+ "..\..\..\include\IceE\Mutex.h"\
+ "..\..\..\include\IceE\Object.h"\
+ "..\..\..\include\IceE\ObjectAdapter.h"\
+ "..\..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\..\include\IceE\ObjectAdapterFactoryF.h"\
+ "..\..\..\include\IceE\ObjectF.h"\
+ "..\..\..\include\IceE\OperationMode.h"\
+ "..\..\..\include\IceE\Outgoing.h"\
+ "..\..\..\include\IceE\OutgoingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Properties.h"\
+ "..\..\..\include\IceE\PropertiesF.h"\
+ "..\..\..\include\IceE\Proxy.h"\
+ "..\..\..\include\IceE\ProxyF.h"\
+ "..\..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\..\include\IceE\ProxyHandle.h"\
+ "..\..\..\include\IceE\RecMutex.h"\
+ "..\..\..\include\IceE\ReferenceF.h"\
+ "..\..\..\include\IceE\RouterF.h"\
+ "..\..\..\include\IceE\ServantManagerF.h"\
+ "..\..\..\include\IceE\Shared.h"\
+ "..\..\..\include\IceE\Thread.h"\
+ "..\..\..\include\IceE\ThreadException.h"\
+ "..\..\..\include\IceE\Time.h"\
+ "..\..\..\include\IceE\TraceLevelsF.h"\
+ "..\..\..\include\IceE\TransceiverF.h"\
+ "..\..\..\include\IceE\UndefSysMacros.h"\
+ ".\Throughput.h"\
+ ".\ThroughputI.h"\
+
+
+!ELSEIF "$(CFG)" == "throughputS - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_THROUG=\
+ "..\..\..\include\IceE\BasicStream.h"\
+ "..\..\..\include\IceE\Buffer.h"\
+ "..\..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\include\IceE\Communicator.h"\
+ "..\..\..\include\IceE\CommunicatorF.h"\
+ "..\..\..\include\IceE\Cond.h"\
+ "..\..\..\include\IceE\Config.h"\
+ "..\..\..\include\IceE\Connection.h"\
+ "..\..\..\include\IceE\ConnectionF.h"\
+ "..\..\..\include\IceE\Current.h"\
+ "..\..\..\include\IceE\DispatchStatus.h"\
+ "..\..\..\include\IceE\EndpointF.h"\
+ "..\..\..\include\IceE\Exception.h"\
+ "..\..\..\include\IceE\ExceptionBase.h"\
+ "..\..\..\include\IceE\FacetMap.h"\
+ "..\..\..\include\IceE\Functional.h"\
+ "..\..\..\include\IceE\Handle.h"\
+ "..\..\..\include\IceE\IceE.h"\
+ "..\..\..\include\IceE\Identity.h"\
+ "..\..\..\include\IceE\IdentityUtil.h"\
+ "..\..\..\include\IceE\Incoming.h"\
+ "..\..\..\include\IceE\IncomingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Initialize.h"\
+ "..\..\..\include\IceE\InstanceF.h"\
+ "..\..\..\include\IceE\LocalException.h"\
+ "..\..\..\include\IceE\LocalObject.h"\
+ "..\..\..\include\IceE\LocalObjectF.h"\
+ "..\..\..\include\IceE\LocatorF.h"\
+ "..\..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\..\include\IceE\Lock.h"\
+ "..\..\..\include\IceE\Logger.h"\
+ "..\..\..\include\IceE\LoggerF.h"\
+ "..\..\..\include\IceE\LoggerUtil.h"\
+ "..\..\..\include\IceE\Monitor.h"\
+ "..\..\..\include\IceE\Mutex.h"\
+ "..\..\..\include\IceE\Object.h"\
+ "..\..\..\include\IceE\ObjectAdapter.h"\
+ "..\..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\..\include\IceE\ObjectAdapterFactoryF.h"\
+ "..\..\..\include\IceE\ObjectF.h"\
+ "..\..\..\include\IceE\OperationMode.h"\
+ "..\..\..\include\IceE\Outgoing.h"\
+ "..\..\..\include\IceE\OutgoingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Properties.h"\
+ "..\..\..\include\IceE\PropertiesF.h"\
+ "..\..\..\include\IceE\Proxy.h"\
+ "..\..\..\include\IceE\ProxyF.h"\
+ "..\..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\..\include\IceE\ProxyHandle.h"\
+ "..\..\..\include\IceE\RecMutex.h"\
+ "..\..\..\include\IceE\ReferenceF.h"\
+ "..\..\..\include\IceE\RouterF.h"\
+ "..\..\..\include\IceE\ServantManagerF.h"\
+ "..\..\..\include\IceE\Shared.h"\
+ "..\..\..\include\IceE\Thread.h"\
+ "..\..\..\include\IceE\ThreadException.h"\
+ "..\..\..\include\IceE\Time.h"\
+ "..\..\..\include\IceE\TraceLevelsF.h"\
+ "..\..\..\include\IceE\TransceiverF.h"\
+ "..\..\..\include\IceE\UndefSysMacros.h"\
+ ".\Throughput.h"\
+ ".\ThroughputI.h"\
+
+
+!ELSEIF "$(CFG)" == "throughputS - Win32 (WCE ARMV4) Debug Static"
+
+DEP_CPP_THROUG=\
+ "..\..\..\include\IceE\BasicStream.h"\
+ "..\..\..\include\IceE\Buffer.h"\
+ "..\..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\include\IceE\Communicator.h"\
+ "..\..\..\include\IceE\CommunicatorF.h"\
+ "..\..\..\include\IceE\Cond.h"\
+ "..\..\..\include\IceE\Config.h"\
+ "..\..\..\include\IceE\Connection.h"\
+ "..\..\..\include\IceE\ConnectionF.h"\
+ "..\..\..\include\IceE\Current.h"\
+ "..\..\..\include\IceE\DispatchStatus.h"\
+ "..\..\..\include\IceE\EndpointF.h"\
+ "..\..\..\include\IceE\Exception.h"\
+ "..\..\..\include\IceE\ExceptionBase.h"\
+ "..\..\..\include\IceE\FacetMap.h"\
+ "..\..\..\include\IceE\Functional.h"\
+ "..\..\..\include\IceE\Handle.h"\
+ "..\..\..\include\IceE\IceE.h"\
+ "..\..\..\include\IceE\Identity.h"\
+ "..\..\..\include\IceE\IdentityUtil.h"\
+ "..\..\..\include\IceE\Incoming.h"\
+ "..\..\..\include\IceE\IncomingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Initialize.h"\
+ "..\..\..\include\IceE\InstanceF.h"\
+ "..\..\..\include\IceE\LocalException.h"\
+ "..\..\..\include\IceE\LocalObject.h"\
+ "..\..\..\include\IceE\LocalObjectF.h"\
+ "..\..\..\include\IceE\LocatorF.h"\
+ "..\..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\..\include\IceE\Lock.h"\
+ "..\..\..\include\IceE\Logger.h"\
+ "..\..\..\include\IceE\LoggerF.h"\
+ "..\..\..\include\IceE\LoggerUtil.h"\
+ "..\..\..\include\IceE\Monitor.h"\
+ "..\..\..\include\IceE\Mutex.h"\
+ "..\..\..\include\IceE\Object.h"\
+ "..\..\..\include\IceE\ObjectAdapter.h"\
+ "..\..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\..\include\IceE\ObjectAdapterFactoryF.h"\
+ "..\..\..\include\IceE\ObjectF.h"\
+ "..\..\..\include\IceE\OperationMode.h"\
+ "..\..\..\include\IceE\Outgoing.h"\
+ "..\..\..\include\IceE\OutgoingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Properties.h"\
+ "..\..\..\include\IceE\PropertiesF.h"\
+ "..\..\..\include\IceE\Proxy.h"\
+ "..\..\..\include\IceE\ProxyF.h"\
+ "..\..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\..\include\IceE\ProxyHandle.h"\
+ "..\..\..\include\IceE\RecMutex.h"\
+ "..\..\..\include\IceE\ReferenceF.h"\
+ "..\..\..\include\IceE\RouterF.h"\
+ "..\..\..\include\IceE\ServantManagerF.h"\
+ "..\..\..\include\IceE\Shared.h"\
+ "..\..\..\include\IceE\Thread.h"\
+ "..\..\..\include\IceE\ThreadException.h"\
+ "..\..\..\include\IceE\Time.h"\
+ "..\..\..\include\IceE\TraceLevelsF.h"\
+ "..\..\..\include\IceE\TransceiverF.h"\
+ "..\..\..\include\IceE\UndefSysMacros.h"\
+ ".\Throughput.h"\
+ ".\ThroughputI.h"\
+
+
+!ELSEIF "$(CFG)" == "throughputS - Win32 (WCE ARMV4) Release Static"
+
+DEP_CPP_THROUG=\
+ "..\..\..\include\IceE\BasicStream.h"\
+ "..\..\..\include\IceE\Buffer.h"\
+ "..\..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\include\IceE\Communicator.h"\
+ "..\..\..\include\IceE\CommunicatorF.h"\
+ "..\..\..\include\IceE\Cond.h"\
+ "..\..\..\include\IceE\Config.h"\
+ "..\..\..\include\IceE\Connection.h"\
+ "..\..\..\include\IceE\ConnectionF.h"\
+ "..\..\..\include\IceE\Current.h"\
+ "..\..\..\include\IceE\DispatchStatus.h"\
+ "..\..\..\include\IceE\EndpointF.h"\
+ "..\..\..\include\IceE\Exception.h"\
+ "..\..\..\include\IceE\ExceptionBase.h"\
+ "..\..\..\include\IceE\FacetMap.h"\
+ "..\..\..\include\IceE\Functional.h"\
+ "..\..\..\include\IceE\Handle.h"\
+ "..\..\..\include\IceE\IceE.h"\
+ "..\..\..\include\IceE\Identity.h"\
+ "..\..\..\include\IceE\IdentityUtil.h"\
+ "..\..\..\include\IceE\Incoming.h"\
+ "..\..\..\include\IceE\IncomingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Initialize.h"\
+ "..\..\..\include\IceE\InstanceF.h"\
+ "..\..\..\include\IceE\LocalException.h"\
+ "..\..\..\include\IceE\LocalObject.h"\
+ "..\..\..\include\IceE\LocalObjectF.h"\
+ "..\..\..\include\IceE\LocatorF.h"\
+ "..\..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\..\include\IceE\Lock.h"\
+ "..\..\..\include\IceE\Logger.h"\
+ "..\..\..\include\IceE\LoggerF.h"\
+ "..\..\..\include\IceE\LoggerUtil.h"\
+ "..\..\..\include\IceE\Monitor.h"\
+ "..\..\..\include\IceE\Mutex.h"\
+ "..\..\..\include\IceE\Object.h"\
+ "..\..\..\include\IceE\ObjectAdapter.h"\
+ "..\..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\..\include\IceE\ObjectAdapterFactoryF.h"\
+ "..\..\..\include\IceE\ObjectF.h"\
+ "..\..\..\include\IceE\OperationMode.h"\
+ "..\..\..\include\IceE\Outgoing.h"\
+ "..\..\..\include\IceE\OutgoingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Properties.h"\
+ "..\..\..\include\IceE\PropertiesF.h"\
+ "..\..\..\include\IceE\Proxy.h"\
+ "..\..\..\include\IceE\ProxyF.h"\
+ "..\..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\..\include\IceE\ProxyHandle.h"\
+ "..\..\..\include\IceE\RecMutex.h"\
+ "..\..\..\include\IceE\ReferenceF.h"\
+ "..\..\..\include\IceE\RouterF.h"\
+ "..\..\..\include\IceE\ServantManagerF.h"\
+ "..\..\..\include\IceE\Shared.h"\
+ "..\..\..\include\IceE\Thread.h"\
+ "..\..\..\include\IceE\ThreadException.h"\
+ "..\..\..\include\IceE\Time.h"\
+ "..\..\..\include\IceE\TraceLevelsF.h"\
+ "..\..\..\include\IceE\TransceiverF.h"\
+ "..\..\..\include\IceE\UndefSysMacros.h"\
+ ".\Throughput.h"\
+ ".\ThroughputI.h"\
+
+
+!ELSEIF "$(CFG)" == "throughputS - Win32 (WCE emulator) Debug Static"
+
+DEP_CPP_THROUG=\
+ "..\..\..\include\IceE\BasicStream.h"\
+ "..\..\..\include\IceE\Buffer.h"\
+ "..\..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\include\IceE\Communicator.h"\
+ "..\..\..\include\IceE\CommunicatorF.h"\
+ "..\..\..\include\IceE\Cond.h"\
+ "..\..\..\include\IceE\Config.h"\
+ "..\..\..\include\IceE\Connection.h"\
+ "..\..\..\include\IceE\ConnectionF.h"\
+ "..\..\..\include\IceE\Current.h"\
+ "..\..\..\include\IceE\DispatchStatus.h"\
+ "..\..\..\include\IceE\EndpointF.h"\
+ "..\..\..\include\IceE\Exception.h"\
+ "..\..\..\include\IceE\ExceptionBase.h"\
+ "..\..\..\include\IceE\FacetMap.h"\
+ "..\..\..\include\IceE\Functional.h"\
+ "..\..\..\include\IceE\Handle.h"\
+ "..\..\..\include\IceE\IceE.h"\
+ "..\..\..\include\IceE\Identity.h"\
+ "..\..\..\include\IceE\IdentityUtil.h"\
+ "..\..\..\include\IceE\Incoming.h"\
+ "..\..\..\include\IceE\IncomingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Initialize.h"\
+ "..\..\..\include\IceE\InstanceF.h"\
+ "..\..\..\include\IceE\LocalException.h"\
+ "..\..\..\include\IceE\LocalObject.h"\
+ "..\..\..\include\IceE\LocalObjectF.h"\
+ "..\..\..\include\IceE\LocatorF.h"\
+ "..\..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\..\include\IceE\Lock.h"\
+ "..\..\..\include\IceE\Logger.h"\
+ "..\..\..\include\IceE\LoggerF.h"\
+ "..\..\..\include\IceE\LoggerUtil.h"\
+ "..\..\..\include\IceE\Monitor.h"\
+ "..\..\..\include\IceE\Mutex.h"\
+ "..\..\..\include\IceE\Object.h"\
+ "..\..\..\include\IceE\ObjectAdapter.h"\
+ "..\..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\..\include\IceE\ObjectAdapterFactoryF.h"\
+ "..\..\..\include\IceE\ObjectF.h"\
+ "..\..\..\include\IceE\OperationMode.h"\
+ "..\..\..\include\IceE\Outgoing.h"\
+ "..\..\..\include\IceE\OutgoingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Properties.h"\
+ "..\..\..\include\IceE\PropertiesF.h"\
+ "..\..\..\include\IceE\Proxy.h"\
+ "..\..\..\include\IceE\ProxyF.h"\
+ "..\..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\..\include\IceE\ProxyHandle.h"\
+ "..\..\..\include\IceE\RecMutex.h"\
+ "..\..\..\include\IceE\ReferenceF.h"\
+ "..\..\..\include\IceE\RouterF.h"\
+ "..\..\..\include\IceE\ServantManagerF.h"\
+ "..\..\..\include\IceE\Shared.h"\
+ "..\..\..\include\IceE\Thread.h"\
+ "..\..\..\include\IceE\ThreadException.h"\
+ "..\..\..\include\IceE\Time.h"\
+ "..\..\..\include\IceE\TraceLevelsF.h"\
+ "..\..\..\include\IceE\TransceiverF.h"\
+ "..\..\..\include\IceE\UndefSysMacros.h"\
+ ".\Throughput.h"\
+ ".\ThroughputI.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_THROUG=\
+ "..\..\..\..\..\usr\include\pthread.h"\
+
+
+!ELSEIF "$(CFG)" == "throughputS - Win32 (WCE emulator) Release Static"
+
+DEP_CPP_THROUG=\
+ "..\..\..\include\IceE\BasicStream.h"\
+ "..\..\..\include\IceE\Buffer.h"\
+ "..\..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\include\IceE\Communicator.h"\
+ "..\..\..\include\IceE\CommunicatorF.h"\
+ "..\..\..\include\IceE\Cond.h"\
+ "..\..\..\include\IceE\Config.h"\
+ "..\..\..\include\IceE\Connection.h"\
+ "..\..\..\include\IceE\ConnectionF.h"\
+ "..\..\..\include\IceE\Current.h"\
+ "..\..\..\include\IceE\DispatchStatus.h"\
+ "..\..\..\include\IceE\EndpointF.h"\
+ "..\..\..\include\IceE\Exception.h"\
+ "..\..\..\include\IceE\ExceptionBase.h"\
+ "..\..\..\include\IceE\FacetMap.h"\
+ "..\..\..\include\IceE\Functional.h"\
+ "..\..\..\include\IceE\Handle.h"\
+ "..\..\..\include\IceE\IceE.h"\
+ "..\..\..\include\IceE\Identity.h"\
+ "..\..\..\include\IceE\IdentityUtil.h"\
+ "..\..\..\include\IceE\Incoming.h"\
+ "..\..\..\include\IceE\IncomingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Initialize.h"\
+ "..\..\..\include\IceE\InstanceF.h"\
+ "..\..\..\include\IceE\LocalException.h"\
+ "..\..\..\include\IceE\LocalObject.h"\
+ "..\..\..\include\IceE\LocalObjectF.h"\
+ "..\..\..\include\IceE\LocatorF.h"\
+ "..\..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\..\include\IceE\Lock.h"\
+ "..\..\..\include\IceE\Logger.h"\
+ "..\..\..\include\IceE\LoggerF.h"\
+ "..\..\..\include\IceE\LoggerUtil.h"\
+ "..\..\..\include\IceE\Monitor.h"\
+ "..\..\..\include\IceE\Mutex.h"\
+ "..\..\..\include\IceE\Object.h"\
+ "..\..\..\include\IceE\ObjectAdapter.h"\
+ "..\..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\..\include\IceE\ObjectAdapterFactoryF.h"\
+ "..\..\..\include\IceE\ObjectF.h"\
+ "..\..\..\include\IceE\OperationMode.h"\
+ "..\..\..\include\IceE\Outgoing.h"\
+ "..\..\..\include\IceE\OutgoingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Properties.h"\
+ "..\..\..\include\IceE\PropertiesF.h"\
+ "..\..\..\include\IceE\Proxy.h"\
+ "..\..\..\include\IceE\ProxyF.h"\
+ "..\..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\..\include\IceE\ProxyHandle.h"\
+ "..\..\..\include\IceE\RecMutex.h"\
+ "..\..\..\include\IceE\ReferenceF.h"\
+ "..\..\..\include\IceE\RouterF.h"\
+ "..\..\..\include\IceE\ServantManagerF.h"\
+ "..\..\..\include\IceE\Shared.h"\
+ "..\..\..\include\IceE\Thread.h"\
+ "..\..\..\include\IceE\ThreadException.h"\
+ "..\..\..\include\IceE\Time.h"\
+ "..\..\..\include\IceE\TraceLevelsF.h"\
+ "..\..\..\include\IceE\TransceiverF.h"\
+ "..\..\..\include\IceE\UndefSysMacros.h"\
+ ".\Throughput.h"\
+ ".\ThroughputI.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_THROUG=\
+ "..\..\..\..\..\usr\include\pthread.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\WinCEServer.cpp
+
+!IF "$(CFG)" == "throughputS - Win32 (WCE emulator) Release"
+
+DEP_CPP_WINCE=\
+ "..\..\..\include\IceE\BasicStream.h"\
+ "..\..\..\include\IceE\Buffer.h"\
+ "..\..\..\include\IceE\Communicator.h"\
+ "..\..\..\include\IceE\CommunicatorF.h"\
+ "..\..\..\include\IceE\Cond.h"\
+ "..\..\..\include\IceE\Config.h"\
+ "..\..\..\include\IceE\Connection.h"\
+ "..\..\..\include\IceE\ConnectionF.h"\
+ "..\..\..\include\IceE\Current.h"\
+ "..\..\..\include\IceE\DispatchStatus.h"\
+ "..\..\..\include\IceE\EndpointF.h"\
+ "..\..\..\include\IceE\Exception.h"\
+ "..\..\..\include\IceE\ExceptionBase.h"\
+ "..\..\..\include\IceE\Functional.h"\
+ "..\..\..\include\IceE\Handle.h"\
+ "..\..\..\include\IceE\IceE.h"\
+ "..\..\..\include\IceE\IdentityUtil.h"\
+ "..\..\..\include\IceE\Incoming.h"\
+ "..\..\..\include\IceE\IncomingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Initialize.h"\
+ "..\..\..\include\IceE\InstanceF.h"\
+ "..\..\..\include\IceE\LocalObject.h"\
+ "..\..\..\include\IceE\LocalObjectF.h"\
+ "..\..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\..\include\IceE\Lock.h"\
+ "..\..\..\include\IceE\LoggerUtil.h"\
+ "..\..\..\include\IceE\Monitor.h"\
+ "..\..\..\include\IceE\Mutex.h"\
+ "..\..\..\include\IceE\Object.h"\
+ "..\..\..\include\IceE\ObjectAdapter.h"\
+ "..\..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\..\include\IceE\ObjectAdapterFactoryF.h"\
+ "..\..\..\include\IceE\ObjectF.h"\
+ "..\..\..\include\IceE\OperationMode.h"\
+ "..\..\..\include\IceE\Outgoing.h"\
+ "..\..\..\include\IceE\OutgoingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Properties.h"\
+ "..\..\..\include\IceE\PropertiesF.h"\
+ "..\..\..\include\IceE\Proxy.h"\
+ "..\..\..\include\IceE\ProxyF.h"\
+ "..\..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\..\include\IceE\ProxyHandle.h"\
+ "..\..\..\include\IceE\RecMutex.h"\
+ "..\..\..\include\IceE\ReferenceF.h"\
+ "..\..\..\include\IceE\ServantManagerF.h"\
+ "..\..\..\include\IceE\Shared.h"\
+ "..\..\..\include\IceE\Thread.h"\
+ "..\..\..\include\IceE\ThreadException.h"\
+ "..\..\..\include\IceE\Time.h"\
+ "..\..\..\include\IceE\TraceLevelsF.h"\
+ "..\..\..\include\IceE\TransceiverF.h"\
+ "..\..\..\include\IceE\UndefSysMacros.h"\
+
+NODEP_CPP_WINCE=\
+ "..\..\..\..\..\usr\include\pthread.h"\
+ "..\..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\include\IceE\FacetMap.h"\
+ "..\..\..\include\IceE\Identity.h"\
+ "..\..\..\include\IceE\LocalException.h"\
+ "..\..\..\include\IceE\LocatorF.h"\
+ "..\..\..\include\IceE\Logger.h"\
+ "..\..\..\include\IceE\LoggerF.h"\
+ "..\..\..\include\IceE\RouterF.h"\
+ ".\Hello.h"\
+ ".\onfig\_epilog.h"\
+ ".\onfig\_msvc_warnings_off.h"\
+ ".\onfig\_prolog.h"\
+ ".\onfig\stl_apcc.h"\
+ ".\onfig\stl_apple.h"\
+ ".\onfig\stl_as400.h"\
+ ".\onfig\stl_bc.h"\
+ ".\onfig\stl_como.h"\
+ ".\onfig\stl_confix.h"\
+ ".\onfig\stl_cray.h"\
+ ".\onfig\stl_dec.h"\
+ ".\onfig\stl_dec_vms.h"\
+ ".\onfig\stl_dm.h"\
+ ".\onfig\stl_evc.h"\
+ ".\onfig\stl_fujitsu.h"\
+ ".\onfig\stl_gcc.h"\
+ ".\onfig\stl_hpacc.h"\
+ ".\onfig\stl_ibm.h"\
+ ".\onfig\stl_icc.h"\
+ ".\onfig\stl_intel.h"\
+ ".\onfig\stl_kai.h"\
+ ".\onfig\stl_msvc.h"\
+ ".\onfig\stl_mwerks.h"\
+ ".\onfig\stl_mycomp.h"\
+ ".\onfig\stl_sco.h"\
+ ".\onfig\stl_sgi.h"\
+ ".\onfig\stl_solaris.h"\
+ ".\onfig\stl_sunpro.h"\
+ ".\onfig\stl_symantec.h"\
+ ".\onfig\stl_watcom.h"\
+ ".\onfig\stl_wince.h"\
+ ".\onfig\stlcomp.h"\
+ ".\thread.h"\
+ ".\tl\_abbrevs.h"\
+ ".\tl\_config.h"\
+ ".\tl\_config_compat.h"\
+ ".\tl\_config_compat_post.h"\
+ ".\tl\_epilog.h"\
+ ".\tl\_prolog.h"\
+ ".\tl\_site_config.h"\
+ ".\tl\_stlport_version.h"\
+ ".\tl_user_config.h"\
+
+
+!ELSEIF "$(CFG)" == "throughputS - Win32 (WCE emulator) Debug"
+
+DEP_CPP_WINCE=\
+ "..\..\..\include\IceE\BasicStream.h"\
+ "..\..\..\include\IceE\Buffer.h"\
+ "..\..\..\include\IceE\Communicator.h"\
+ "..\..\..\include\IceE\CommunicatorF.h"\
+ "..\..\..\include\IceE\Cond.h"\
+ "..\..\..\include\IceE\Config.h"\
+ "..\..\..\include\IceE\Connection.h"\
+ "..\..\..\include\IceE\ConnectionF.h"\
+ "..\..\..\include\IceE\Current.h"\
+ "..\..\..\include\IceE\DispatchStatus.h"\
+ "..\..\..\include\IceE\EndpointF.h"\
+ "..\..\..\include\IceE\Exception.h"\
+ "..\..\..\include\IceE\ExceptionBase.h"\
+ "..\..\..\include\IceE\Functional.h"\
+ "..\..\..\include\IceE\Handle.h"\
+ "..\..\..\include\IceE\IceE.h"\
+ "..\..\..\include\IceE\IdentityUtil.h"\
+ "..\..\..\include\IceE\Incoming.h"\
+ "..\..\..\include\IceE\IncomingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Initialize.h"\
+ "..\..\..\include\IceE\InstanceF.h"\
+ "..\..\..\include\IceE\LocalObject.h"\
+ "..\..\..\include\IceE\LocalObjectF.h"\
+ "..\..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\..\include\IceE\Lock.h"\
+ "..\..\..\include\IceE\LoggerUtil.h"\
+ "..\..\..\include\IceE\Monitor.h"\
+ "..\..\..\include\IceE\Mutex.h"\
+ "..\..\..\include\IceE\Object.h"\
+ "..\..\..\include\IceE\ObjectAdapter.h"\
+ "..\..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\..\include\IceE\ObjectAdapterFactoryF.h"\
+ "..\..\..\include\IceE\ObjectF.h"\
+ "..\..\..\include\IceE\OperationMode.h"\
+ "..\..\..\include\IceE\Outgoing.h"\
+ "..\..\..\include\IceE\OutgoingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Properties.h"\
+ "..\..\..\include\IceE\PropertiesF.h"\
+ "..\..\..\include\IceE\Proxy.h"\
+ "..\..\..\include\IceE\ProxyF.h"\
+ "..\..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\..\include\IceE\ProxyHandle.h"\
+ "..\..\..\include\IceE\RecMutex.h"\
+ "..\..\..\include\IceE\ReferenceF.h"\
+ "..\..\..\include\IceE\ServantManagerF.h"\
+ "..\..\..\include\IceE\Shared.h"\
+ "..\..\..\include\IceE\Thread.h"\
+ "..\..\..\include\IceE\ThreadException.h"\
+ "..\..\..\include\IceE\Time.h"\
+ "..\..\..\include\IceE\TraceLevelsF.h"\
+ "..\..\..\include\IceE\TransceiverF.h"\
+ "..\..\..\include\IceE\UndefSysMacros.h"\
+
+NODEP_CPP_WINCE=\
+ "..\..\..\..\..\usr\include\pthread.h"\
+ "..\..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\include\IceE\FacetMap.h"\
+ "..\..\..\include\IceE\Identity.h"\
+ "..\..\..\include\IceE\LocalException.h"\
+ "..\..\..\include\IceE\LocatorF.h"\
+ "..\..\..\include\IceE\Logger.h"\
+ "..\..\..\include\IceE\LoggerF.h"\
+ "..\..\..\include\IceE\RouterF.h"\
+ ".\Hello.h"\
+ ".\onfig\_epilog.h"\
+ ".\onfig\_msvc_warnings_off.h"\
+ ".\onfig\_prolog.h"\
+ ".\onfig\stl_apcc.h"\
+ ".\onfig\stl_apple.h"\
+ ".\onfig\stl_as400.h"\
+ ".\onfig\stl_bc.h"\
+ ".\onfig\stl_como.h"\
+ ".\onfig\stl_confix.h"\
+ ".\onfig\stl_cray.h"\
+ ".\onfig\stl_dec.h"\
+ ".\onfig\stl_dec_vms.h"\
+ ".\onfig\stl_dm.h"\
+ ".\onfig\stl_evc.h"\
+ ".\onfig\stl_fujitsu.h"\
+ ".\onfig\stl_gcc.h"\
+ ".\onfig\stl_hpacc.h"\
+ ".\onfig\stl_ibm.h"\
+ ".\onfig\stl_icc.h"\
+ ".\onfig\stl_intel.h"\
+ ".\onfig\stl_kai.h"\
+ ".\onfig\stl_msvc.h"\
+ ".\onfig\stl_mwerks.h"\
+ ".\onfig\stl_mycomp.h"\
+ ".\onfig\stl_sco.h"\
+ ".\onfig\stl_sgi.h"\
+ ".\onfig\stl_solaris.h"\
+ ".\onfig\stl_sunpro.h"\
+ ".\onfig\stl_symantec.h"\
+ ".\onfig\stl_watcom.h"\
+ ".\onfig\stl_wince.h"\
+ ".\onfig\stlcomp.h"\
+ ".\thread.h"\
+ ".\tl\_abbrevs.h"\
+ ".\tl\_config.h"\
+ ".\tl\_config_compat.h"\
+ ".\tl\_config_compat_post.h"\
+ ".\tl\_epilog.h"\
+ ".\tl\_prolog.h"\
+ ".\tl\_site_config.h"\
+ ".\tl\_stlport_version.h"\
+ ".\tl_user_config.h"\
+
+
+!ELSEIF "$(CFG)" == "throughputS - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_WINCE=\
+ "..\..\..\include\IceE\BasicStream.h"\
+ "..\..\..\include\IceE\Buffer.h"\
+ "..\..\..\include\IceE\Communicator.h"\
+ "..\..\..\include\IceE\CommunicatorF.h"\
+ "..\..\..\include\IceE\Cond.h"\
+ "..\..\..\include\IceE\Config.h"\
+ "..\..\..\include\IceE\Connection.h"\
+ "..\..\..\include\IceE\ConnectionF.h"\
+ "..\..\..\include\IceE\Current.h"\
+ "..\..\..\include\IceE\DispatchStatus.h"\
+ "..\..\..\include\IceE\EndpointF.h"\
+ "..\..\..\include\IceE\Exception.h"\
+ "..\..\..\include\IceE\ExceptionBase.h"\
+ "..\..\..\include\IceE\Functional.h"\
+ "..\..\..\include\IceE\Handle.h"\
+ "..\..\..\include\IceE\IceE.h"\
+ "..\..\..\include\IceE\IdentityUtil.h"\
+ "..\..\..\include\IceE\Incoming.h"\
+ "..\..\..\include\IceE\IncomingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Initialize.h"\
+ "..\..\..\include\IceE\InstanceF.h"\
+ "..\..\..\include\IceE\LocalObject.h"\
+ "..\..\..\include\IceE\LocalObjectF.h"\
+ "..\..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\..\include\IceE\Lock.h"\
+ "..\..\..\include\IceE\LoggerUtil.h"\
+ "..\..\..\include\IceE\Monitor.h"\
+ "..\..\..\include\IceE\Mutex.h"\
+ "..\..\..\include\IceE\Object.h"\
+ "..\..\..\include\IceE\ObjectAdapter.h"\
+ "..\..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\..\include\IceE\ObjectAdapterFactoryF.h"\
+ "..\..\..\include\IceE\ObjectF.h"\
+ "..\..\..\include\IceE\OperationMode.h"\
+ "..\..\..\include\IceE\Outgoing.h"\
+ "..\..\..\include\IceE\OutgoingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Properties.h"\
+ "..\..\..\include\IceE\PropertiesF.h"\
+ "..\..\..\include\IceE\Proxy.h"\
+ "..\..\..\include\IceE\ProxyF.h"\
+ "..\..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\..\include\IceE\ProxyHandle.h"\
+ "..\..\..\include\IceE\RecMutex.h"\
+ "..\..\..\include\IceE\ReferenceF.h"\
+ "..\..\..\include\IceE\ServantManagerF.h"\
+ "..\..\..\include\IceE\Shared.h"\
+ "..\..\..\include\IceE\Thread.h"\
+ "..\..\..\include\IceE\ThreadException.h"\
+ "..\..\..\include\IceE\Time.h"\
+ "..\..\..\include\IceE\TraceLevelsF.h"\
+ "..\..\..\include\IceE\TransceiverF.h"\
+ "..\..\..\include\IceE\UndefSysMacros.h"\
+
+NODEP_CPP_WINCE=\
+ "..\..\..\..\..\usr\include\pthread.h"\
+ "..\..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\include\IceE\FacetMap.h"\
+ "..\..\..\include\IceE\Identity.h"\
+ "..\..\..\include\IceE\LocalException.h"\
+ "..\..\..\include\IceE\LocatorF.h"\
+ "..\..\..\include\IceE\Logger.h"\
+ "..\..\..\include\IceE\LoggerF.h"\
+ "..\..\..\include\IceE\RouterF.h"\
+ ".\Hello.h"\
+ ".\onfig\_epilog.h"\
+ ".\onfig\_msvc_warnings_off.h"\
+ ".\onfig\_prolog.h"\
+ ".\onfig\stl_apcc.h"\
+ ".\onfig\stl_apple.h"\
+ ".\onfig\stl_as400.h"\
+ ".\onfig\stl_bc.h"\
+ ".\onfig\stl_como.h"\
+ ".\onfig\stl_confix.h"\
+ ".\onfig\stl_cray.h"\
+ ".\onfig\stl_dec.h"\
+ ".\onfig\stl_dec_vms.h"\
+ ".\onfig\stl_dm.h"\
+ ".\onfig\stl_evc.h"\
+ ".\onfig\stl_fujitsu.h"\
+ ".\onfig\stl_gcc.h"\
+ ".\onfig\stl_hpacc.h"\
+ ".\onfig\stl_ibm.h"\
+ ".\onfig\stl_icc.h"\
+ ".\onfig\stl_intel.h"\
+ ".\onfig\stl_kai.h"\
+ ".\onfig\stl_msvc.h"\
+ ".\onfig\stl_mwerks.h"\
+ ".\onfig\stl_mycomp.h"\
+ ".\onfig\stl_sco.h"\
+ ".\onfig\stl_sgi.h"\
+ ".\onfig\stl_solaris.h"\
+ ".\onfig\stl_sunpro.h"\
+ ".\onfig\stl_symantec.h"\
+ ".\onfig\stl_watcom.h"\
+ ".\onfig\stl_wince.h"\
+ ".\onfig\stlcomp.h"\
+ ".\thread.h"\
+ ".\tl\_abbrevs.h"\
+ ".\tl\_config.h"\
+ ".\tl\_config_compat.h"\
+ ".\tl\_config_compat_post.h"\
+ ".\tl\_epilog.h"\
+ ".\tl\_prolog.h"\
+ ".\tl\_site_config.h"\
+ ".\tl\_stlport_version.h"\
+ ".\tl_user_config.h"\
+
+
+!ELSEIF "$(CFG)" == "throughputS - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_WINCE=\
+ "..\..\..\include\IceE\BasicStream.h"\
+ "..\..\..\include\IceE\Buffer.h"\
+ "..\..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\include\IceE\Communicator.h"\
+ "..\..\..\include\IceE\CommunicatorF.h"\
+ "..\..\..\include\IceE\Cond.h"\
+ "..\..\..\include\IceE\Config.h"\
+ "..\..\..\include\IceE\Connection.h"\
+ "..\..\..\include\IceE\ConnectionF.h"\
+ "..\..\..\include\IceE\Current.h"\
+ "..\..\..\include\IceE\DispatchStatus.h"\
+ "..\..\..\include\IceE\EndpointF.h"\
+ "..\..\..\include\IceE\Exception.h"\
+ "..\..\..\include\IceE\ExceptionBase.h"\
+ "..\..\..\include\IceE\FacetMap.h"\
+ "..\..\..\include\IceE\Functional.h"\
+ "..\..\..\include\IceE\Handle.h"\
+ "..\..\..\include\IceE\IceE.h"\
+ "..\..\..\include\IceE\Identity.h"\
+ "..\..\..\include\IceE\IdentityUtil.h"\
+ "..\..\..\include\IceE\IncomingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Initialize.h"\
+ "..\..\..\include\IceE\InstanceF.h"\
+ "..\..\..\include\IceE\LocalObject.h"\
+ "..\..\..\include\IceE\LocalObjectF.h"\
+ "..\..\..\include\IceE\LocatorF.h"\
+ "..\..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\..\include\IceE\Lock.h"\
+ "..\..\..\include\IceE\Logger.h"\
+ "..\..\..\include\IceE\LoggerF.h"\
+ "..\..\..\include\IceE\LoggerUtil.h"\
+ "..\..\..\include\IceE\Monitor.h"\
+ "..\..\..\include\IceE\Mutex.h"\
+ "..\..\..\include\IceE\Object.h"\
+ "..\..\..\include\IceE\ObjectAdapter.h"\
+ "..\..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\..\include\IceE\ObjectAdapterFactoryF.h"\
+ "..\..\..\include\IceE\ObjectF.h"\
+ "..\..\..\include\IceE\OperationMode.h"\
+ "..\..\..\include\IceE\OutgoingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Properties.h"\
+ "..\..\..\include\IceE\PropertiesF.h"\
+ "..\..\..\include\IceE\Proxy.h"\
+ "..\..\..\include\IceE\ProxyF.h"\
+ "..\..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\..\include\IceE\ProxyHandle.h"\
+ "..\..\..\include\IceE\RecMutex.h"\
+ "..\..\..\include\IceE\ReferenceF.h"\
+ "..\..\..\include\IceE\RouterF.h"\
+ "..\..\..\include\IceE\ServantManagerF.h"\
+ "..\..\..\include\IceE\Shared.h"\
+ "..\..\..\include\IceE\Thread.h"\
+ "..\..\..\include\IceE\ThreadException.h"\
+ "..\..\..\include\IceE\Time.h"\
+ "..\..\..\include\IceE\TraceLevelsF.h"\
+ "..\..\..\include\IceE\TransceiverF.h"\
+ "..\..\..\include\IceE\UndefSysMacros.h"\
+
+NODEP_CPP_WINCE=\
+ "..\..\..\..\..\usr\include\pthread.h"\
+ "..\..\..\include\IceE\LocalExceptions.h"\
+ ".\onfig\_epilog.h"\
+ ".\onfig\_msvc_warnings_off.h"\
+ ".\onfig\_prolog.h"\
+ ".\onfig\stl_apcc.h"\
+ ".\onfig\stl_apple.h"\
+ ".\onfig\stl_as400.h"\
+ ".\onfig\stl_bc.h"\
+ ".\onfig\stl_como.h"\
+ ".\onfig\stl_confix.h"\
+ ".\onfig\stl_cray.h"\
+ ".\onfig\stl_dec.h"\
+ ".\onfig\stl_dec_vms.h"\
+ ".\onfig\stl_dm.h"\
+ ".\onfig\stl_evc.h"\
+ ".\onfig\stl_fujitsu.h"\
+ ".\onfig\stl_gcc.h"\
+ ".\onfig\stl_hpacc.h"\
+ ".\onfig\stl_ibm.h"\
+ ".\onfig\stl_icc.h"\
+ ".\onfig\stl_intel.h"\
+ ".\onfig\stl_kai.h"\
+ ".\onfig\stl_msvc.h"\
+ ".\onfig\stl_mwerks.h"\
+ ".\onfig\stl_mycomp.h"\
+ ".\onfig\stl_sco.h"\
+ ".\onfig\stl_sgi.h"\
+ ".\onfig\stl_solaris.h"\
+ ".\onfig\stl_sunpro.h"\
+ ".\onfig\stl_symantec.h"\
+ ".\onfig\stl_watcom.h"\
+ ".\onfig\stl_wince.h"\
+ ".\onfig\stlcomp.h"\
+ ".\thread.h"\
+ ".\tl\_abbrevs.h"\
+ ".\tl\_config.h"\
+ ".\tl\_config_compat.h"\
+ ".\tl\_config_compat_post.h"\
+ ".\tl\_epilog.h"\
+ ".\tl\_prolog.h"\
+ ".\tl\_site_config.h"\
+ ".\tl\_stlport_version.h"\
+ ".\tl_user_config.h"\
+
+
+!ELSEIF "$(CFG)" == "throughputS - Win32 (WCE ARMV4) Debug Static"
+
+DEP_CPP_WINCE=\
+ "..\..\..\include\IceE\BasicStream.h"\
+ "..\..\..\include\IceE\Buffer.h"\
+ "..\..\..\include\IceE\Communicator.h"\
+ "..\..\..\include\IceE\CommunicatorF.h"\
+ "..\..\..\include\IceE\Cond.h"\
+ "..\..\..\include\IceE\Config.h"\
+ "..\..\..\include\IceE\Connection.h"\
+ "..\..\..\include\IceE\ConnectionF.h"\
+ "..\..\..\include\IceE\Current.h"\
+ "..\..\..\include\IceE\DispatchStatus.h"\
+ "..\..\..\include\IceE\EndpointF.h"\
+ "..\..\..\include\IceE\Exception.h"\
+ "..\..\..\include\IceE\ExceptionBase.h"\
+ "..\..\..\include\IceE\Functional.h"\
+ "..\..\..\include\IceE\Handle.h"\
+ "..\..\..\include\IceE\IceE.h"\
+ "..\..\..\include\IceE\IdentityUtil.h"\
+ "..\..\..\include\IceE\Incoming.h"\
+ "..\..\..\include\IceE\IncomingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Initialize.h"\
+ "..\..\..\include\IceE\InstanceF.h"\
+ "..\..\..\include\IceE\LocalObject.h"\
+ "..\..\..\include\IceE\LocalObjectF.h"\
+ "..\..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\..\include\IceE\Lock.h"\
+ "..\..\..\include\IceE\LoggerUtil.h"\
+ "..\..\..\include\IceE\Monitor.h"\
+ "..\..\..\include\IceE\Mutex.h"\
+ "..\..\..\include\IceE\Object.h"\
+ "..\..\..\include\IceE\ObjectAdapter.h"\
+ "..\..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\..\include\IceE\ObjectAdapterFactoryF.h"\
+ "..\..\..\include\IceE\ObjectF.h"\
+ "..\..\..\include\IceE\OperationMode.h"\
+ "..\..\..\include\IceE\Outgoing.h"\
+ "..\..\..\include\IceE\OutgoingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Properties.h"\
+ "..\..\..\include\IceE\PropertiesF.h"\
+ "..\..\..\include\IceE\Proxy.h"\
+ "..\..\..\include\IceE\ProxyF.h"\
+ "..\..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\..\include\IceE\ProxyHandle.h"\
+ "..\..\..\include\IceE\RecMutex.h"\
+ "..\..\..\include\IceE\ReferenceF.h"\
+ "..\..\..\include\IceE\ServantManagerF.h"\
+ "..\..\..\include\IceE\Shared.h"\
+ "..\..\..\include\IceE\Thread.h"\
+ "..\..\..\include\IceE\ThreadException.h"\
+ "..\..\..\include\IceE\Time.h"\
+ "..\..\..\include\IceE\TraceLevelsF.h"\
+ "..\..\..\include\IceE\TransceiverF.h"\
+ "..\..\..\include\IceE\UndefSysMacros.h"\
+
+NODEP_CPP_WINCE=\
+ "..\..\..\..\..\usr\include\pthread.h"\
+ "..\..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\include\IceE\FacetMap.h"\
+ "..\..\..\include\IceE\Identity.h"\
+ "..\..\..\include\IceE\LocalException.h"\
+ "..\..\..\include\IceE\LocatorF.h"\
+ "..\..\..\include\IceE\Logger.h"\
+ "..\..\..\include\IceE\LoggerF.h"\
+ "..\..\..\include\IceE\RouterF.h"\
+ ".\Hello.h"\
+ ".\onfig\_epilog.h"\
+ ".\onfig\_msvc_warnings_off.h"\
+ ".\onfig\_prolog.h"\
+ ".\onfig\stl_apcc.h"\
+ ".\onfig\stl_apple.h"\
+ ".\onfig\stl_as400.h"\
+ ".\onfig\stl_bc.h"\
+ ".\onfig\stl_como.h"\
+ ".\onfig\stl_confix.h"\
+ ".\onfig\stl_cray.h"\
+ ".\onfig\stl_dec.h"\
+ ".\onfig\stl_dec_vms.h"\
+ ".\onfig\stl_dm.h"\
+ ".\onfig\stl_evc.h"\
+ ".\onfig\stl_fujitsu.h"\
+ ".\onfig\stl_gcc.h"\
+ ".\onfig\stl_hpacc.h"\
+ ".\onfig\stl_ibm.h"\
+ ".\onfig\stl_icc.h"\
+ ".\onfig\stl_intel.h"\
+ ".\onfig\stl_kai.h"\
+ ".\onfig\stl_msvc.h"\
+ ".\onfig\stl_mwerks.h"\
+ ".\onfig\stl_mycomp.h"\
+ ".\onfig\stl_sco.h"\
+ ".\onfig\stl_sgi.h"\
+ ".\onfig\stl_solaris.h"\
+ ".\onfig\stl_sunpro.h"\
+ ".\onfig\stl_symantec.h"\
+ ".\onfig\stl_watcom.h"\
+ ".\onfig\stl_wince.h"\
+ ".\onfig\stlcomp.h"\
+ ".\thread.h"\
+ ".\tl\_abbrevs.h"\
+ ".\tl\_config.h"\
+ ".\tl\_config_compat.h"\
+ ".\tl\_config_compat_post.h"\
+ ".\tl\_epilog.h"\
+ ".\tl\_prolog.h"\
+ ".\tl\_site_config.h"\
+ ".\tl\_stlport_version.h"\
+ ".\tl_user_config.h"\
+
+
+!ELSEIF "$(CFG)" == "throughputS - Win32 (WCE ARMV4) Release Static"
+
+DEP_CPP_WINCE=\
+ "..\..\..\include\IceE\BasicStream.h"\
+ "..\..\..\include\IceE\Buffer.h"\
+ "..\..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\include\IceE\Communicator.h"\
+ "..\..\..\include\IceE\CommunicatorF.h"\
+ "..\..\..\include\IceE\Cond.h"\
+ "..\..\..\include\IceE\Config.h"\
+ "..\..\..\include\IceE\Connection.h"\
+ "..\..\..\include\IceE\ConnectionF.h"\
+ "..\..\..\include\IceE\Current.h"\
+ "..\..\..\include\IceE\DispatchStatus.h"\
+ "..\..\..\include\IceE\EndpointF.h"\
+ "..\..\..\include\IceE\Exception.h"\
+ "..\..\..\include\IceE\ExceptionBase.h"\
+ "..\..\..\include\IceE\FacetMap.h"\
+ "..\..\..\include\IceE\Functional.h"\
+ "..\..\..\include\IceE\Handle.h"\
+ "..\..\..\include\IceE\IceE.h"\
+ "..\..\..\include\IceE\Identity.h"\
+ "..\..\..\include\IceE\IdentityUtil.h"\
+ "..\..\..\include\IceE\Incoming.h"\
+ "..\..\..\include\IceE\IncomingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Initialize.h"\
+ "..\..\..\include\IceE\InstanceF.h"\
+ "..\..\..\include\IceE\LocalException.h"\
+ "..\..\..\include\IceE\LocalObject.h"\
+ "..\..\..\include\IceE\LocalObjectF.h"\
+ "..\..\..\include\IceE\LocatorF.h"\
+ "..\..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\..\include\IceE\Lock.h"\
+ "..\..\..\include\IceE\Logger.h"\
+ "..\..\..\include\IceE\LoggerF.h"\
+ "..\..\..\include\IceE\LoggerUtil.h"\
+ "..\..\..\include\IceE\Monitor.h"\
+ "..\..\..\include\IceE\Mutex.h"\
+ "..\..\..\include\IceE\Object.h"\
+ "..\..\..\include\IceE\ObjectAdapter.h"\
+ "..\..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\..\include\IceE\ObjectAdapterFactoryF.h"\
+ "..\..\..\include\IceE\ObjectF.h"\
+ "..\..\..\include\IceE\OperationMode.h"\
+ "..\..\..\include\IceE\Outgoing.h"\
+ "..\..\..\include\IceE\OutgoingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Properties.h"\
+ "..\..\..\include\IceE\PropertiesF.h"\
+ "..\..\..\include\IceE\Proxy.h"\
+ "..\..\..\include\IceE\ProxyF.h"\
+ "..\..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\..\include\IceE\ProxyHandle.h"\
+ "..\..\..\include\IceE\RecMutex.h"\
+ "..\..\..\include\IceE\ReferenceF.h"\
+ "..\..\..\include\IceE\RouterF.h"\
+ "..\..\..\include\IceE\ServantManagerF.h"\
+ "..\..\..\include\IceE\Shared.h"\
+ "..\..\..\include\IceE\Thread.h"\
+ "..\..\..\include\IceE\ThreadException.h"\
+ "..\..\..\include\IceE\Time.h"\
+ "..\..\..\include\IceE\TraceLevelsF.h"\
+ "..\..\..\include\IceE\TransceiverF.h"\
+ "..\..\..\include\IceE\UndefSysMacros.h"\
+ ".\Throughput.h"\
+
+NODEP_CPP_WINCE=\
+ "..\..\..\..\..\usr\include\pthread.h"\
+ ".\onfig\_epilog.h"\
+ ".\onfig\_msvc_warnings_off.h"\
+ ".\onfig\_prolog.h"\
+ ".\onfig\stl_apcc.h"\
+ ".\onfig\stl_apple.h"\
+ ".\onfig\stl_as400.h"\
+ ".\onfig\stl_bc.h"\
+ ".\onfig\stl_como.h"\
+ ".\onfig\stl_confix.h"\
+ ".\onfig\stl_cray.h"\
+ ".\onfig\stl_dec.h"\
+ ".\onfig\stl_dec_vms.h"\
+ ".\onfig\stl_dm.h"\
+ ".\onfig\stl_evc.h"\
+ ".\onfig\stl_fujitsu.h"\
+ ".\onfig\stl_gcc.h"\
+ ".\onfig\stl_hpacc.h"\
+ ".\onfig\stl_ibm.h"\
+ ".\onfig\stl_icc.h"\
+ ".\onfig\stl_intel.h"\
+ ".\onfig\stl_kai.h"\
+ ".\onfig\stl_msvc.h"\
+ ".\onfig\stl_mwerks.h"\
+ ".\onfig\stl_mycomp.h"\
+ ".\onfig\stl_sco.h"\
+ ".\onfig\stl_sgi.h"\
+ ".\onfig\stl_solaris.h"\
+ ".\onfig\stl_sunpro.h"\
+ ".\onfig\stl_symantec.h"\
+ ".\onfig\stl_watcom.h"\
+ ".\onfig\stl_wince.h"\
+ ".\onfig\stlcomp.h"\
+ ".\thread.h"\
+ ".\tl\_abbrevs.h"\
+ ".\tl\_config.h"\
+ ".\tl\_config_compat.h"\
+ ".\tl\_config_compat_post.h"\
+ ".\tl\_epilog.h"\
+ ".\tl\_prolog.h"\
+ ".\tl\_site_config.h"\
+ ".\tl\_stlport_version.h"\
+ ".\tl_user_config.h"\
+
+
+!ELSEIF "$(CFG)" == "throughputS - Win32 (WCE emulator) Debug Static"
+
+DEP_CPP_WINCE=\
+ "..\..\..\include\IceE\BasicStream.h"\
+ "..\..\..\include\IceE\Buffer.h"\
+ "..\..\..\include\IceE\Communicator.h"\
+ "..\..\..\include\IceE\CommunicatorF.h"\
+ "..\..\..\include\IceE\Cond.h"\
+ "..\..\..\include\IceE\Config.h"\
+ "..\..\..\include\IceE\Connection.h"\
+ "..\..\..\include\IceE\ConnectionF.h"\
+ "..\..\..\include\IceE\Current.h"\
+ "..\..\..\include\IceE\DispatchStatus.h"\
+ "..\..\..\include\IceE\EndpointF.h"\
+ "..\..\..\include\IceE\Exception.h"\
+ "..\..\..\include\IceE\ExceptionBase.h"\
+ "..\..\..\include\IceE\Functional.h"\
+ "..\..\..\include\IceE\Handle.h"\
+ "..\..\..\include\IceE\IceE.h"\
+ "..\..\..\include\IceE\IdentityUtil.h"\
+ "..\..\..\include\IceE\Incoming.h"\
+ "..\..\..\include\IceE\IncomingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Initialize.h"\
+ "..\..\..\include\IceE\InstanceF.h"\
+ "..\..\..\include\IceE\LocalObject.h"\
+ "..\..\..\include\IceE\LocalObjectF.h"\
+ "..\..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\..\include\IceE\Lock.h"\
+ "..\..\..\include\IceE\LoggerUtil.h"\
+ "..\..\..\include\IceE\Monitor.h"\
+ "..\..\..\include\IceE\Mutex.h"\
+ "..\..\..\include\IceE\Object.h"\
+ "..\..\..\include\IceE\ObjectAdapter.h"\
+ "..\..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\..\include\IceE\ObjectAdapterFactoryF.h"\
+ "..\..\..\include\IceE\ObjectF.h"\
+ "..\..\..\include\IceE\OperationMode.h"\
+ "..\..\..\include\IceE\Outgoing.h"\
+ "..\..\..\include\IceE\OutgoingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Properties.h"\
+ "..\..\..\include\IceE\PropertiesF.h"\
+ "..\..\..\include\IceE\Proxy.h"\
+ "..\..\..\include\IceE\ProxyF.h"\
+ "..\..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\..\include\IceE\ProxyHandle.h"\
+ "..\..\..\include\IceE\RecMutex.h"\
+ "..\..\..\include\IceE\ReferenceF.h"\
+ "..\..\..\include\IceE\ServantManagerF.h"\
+ "..\..\..\include\IceE\Shared.h"\
+ "..\..\..\include\IceE\Thread.h"\
+ "..\..\..\include\IceE\ThreadException.h"\
+ "..\..\..\include\IceE\Time.h"\
+ "..\..\..\include\IceE\TraceLevelsF.h"\
+ "..\..\..\include\IceE\TransceiverF.h"\
+ "..\..\..\include\IceE\UndefSysMacros.h"\
+
+NODEP_CPP_WINCE=\
+ "..\..\..\..\..\usr\include\pthread.h"\
+ "..\..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\include\IceE\FacetMap.h"\
+ "..\..\..\include\IceE\Identity.h"\
+ "..\..\..\include\IceE\LocalException.h"\
+ "..\..\..\include\IceE\LocatorF.h"\
+ "..\..\..\include\IceE\Logger.h"\
+ "..\..\..\include\IceE\LoggerF.h"\
+ "..\..\..\include\IceE\RouterF.h"\
+ ".\Hello.h"\
+ ".\onfig\_epilog.h"\
+ ".\onfig\_msvc_warnings_off.h"\
+ ".\onfig\_prolog.h"\
+ ".\onfig\stl_apcc.h"\
+ ".\onfig\stl_apple.h"\
+ ".\onfig\stl_as400.h"\
+ ".\onfig\stl_bc.h"\
+ ".\onfig\stl_como.h"\
+ ".\onfig\stl_confix.h"\
+ ".\onfig\stl_cray.h"\
+ ".\onfig\stl_dec.h"\
+ ".\onfig\stl_dec_vms.h"\
+ ".\onfig\stl_dm.h"\
+ ".\onfig\stl_evc.h"\
+ ".\onfig\stl_fujitsu.h"\
+ ".\onfig\stl_gcc.h"\
+ ".\onfig\stl_hpacc.h"\
+ ".\onfig\stl_ibm.h"\
+ ".\onfig\stl_icc.h"\
+ ".\onfig\stl_intel.h"\
+ ".\onfig\stl_kai.h"\
+ ".\onfig\stl_msvc.h"\
+ ".\onfig\stl_mwerks.h"\
+ ".\onfig\stl_mycomp.h"\
+ ".\onfig\stl_sco.h"\
+ ".\onfig\stl_sgi.h"\
+ ".\onfig\stl_solaris.h"\
+ ".\onfig\stl_sunpro.h"\
+ ".\onfig\stl_symantec.h"\
+ ".\onfig\stl_watcom.h"\
+ ".\onfig\stl_wince.h"\
+ ".\onfig\stlcomp.h"\
+ ".\thread.h"\
+ ".\tl\_abbrevs.h"\
+ ".\tl\_config.h"\
+ ".\tl\_config_compat.h"\
+ ".\tl\_config_compat_post.h"\
+ ".\tl\_epilog.h"\
+ ".\tl\_prolog.h"\
+ ".\tl\_site_config.h"\
+ ".\tl\_stlport_version.h"\
+ ".\tl_user_config.h"\
+
+
+!ELSEIF "$(CFG)" == "throughputS - Win32 (WCE emulator) Release Static"
+
+DEP_CPP_WINCE=\
+ "..\..\..\include\IceE\BasicStream.h"\
+ "..\..\..\include\IceE\Buffer.h"\
+ "..\..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\include\IceE\Communicator.h"\
+ "..\..\..\include\IceE\CommunicatorF.h"\
+ "..\..\..\include\IceE\Cond.h"\
+ "..\..\..\include\IceE\Config.h"\
+ "..\..\..\include\IceE\Connection.h"\
+ "..\..\..\include\IceE\ConnectionF.h"\
+ "..\..\..\include\IceE\Current.h"\
+ "..\..\..\include\IceE\DispatchStatus.h"\
+ "..\..\..\include\IceE\EndpointF.h"\
+ "..\..\..\include\IceE\Exception.h"\
+ "..\..\..\include\IceE\ExceptionBase.h"\
+ "..\..\..\include\IceE\FacetMap.h"\
+ "..\..\..\include\IceE\Functional.h"\
+ "..\..\..\include\IceE\Handle.h"\
+ "..\..\..\include\IceE\IceE.h"\
+ "..\..\..\include\IceE\Identity.h"\
+ "..\..\..\include\IceE\IdentityUtil.h"\
+ "..\..\..\include\IceE\Incoming.h"\
+ "..\..\..\include\IceE\IncomingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Initialize.h"\
+ "..\..\..\include\IceE\InstanceF.h"\
+ "..\..\..\include\IceE\LocalException.h"\
+ "..\..\..\include\IceE\LocalObject.h"\
+ "..\..\..\include\IceE\LocalObjectF.h"\
+ "..\..\..\include\IceE\LocatorF.h"\
+ "..\..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\..\include\IceE\Lock.h"\
+ "..\..\..\include\IceE\Logger.h"\
+ "..\..\..\include\IceE\LoggerF.h"\
+ "..\..\..\include\IceE\LoggerUtil.h"\
+ "..\..\..\include\IceE\Monitor.h"\
+ "..\..\..\include\IceE\Mutex.h"\
+ "..\..\..\include\IceE\Object.h"\
+ "..\..\..\include\IceE\ObjectAdapter.h"\
+ "..\..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\..\include\IceE\ObjectAdapterFactoryF.h"\
+ "..\..\..\include\IceE\ObjectF.h"\
+ "..\..\..\include\IceE\OperationMode.h"\
+ "..\..\..\include\IceE\Outgoing.h"\
+ "..\..\..\include\IceE\OutgoingConnectionFactoryF.h"\
+ "..\..\..\include\IceE\Properties.h"\
+ "..\..\..\include\IceE\PropertiesF.h"\
+ "..\..\..\include\IceE\Proxy.h"\
+ "..\..\..\include\IceE\ProxyF.h"\
+ "..\..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\..\include\IceE\ProxyHandle.h"\
+ "..\..\..\include\IceE\RecMutex.h"\
+ "..\..\..\include\IceE\ReferenceF.h"\
+ "..\..\..\include\IceE\RouterF.h"\
+ "..\..\..\include\IceE\ServantManagerF.h"\
+ "..\..\..\include\IceE\Shared.h"\
+ "..\..\..\include\IceE\Thread.h"\
+ "..\..\..\include\IceE\ThreadException.h"\
+ "..\..\..\include\IceE\Time.h"\
+ "..\..\..\include\IceE\TraceLevelsF.h"\
+ "..\..\..\include\IceE\TransceiverF.h"\
+ "..\..\..\include\IceE\UndefSysMacros.h"\
+ ".\Throughput.h"\
+ ".\ThroughputI.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_WINCE=\
+ "..\..\..\..\..\usr\include\pthread.h"\
+
+
+!ENDIF
+
+# End Source File
+# End Group
+# Begin Group "Header Files"
+
+# PROP Default_Filter "h;hpp;hxx;hm;inl"
+# Begin Source File
+
+SOURCE=.\Throughput.h
+# End Source File
+# Begin Source File
+
+SOURCE=.\ThroughputI.h
+# End Source File
+# End Group
+# Begin Group "Resource Files"
+
+# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
+# Begin Source File
+
+SOURCE=.\Throughput.ice
+
+!IF "$(CFG)" == "throughputS - Win32 (WCE emulator) Release"
+
+# Begin Custom Build
+InputPath=.\Throughput.ice
+
+BuildCmds= \
+ slice2cppe.exe Throughput.ice
+
+"Throughput.cpp" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"Throughput.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+# End Custom Build
+
+!ELSEIF "$(CFG)" == "throughputS - Win32 (WCE emulator) Debug"
+
+# Begin Custom Build
+InputPath=.\Throughput.ice
+
+BuildCmds= \
+ slice2cppe.exe Throughput.ice
+
+"Throughput.cpp" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"Throughput.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+# End Custom Build
+
+!ELSEIF "$(CFG)" == "throughputS - Win32 (WCE ARMV4) Release"
+
+# Begin Custom Build
+InputPath=.\Throughput.ice
+
+BuildCmds= \
+ slice2cppe.exe Throughput.ice
+
+"Throughput.cpp" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"Throughput.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+# End Custom Build
+
+!ELSEIF "$(CFG)" == "throughputS - Win32 (WCE ARMV4) Debug"
+
+# Begin Custom Build
+InputPath=.\Throughput.ice
+
+BuildCmds= \
+ slice2cppe.exe Throughput.ice
+
+"Throughput.cpp" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"Throughput.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+# End Custom Build
+
+!ELSEIF "$(CFG)" == "throughputS - Win32 (WCE ARMV4) Debug Static"
+
+# Begin Custom Build
+InputPath=.\Throughput.ice
+
+BuildCmds= \
+ slice2cppe.exe Throughput.ice
+
+"Throughput.cpp" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"Throughput.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+# End Custom Build
+
+!ELSEIF "$(CFG)" == "throughputS - Win32 (WCE ARMV4) Release Static"
+
+# Begin Custom Build
+InputPath=.\Throughput.ice
+
+BuildCmds= \
+ slice2cppe.exe Throughput.ice
+
+"Throughput.cpp" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"Throughput.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+# End Custom Build
+
+!ELSEIF "$(CFG)" == "throughputS - Win32 (WCE emulator) Debug Static"
+
+# Begin Custom Build
+InputPath=.\Throughput.ice
+
+BuildCmds= \
+ slice2cppe.exe Throughput.ice
+
+"Throughput.cpp" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"Throughput.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+# End Custom Build
+
+!ELSEIF "$(CFG)" == "throughputS - Win32 (WCE emulator) Release Static"
+
+# Begin Custom Build
+InputPath=.\Throughput.ice
+
+BuildCmds= \
+ slice2cppe.exe Throughput.ice
+
+"Throughput.cpp" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+
+"Throughput.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+ $(BuildCmds)
+# End Custom Build
+
+!ENDIF
+
+# End Source File
+# End Group
+# End Target
+# End Project