ICU-1230 Deprecate wchar_t APIs. No code change.

X-SVN-Rev: 5897
This commit is contained in:
Ram Viswanadha 2001-09-22 02:22:47 +00:00
parent 4502c7670c
commit ece4a93414
2 changed files with 9 additions and 1 deletions

View file

@ -189,6 +189,11 @@ public:
ResourceBundle( const UnicodeString& path,
UErrorCode& err);
ResourceBundle(UErrorCode &err);
/**
* Constructs a ResourceBundle
*
* @deprecated Remove after Aug 2002
*/
ResourceBundle( const wchar_t* path,
const Locale& locale,
UErrorCode& err);
@ -419,6 +424,9 @@ public:
private:
UResourceBundle *resource;
void constructForLocale(const UnicodeString& path, const Locale& locale, UErrorCode& error);
/**
*@deprecated Remove after Aug 2002
*/
void constructForLocale(const wchar_t* path, const Locale& locale, UErrorCode& error);
Locale fRealLocale;
};

View file

@ -235,7 +235,7 @@ U_CAPI UResourceBundle* U_EXPORT2 ures_open(const char* path, /* NULL if n
*@param status: fills in the outgoing error code.
*@see ures_close
*@return : a newly allocated resource bundle.
*@draft
*@deprecate remove after Aug 2002
*/
U_CAPI UResourceBundle* U_EXPORT2 ures_openW(const wchar_t* path,
const char* locale,