diff options
author | gokhale <asgokhale@users.noreply.github.com> | 1997-07-01 22:03:47 +0000 |
---|---|---|
committer | gokhale <asgokhale@users.noreply.github.com> | 1997-07-01 22:03:47 +0000 |
commit | 0a1f8d0c57ba84b9f128ac96c7ec7fbdfbfea92e (patch) | |
tree | 6f9aa475ae3f004eeeb9c749f216eda54a9fe11f /TAO/IIOP | |
parent | 29c279e3f7a1b6065c4c45480db8f040036776bf (diff) | |
download | ATCD-0a1f8d0c57ba84b9f128ac96c7ec7fbdfbfea92e.tar.gz |
ACE_Svc_Export removed from tc_const.cpp, updated PC_Install.bat
Diffstat (limited to 'TAO/IIOP')
-rw-r--r-- | TAO/IIOP/lib/PC_Install.bat | 3 | ||||
-rw-r--r-- | TAO/IIOP/lib/tc_const.cpp | 38 | ||||
-rw-r--r-- | TAO/IIOP/lib/typecode.cpp | 2 |
3 files changed, 23 insertions, 20 deletions
diff --git a/TAO/IIOP/lib/PC_Install.bat b/TAO/IIOP/lib/PC_Install.bat index 36c2328c246..372573cbc46 100644 --- a/TAO/IIOP/lib/PC_Install.bat +++ b/TAO/IIOP/lib/PC_Install.bat @@ -22,6 +22,9 @@ copy params.i ..\proto\include copy connect.h ..\proto\include copy connect.i ..\proto\include copy xdr.h ..\proto\include +copy marshal.h ..\proto\include +copy typecode.i ..\proto\include +copy marshal.i ..\proto\include mkdir ..\proto\include\corba copy any.h ..\proto\include\corba diff --git a/TAO/IIOP/lib/tc_const.cpp b/TAO/IIOP/lib/tc_const.cpp index a99cfb7e179..d398044a5ce 100644 --- a/TAO/IIOP/lib/tc_const.cpp +++ b/TAO/IIOP/lib/tc_const.cpp @@ -37,51 +37,51 @@ const CORBA_TypeCode_ptr _tc_CORBA_Void = &tc_void; // Basic numeric types: short, long, longlong, and unsigned variants static CORBA_TypeCode tc_short (tk_short); -const CORBA_TypeCode_ptr ACE_Svc_Export _tc_CORBA_Short = &tc_short; +const CORBA_TypeCode_ptr _tc_CORBA_Short = &tc_short; static CORBA_TypeCode tc_long (tk_long); -const CORBA_TypeCode_ptr ACE_Svc_Export _tc_CORBA_Long = &tc_long; +const CORBA_TypeCode_ptr _tc_CORBA_Long = &tc_long; static CORBA_TypeCode tc_longlong (tk_longlong); -const CORBA_TypeCode_ptr ACE_Svc_Export _tc_CORBA_LongLong = &tc_longlong; +const CORBA_TypeCode_ptr _tc_CORBA_LongLong = &tc_longlong; static CORBA_TypeCode tc_ushort (tk_ushort); -const CORBA_TypeCode_ptr ACE_Svc_Export _tc_CORBA_UShort = &tc_ushort; +const CORBA_TypeCode_ptr _tc_CORBA_UShort = &tc_ushort; static CORBA_TypeCode tc_ulong (tk_ulong); -const CORBA_TypeCode_ptr ACE_Svc_Export _tc_CORBA_ULong = &tc_ulong; +const CORBA_TypeCode_ptr _tc_CORBA_ULong = &tc_ulong; static CORBA_TypeCode tc_ulonglong (tk_ulonglong); -const CORBA_TypeCode_ptr ACE_Svc_Export _tc_CORBA_ULongLong = &tc_ulonglong; +const CORBA_TypeCode_ptr _tc_CORBA_ULongLong = &tc_ulonglong; // Floating point types: single, double, quad precision static CORBA_TypeCode tc_float (tk_float); -const CORBA_TypeCode_ptr ACE_Svc_Export _tc_CORBA_Float = &tc_float; +const CORBA_TypeCode_ptr _tc_CORBA_Float = &tc_float; static CORBA_TypeCode tc_double (tk_double); -const CORBA_TypeCode_ptr ACE_Svc_Export _tc_CORBA_Double = &tc_double; +const CORBA_TypeCode_ptr _tc_CORBA_Double = &tc_double; static CORBA_TypeCode tc_longdouble (tk_longdouble); -const CORBA_TypeCode_ptr ACE_Svc_Export _tc_CORBA_LongDouble = &tc_longdouble; +const CORBA_TypeCode_ptr _tc_CORBA_LongDouble = &tc_longdouble; // Various simple quantities static CORBA_TypeCode tc_boolean (tk_boolean); -const CORBA_TypeCode_ptr ACE_Svc_Export _tc_CORBA_Boolean = &tc_boolean; +const CORBA_TypeCode_ptr _tc_CORBA_Boolean = &tc_boolean; static CORBA_TypeCode tc_octet (tk_octet); -const CORBA_TypeCode_ptr ACE_Svc_Export _tc_CORBA_Octet = &tc_octet; +const CORBA_TypeCode_ptr _tc_CORBA_Octet = &tc_octet; // Internationalization-related data types: ISO Latin/1 and "wide" // characters, and strings of each. "wchar" is probably Unicode 1.1, // "wstring" being null-terminated sets thereof. static CORBA_TypeCode tc_char (tk_char); -const CORBA_TypeCode_ptr ACE_Svc_Export _tc_CORBA_Char = &tc_char; +const CORBA_TypeCode_ptr _tc_CORBA_Char = &tc_char; static CORBA_TypeCode tc_wchar (tk_wchar); -const CORBA_TypeCode_ptr ACE_Svc_Export _tc_CORBA_WChar = &tc_wchar; +const CORBA_TypeCode_ptr _tc_CORBA_WChar = &tc_wchar; // a string/wstring have a simple parameter list that indicates the length static const CORBA_Long _oc_string [] = @@ -93,7 +93,7 @@ static CORBA_TypeCode tc_string (tk_string, sizeof _oc_string, (u_char *) &_oc_string, CORBA_B_FALSE); -const CORBA_TypeCode_ptr ACE_Svc_Export _tc_CORBA_String = &tc_string; +const CORBA_TypeCode_ptr _tc_CORBA_String = &tc_string; static const CORBA_Long _oc_wstring [] = { // CDR typecode octets @@ -104,20 +104,20 @@ static CORBA_TypeCode tc_wstring (tk_wstring, sizeof _oc_wstring, (u_char *) &_oc_wstring, CORBA_B_FALSE); -const CORBA_TypeCode_ptr ACE_Svc_Export _tc_CORBA_WString = &tc_wstring; +const CORBA_TypeCode_ptr _tc_CORBA_WString = &tc_wstring; // // Various things that can be passed as "general" parameters: // Any, TypeCode_ptr, Principal_ptr, Object_ptr // static CORBA_TypeCode tc_any (tk_any); -const CORBA_TypeCode_ptr ACE_Svc_Export _tc_CORBA_Any = &tc_any; +const CORBA_TypeCode_ptr _tc_CORBA_Any = &tc_any; static CORBA_TypeCode tc_typecode (tk_TypeCode); -const CORBA_TypeCode_ptr ACE_Svc_Export _tc_CORBA_TypeCode = &tc_typecode; +const CORBA_TypeCode_ptr _tc_CORBA_TypeCode = &tc_typecode; static CORBA_TypeCode tc_principal (tk_Principal); -const CORBA_TypeCode_ptr ACE_Svc_Export _tc_CORBA_Principal = &tc_principal; +const CORBA_TypeCode_ptr _tc_CORBA_Principal = &tc_principal; // typecode for objref is complex, has two string parameters // @@ -145,5 +145,5 @@ static CORBA_TypeCode tc_objref (tk_objref, (u_char *) &oc_objref, CORBA_B_FALSE); -const CORBA_TypeCode_ptr ACE_Svc_Export _tc_CORBA_Object = &tc_objref; +const CORBA_TypeCode_ptr _tc_CORBA_Object = &tc_objref; diff --git a/TAO/IIOP/lib/typecode.cpp b/TAO/IIOP/lib/typecode.cpp index 5b7c9b16e77..7ca3b26575e 100644 --- a/TAO/IIOP/lib/typecode.cpp +++ b/TAO/IIOP/lib/typecode.cpp @@ -222,7 +222,7 @@ CORBA_TypeCode::Release (void) void CORBA_TypeCode::child_free() { - CORBA_Long i; + CORBA_ULong i; switch (_kind) { |