summaryrefslogtreecommitdiff
path: root/ACE/tests/SSL/Main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/tests/SSL/Main.cpp')
-rw-r--r--ACE/tests/SSL/Main.cpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/ACE/tests/SSL/Main.cpp b/ACE/tests/SSL/Main.cpp
new file mode 100644
index 00000000000..44b92128394
--- /dev/null
+++ b/ACE/tests/SSL/Main.cpp
@@ -0,0 +1,30 @@
+// $Id$
+
+// ============================================================================
+//
+// = LIBRARY
+// tests
+//
+// = FILENAME
+// Main.cpp
+//
+// = DESCRIPTION
+// This is a wrapper for the test programs. It obviates the test cpp's
+// from having to always include OS.h.
+//
+// = AUTHOR
+// Don Hinton <dhinton@dresystems.com>
+//
+// ============================================================================
+
+#include "ace/OS_main.h"
+#if defined (ACE_HAS_WINCE)
+# include "ace/ACE.h"
+#endif /* ACE_HAS_WINCE */
+int run_main (int argc, ACE_TCHAR *argv[]);
+
+int
+ACE_TMAIN (int argc, ACE_TCHAR *argv[])
+{
+ return run_main (argc, argv);
+}