Eliminate unix builld warnings from libi18n.h

git-svn-id: svn://10.0.0.236/trunk@37383 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
tague%netscape.com
1999-06-29 07:57:30 +00:00
parent 4ce5e79297
commit 3a175a8bec

View File

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