aboutsummaryrefslogtreecommitdiff
path: root/dep/acelite/ace/OS_main.cpp
diff options
context:
space:
mode:
authorleak <leak@bitmx.net>2014-07-06 01:42:12 +0200
committerleak <leak@bitmx.net>2014-07-06 01:42:35 +0200
commitda3f6e923a0cb72976d7b56ace49023ecf58ceaa (patch)
tree55c767b5f3afddc339f088f2d45a470968a8bb5d /dep/acelite/ace/OS_main.cpp
parent7befb26625dd1eeb237e223296d9ed8817297025 (diff)
Completely remove ACE as dependency for TC - kkthxbye
Diffstat (limited to 'dep/acelite/ace/OS_main.cpp')
-rw-r--r--dep/acelite/ace/OS_main.cpp157
1 files changed, 0 insertions, 157 deletions
diff --git a/dep/acelite/ace/OS_main.cpp b/dep/acelite/ace/OS_main.cpp
deleted file mode 100644
index 982effa1ff3..00000000000
--- a/dep/acelite/ace/OS_main.cpp
+++ /dev/null
@@ -1,157 +0,0 @@
-// $Id: OS_main.cpp 91286 2010-08-05 09:04:31Z johnnyw $
-
-#include "ace/OS_main.h"
-
-
-
-#if !defined (ACE_DOESNT_DEFINE_MAIN)
-
-#if defined (ACE_HAS_NONSTATIC_OBJECT_MANAGER) && !defined (ACE_DOESNT_INSTANTIATE_NONSTATIC_OBJECT_MANAGER)
-
-#include "ace/Init_ACE.h"
-
-# if !defined (ACE_HAS_MINIMAL_ACE_OS)
-# include "ace/Object_Manager.h"
-# endif /* ! ACE_HAS_MINIMAL_ACE_OS */
-
-// Rename "main ()" on platforms that don't allow it to be called "main ()".
-
-// Also, create ACE_Object_Manager static instance(s) in "main ()".
-// ACE_MAIN_OBJECT_MANAGER defines the ACE_Object_Manager(s) that will
-// be instantiated on the stack of main (). Note that it is only used
-// when compiling main (): its value does not affect the contents of
-// ace/OS.o.
-# if !defined (ACE_MAIN_OBJECT_MANAGER)
-# define ACE_MAIN_OBJECT_MANAGER \
- ACE_OS_Object_Manager ace_os_object_manager; \
- ACE_Object_Manager ace_object_manager;
-# endif /* ! ACE_MAIN_OBJECT_MANAGER */
-
-# if !defined (ACE_WIN32)
-
-# if !(defined (ACE_VXWORKS) && !defined (__RTP__))
-/* forward declaration */
-extern int ace_main_i (int, char *[]);
-# endif
-
-ACE_BEGIN_VERSIONED_NAMESPACE_DECL
-
-# if defined (ACE_VXWORKS) && !defined (__RTP__)
-ace_main_proc_ptr vx_ace_main_i_ptr = 0;
-
-int ace_os_main_i (int argc, char *argv[]) /* user's entry point, e.g., main */
-{
- ACE_MAIN_OBJECT_MANAGER
- return vx_ace_main_i_ptr ? (*vx_ace_main_i_ptr) (argc, argv) : (-1); /* what the user calls "main" */
-}
-# else /* !ACE_VXWORKS && !__RTP__ */
-ACE_Export int
-ace_os_main_i (int argc, char *argv[]) /* user's entry point, e.g., main */
-{
- ACE_MAIN_OBJECT_MANAGER
- return ace_main_i (argc, argv); /* what the user calls "main" */
-}
-# endif
-
-ACE_END_VERSIONED_NAMESPACE_DECL
-
-# elif !defined (ACE_HAS_WINCE)
-
-ACE_BEGIN_VERSIONED_NAMESPACE_DECL
-
-# if defined (ACE_WIN32) && defined (ACE_USES_WCHAR)
-int ACE_Main_Base::run (int argc, ACE_TCHAR *argv[])
-{
- return this->run_i (argc, argv);
-}
-
-ACE_Export int
-ace_os_wmain_i (ACE_Main_Base &mbase, int argc, ACE_TCHAR *argv[]) /* user's entry point, e.g., main */
-{
- ACE_MAIN_OBJECT_MANAGER
- return mbase.run (argc, argv); /* what the user calls "main" */
-}
-# else /* ! (ACE_WIN32 && ACE_USES_WCHAR) */
-
-ACE_Main_Base::ACE_Main_Base ()
-{
- ACE::init ();
-}
-
-ACE_Main_Base::~ACE_Main_Base ()
-{
- ACE::fini ();
-}
-
-int ACE_Main_Base::run (int argc, char *argv[])
-{
- return this->run_i (argc, argv);
-}
-
-ACE_Export int
-ace_os_main_i (ACE_Main_Base &mbase, int argc, char *argv[]) /* user's entry point, e.g., main */
-{
- ACE_MAIN_OBJECT_MANAGER
- return mbase.run (argc, argv); /* what the user calls "main" */
-}
-# endif /* ACE_WIN32 && ACE_USES_WCHAR */
-
-ACE_END_VERSIONED_NAMESPACE_DECL
-
-# else /* ACE_HAS_WINCE */
-
-// CE only gets a command line string; no argv. So we need to convert it
-// when the main entrypoint expects argc/argv. ACE_ARGV supports this.
-# include "ace/OS_NS_string.h"
-# include "ace/OS_NS_ctype.h"
-# include "ace/ACE.h"
-# include "ace/ARGV.h"
-
-ACE_BEGIN_VERSIONED_NAMESPACE_DECL
-
-ACE_Main_Base::~ACE_Main_Base ()
-{
-}
-
-int ACE_Main_Base::run (HINSTANCE,
- HINSTANCE,
- LPWSTR lpCmdLine,
- int)
-{
- ACE_TCHAR cmdline[1024];
- ACE_TCHAR msg_file [MAXPATHLEN];
- if (ACE_TEXT_GetModuleFileName (0, msg_file, MAXPATHLEN))
- {
- bool quote = false;
- for (size_t i(0); !quote && msg_file[i]; ++i)
- {
- if (ACE_OS::ace_isspace (msg_file[i])) quote = true;
- }
- ACE_TCHAR *cmd_iter = cmdline;
- if (quote)
- {
- *cmd_iter++ = ACE_TEXT ('"');
- }
- ACE_OS::strcpy (cmd_iter, msg_file);
- ACE_OS::strcat (cmd_iter, quote ? ACE_TEXT ("\" ") : ACE_TEXT (" "));
- }
- else
- {
- ACE_OS::strcpy (cmdline, ACE_TEXT ("program "));
- }
- ACE_OS::strcat (cmdline, ACE_TEXT_WCHAR_TO_TCHAR (lpCmdLine));
- ACE_ARGV ce_argv (cmdline);
- ACE::init ();
- ACE_MAIN_OBJECT_MANAGER
- int const i = this->run_i (ce_argv.argc (), ce_argv.argv ());
- ACE::fini ();
- return i;
-}
-ACE_END_VERSIONED_NAMESPACE_DECL
-
-# endif /* !ACE_HAS_WINCE */
-
-#endif /* ACE_HAS_NONSTATIC_OBJECT_MANAGER && !ACE_HAS_WINCE && !ACE_DOESNT_INSTANTIATE_NONSTATIC_OBJECT_MANAGER */
-
-#endif /* ACE_DOESNT_DEFINE_MAIN */
-