Author: faridz
Date: Wed Sep 19 06:46:52 2007
New Revision: 577304

URL: http://svn.apache.org/viewvc?rev=577304&view=rev
Log:
2007-09-19 Farid Zaripov <[EMAIL PROTECTED]>

        * _messages.h: Reverted changes from r577000 because
        they are obsolete since r577098.
        messages.cpp: Ditto.

Modified:
    incubator/stdcxx/trunk/include/loc/_messages.h
    incubator/stdcxx/trunk/src/messages.cpp

Modified: incubator/stdcxx/trunk/include/loc/_messages.h
URL: 
http://svn.apache.org/viewvc/incubator/stdcxx/trunk/include/loc/_messages.h?rev=577304&r1=577303&r2=577304&view=diff
==============================================================================
--- incubator/stdcxx/trunk/include/loc/_messages.h (original)
+++ incubator/stdcxx/trunk/include/loc/_messages.h Wed Sep 19 06:46:52 2007
@@ -49,17 +49,13 @@
 
 _RWSTD_NAMESPACE (__rw) {
 
-_RWSTD_EXPORT int
-__rw_cat_open (const _STD::string&, const _V3_LOCALE::locale&);
+int __rw_cat_open (const _STD::string&, const _V3_LOCALE::locale&);
 
-_RWSTD_EXPORT const char*
-__rw_get_message (int, int, int);
+const char* __rw_get_message (int, int, int);
 
-_RWSTD_EXPORT const _V3_LOCALE::locale&
-__rw_get_locale (int);
+const _V3_LOCALE::locale& __rw_get_locale (int);
 
-_RWSTD_EXPORT void
-__rw_cat_close (int);
+void __rw_cat_close (int);
 
 }   // namespace __rw
 

Modified: incubator/stdcxx/trunk/src/messages.cpp
URL: 
http://svn.apache.org/viewvc/incubator/stdcxx/trunk/src/messages.cpp?rev=577304&r1=577303&r2=577304&view=diff
==============================================================================
--- incubator/stdcxx/trunk/src/messages.cpp (original)
+++ incubator/stdcxx/trunk/src/messages.cpp Wed Sep 19 06:46:52 2007
@@ -210,8 +210,7 @@
 
 // Open a message catalog and assign and return a handle for it.
 
-_RWSTD_EXPORT int
-__rw_cat_open (const _STD::string &cat_name, const _STD::locale &loc)
+int __rw_cat_open (const _STD::string &cat_name, const _STD::locale &loc)
 {
     _RWSTD_MT_CLASS_GUARD (__rw_open_cat_data);
 
@@ -233,8 +232,7 @@
 
 
 // Get message text from catalog.
-_RWSTD_EXPORT const char*
-__rw_get_message (int cat, int set_num, int msg_num)
+const char* __rw_get_message (int cat, int set_num, int msg_num)
 {
     if (cat < 0)
         return 0;
@@ -261,8 +259,7 @@
 
 
 // Get locale to be used for character translation for this message catalog.
-_RWSTD_EXPORT const _STD::locale&
-__rw_get_locale (int cat)
+const _STD::locale& __rw_get_locale (int cat)
 {
     _RWSTD_MT_CLASS_GUARD (__rw_open_cat_data);
 
@@ -276,8 +273,7 @@
 
 
 // Close a catalog and release its handle.
-_RWSTD_EXPORT void
-__rw_cat_close (int cat)
+void __rw_cat_close (int cat)
 {
     _RWSTD_MT_CLASS_GUARD (__rw_open_cat_data);
     


Reply via email to