Changes to attempt to silence bcc64x
[ACE_TAO.git] / TAO / TAO_IDL / be / be_init.cpp
blobcb6171337103d9e88873607d1275fc9e6e7eed21
1 #include "global_extern.h"
2 #include "be_extern.h"
3 #include "../../tao/Version.h"
5 TAO_IDL_BE_Export void
6 BE_version ()
8 ACE_DEBUG ((LM_DEBUG,
9 ACE_TEXT ("TAO_IDL_BE, version ") ACE_TEXT (TAO_VERSION)
10 ACE_TEXT ("\n")));
13 TAO_IDL_BE_Export int
14 BE_init (int &, ACE_TCHAR *[])
16 // Initialize BE global data object.
17 ACE_NEW_RETURN (be_global,
18 BE_GlobalData,
19 -1);
21 idl_global->default_idl_version_ = IDL_VERSION_3;
23 return 0;
26 TAO_IDL_BE_Export void
27 BE_post_init (char *[], long)