* where `nn` is a 2-digit hexadecimal number.
*/
-/*
+/**
* _g_file_attribute_value_free:
* @attr: a #GFileAttributeValue.
*
g_free (attr);
}
-/*
+/**
* _g_file_attribute_value_clear:
* @attr: a #GFileAttributeValue.
*
attr->type = G_FILE_ATTRIBUTE_TYPE_INVALID;
}
-/*
+/**
* g_file_attribute_value_set:
* @attr: a #GFileAttributeValue to set the value in.
* @new_value: a #GFileAttributeValue to get the value from.
g_object_ref (attr->u.obj);
}
-/*
+/**
* _g_file_attribute_value_new:
*
* Creates a new file attribute.
}
}
-/*
+/**
* g_file_attribute_value_dup:
* @other: a #GFileAttributeValue to duplicate.
*
}
}
-/*
+/**
* _g_file_attribute_value_as_string:
* @attr: a #GFileAttributeValue.
*
return str;
}
-/*
+/**
* _g_file_attribute_value_get_string:
* @attr: a #GFileAttributeValue.
*
return attr->u.string;
}
-/*
+/**
* _g_file_attribute_value_get_byte_string:
* @attr: a #GFileAttributeValue.
*
return attr->u.stringv;
}
-/*
+/**
* _g_file_attribute_value_get_boolean:
* @attr: a #GFileAttributeValue.
*
return attr->u.boolean;
}
-/*
+/**
* _g_file_attribute_value_get_uint32:
* @attr: a #GFileAttributeValue.
*
return attr->u.uint32;
}
-/*
+/**
* _g_file_attribute_value_get_int32:
* @attr: a #GFileAttributeValue.
*
return attr->u.int32;
}
-/*
+/**
* _g_file_attribute_value_get_uint64:
* @attr: a #GFileAttributeValue.
*
return attr->u.uint64;
}
-/*
+/**
* _g_file_attribute_value_get_int64:
* @attr: a #GFileAttributeValue.
*
return attr->u.int64;
}
-/*
+/**
* _g_file_attribute_value_get_object:
* @attr: a #GFileAttributeValue.
*
}
}
-/*
+/**
* _g_file_attribute_value_set_string:
* @attr: a #GFileAttributeValue.
* @string: a UTF-8 string to set within the type.
attr->u.string = g_strdup (string);
}
-/*
+/**
* _g_file_attribute_value_set_byte_string:
* @attr: a #GFileAttributeValue.
* @string: a byte string to set within the type.
}
-/*
+/**
* _g_file_attribute_value_set_boolean:
* @attr: a #GFileAttributeValue.
* @value: a #gboolean to set within the type.
attr->u.boolean = !!value;
}
-/*
+/**
* _g_file_attribute_value_set_uint32:
* @attr: a #GFileAttributeValue.
* @value: a #guint32 to set within the type.
attr->u.uint32 = value;
}
-/*
+/**
* _g_file_attribute_value_set_int32:
* @attr: a #GFileAttributeValue.
* @value: a #gint32 to set within the type.
attr->u.int32 = value;
}
-/*
+/**
* _g_file_attribute_value_set_uint64:
* @attr: a #GFileAttributeValue.
* @value: a #guint64 to set within the type.
attr->u.uint64 = value;
}
-/*
+/**
* _g_file_attribute_value_set_int64:
* @attr: a #GFileAttributeValue.
* @value: a #gint64 to set within the type.
attr->u.int64 = value;
}
-/*
+/**
* _g_file_attribute_value_set_object:
* @attr: a #GFileAttributeValue.
* @obj: a #GObject.
extern int get_kqueue_descriptor(void);
-/*
+/**
* _kqueue_thread_collect_fds:
* @events: a #kevents - the list of events to monitor. Will be extended
* with new items.
}
-/*
+/**
* _kqueue_thread_cleanup_fds:
* @events: a #kevents -- list of events to monitor. Cancelled
* subscriptions will be removed from it, and its size
}
-/*
+/**
* _kqueue_thread_drop_fd:
* @events: a #kevents -- list of events to monitor. Cancelled
* subscriptions will be removed from it, and its size
}
}
-/*
+/**
* _kqueue_thread_func:
* @arg: a pointer to int -- control file descriptor.
*
}
-/*
+/**
* _kqueue_thread_push_fd:
* @fd: a file descriptor
*
}
-/*
+/**
* _kqueue_thread_remove_fd:
* @fd: a file descriptor
*