Method

AravisCameradup_available_enumerations

Declaration [src]

gint64*
arv_camera_dup_available_enumerations (
  ArvCamera* camera,
  const char* feature,
  guint* n_values,
  GError** error
)

Description [src]

Get all the available values of feature, as 64 bit integers.

Available since:0.8.0

Parameters

feature const char*
 

Feature name.

 The data is owned by the caller of the function.
 The string is a NUL terminated UTF-8 string.
n_values guint*
 

Placeholder for the number of returned values.

 The argument will be set by the function.
 The instance takes ownership of the data, and is responsible for freeing it.
error GError **
  The return location for a GError*, or NULL.

Return value

Returns: An array of gint64
 

A newly created array of integers, which must freed after use using g_free, or NULL on error.

 The length of the array is in the n_values argument.
 The caller of the method takes ownership of the data container, but not the data inside it.