mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-13 11:38:16 +00:00
Eliminate unix builld warnings from libi18n.h
This commit is contained in:
parent
863d28745c
commit
1c3d48626e
@ -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);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user