Method

GLibDateTimeadd_full

since: 2.26

Declaration

GDateTime*
g_date_time_add_full (
  GDateTime* datetime,
  gint years,
  gint months,
  gint days,
  gint hours,
  gint minutes,
  gdouble seconds
)

Description

Creates a new GDateTime adding the specified values to the current date and time in datetime. Add negative values to subtract.

Available since: 2.26

Parameters

years

Type: gint

The number of years to add.

months

Type: gint

The number of months to add.

days

Type: gint

The number of days to add.

hours

Type: gint

The number of hours to add.

minutes

Type: gint

The number of minutes to add.

seconds

Type: gdouble

The number of seconds to add.

Return value

Type: GDateTime

The newly created GDateTime which should be freed with g_date_time_unref(), or NULL.

The caller of the method takes ownership of the data, and is responsible for freeing it.
The return value can be NULL.