Eliminate unix builld warnings from libi18n.h

This commit is contained in:
tague%netscape.com 1999-06-29 07:57:30 +00:00
parent 863d28745c
commit 1c3d48626e

View File

@ -2746,7 +2746,7 @@ typedef enum INTL_TimeFormatSelector {
* *
* @param localeID Specification for the Locale conventions to use. * @param localeID Specification for the Locale conventions to use.
* @param formatSelector Specification for the type of format to select * @param formatSelector Specification for the type of format to select
* @param time time * @param timeToFormat time
* @param utf8Buffer result buffer (in utf8) * @param utf8Buffer result buffer (in utf8)
* @param bufferLength length of result buffer * @param bufferLength length of result buffer
* @return PRSuccess when succesful, PRFailure otherwise * @return PRSuccess when succesful, PRFailure otherwise
@ -2754,7 +2754,7 @@ typedef enum INTL_TimeFormatSelector {
PUBLIC PRStatus INTL_FormatTime(INTLLocaleID localeID, PUBLIC PRStatus INTL_FormatTime(INTLLocaleID localeID,
INTL_DateFormatSelector dateFormatSelector, INTL_DateFormatSelector dateFormatSelector,
INTL_TimeFormatSelector timeFormatSelector, INTL_TimeFormatSelector timeFormatSelector,
time_t time, time_t timeToFormat,
unsigned char* utf8Buffer, unsigned char* utf8Buffer,
PRUint32 bufferLength); PRUint32 bufferLength);
/** /**
@ -2765,7 +2765,7 @@ PUBLIC PRStatus INTL_FormatTime(INTLLocaleID localeID,
* *
* @param localeID Specification for the Locale conventions to use. * @param localeID Specification for the Locale conventions to use.
* @param formatSelector Specification for the type of format to select * @param formatSelector Specification for the type of format to select
* @param time time * @param timeToFormat time
* @param utf8Buffer result buffer (in utf8) * @param utf8Buffer result buffer (in utf8)
* @param bufferLength length of result buffer * @param bufferLength length of result buffer
* @return PRSuccess when succesful, PRFailure otherwise * @return PRSuccess when succesful, PRFailure otherwise
@ -2773,7 +2773,7 @@ PUBLIC PRStatus INTL_FormatTime(INTLLocaleID localeID,
PUBLIC PRStatus INTL_FormatTMTime(INTLLocaleID localeID, PUBLIC PRStatus INTL_FormatTMTime(INTLLocaleID localeID,
INTL_DateFormatSelector dateFormatSelector, INTL_DateFormatSelector dateFormatSelector,
INTL_TimeFormatSelector timeFormatSelector, INTL_TimeFormatSelector timeFormatSelector,
const struct tm* time, const struct tm* timeToFormat,
unsigned char* utf8Buffer, unsigned char* utf8Buffer,
PRUint32 bufferLength); PRUint32 bufferLength);