mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
parent
b3661701e1
commit
7ebdd7d05a
6 changed files with 22 additions and 22 deletions
|
@ -33,7 +33,7 @@ extern "C" unsigned fb_get_client_version(void)
|
|||
{
|
||||
Firebird::IMaster* master = Firebird::fb_get_master_interface();
|
||||
Firebird::IUtil* util = master->getUtilInterface();
|
||||
return util->getClientVersion();
|
||||
return util->getClientVersion();
|
||||
}
|
||||
|
||||
extern "C" ISC_TIME fb_encode_time(unsigned hours, unsigned minutes, unsigned seconds, unsigned fractions)
|
||||
|
@ -53,7 +53,7 @@ extern "C" ISC_DATE fb_encode_date(unsigned year, unsigned month, unsigned day)
|
|||
#if FB_API_VER >= 40
|
||||
|
||||
/* Decodes a time with time zone into its time components. */
|
||||
extern "C" ISC_STATUS fb_decode_time_tz(ISC_STATUS* isc_status, const ISC_TIME_TZ* timeTz, unsigned* hours, unsigned* minutes, unsigned* seconds, unsigned* fractions,
|
||||
extern "C" ISC_STATUS fb_decode_time_tz(ISC_STATUS* isc_status, const ISC_TIME_TZ* timeTz, unsigned* hours, unsigned* minutes, unsigned* seconds, unsigned* fractions,
|
||||
unsigned timeZoneBufferLength, char* timeZoneBuffer)
|
||||
{
|
||||
Firebird::IMaster* master = Firebird::fb_get_master_interface();
|
||||
|
@ -70,9 +70,9 @@ extern "C" ISC_STATUS fb_decode_time_tz(ISC_STATUS* isc_status, const ISC_TIME_T
|
|||
}
|
||||
|
||||
/* Decodes a timestamp with time zone into its date and time components */
|
||||
extern "C" ISC_STATUS fb_decode_timestamp_tz(ISC_STATUS* isc_status, const ISC_TIMESTAMP_TZ* timestampTz,
|
||||
extern "C" ISC_STATUS fb_decode_timestamp_tz(ISC_STATUS* isc_status, const ISC_TIMESTAMP_TZ* timestampTz,
|
||||
unsigned* year, unsigned* month, unsigned* day,
|
||||
unsigned* hours, unsigned* minutes, unsigned* seconds, unsigned* fractions,
|
||||
unsigned* hours, unsigned* minutes, unsigned* seconds, unsigned* fractions,
|
||||
unsigned timeZoneBufferLength, char* timeZoneBuffer)
|
||||
{
|
||||
Firebird::IMaster* master = Firebird::fb_get_master_interface();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue