|  |  |  | Xfconf Reference Manual |  | 
|---|---|---|---|---|
| Top | Description | ||||
gint16 xfconf_g_value_get_int16 (const GValue *value); guint16 xfconf_g_value_get_uint16 (const GValue *value); void xfconf_g_value_set_int16 (GValue *value,gint16 v_int16); void xfconf_g_value_set_uint16 (GValue *value,guint16 v_uint16);
libgobject lacks GObject fundamental types for 16-bit signed and unsigned integers, which may be useful to use in an Xfconf store. GObject types for these primitive types are provided here.
gint16              xfconf_g_value_get_int16            (const GValue *value);
Retrieves a 16-bit signed value from value.
| 
 | A GValue. | 
| Returns : | A gint16. | 
guint16             xfconf_g_value_get_uint16           (const GValue *value);
Retrieves a 16-bit unsigned value from value.
| 
 | A GValue. | 
| Returns : | A guint16. | 
void xfconf_g_value_set_int16 (GValue *value,gint16 v_int16);
Sets value using a signed 16-bit integer.
| 
 | A GValue. | 
| 
 | A gint16. |