|  |  |  | GUPnP A/V Reference Manual |  | 
|---|---|---|---|---|
| Top | Description | Object Hierarchy | Properties | ||||
GUPnPDIDLLiteContainer; gboolean gupnp_didl_lite_container_get_searchable (GUPnPDIDLLiteContainer *container); gint gupnp_didl_lite_container_get_child_count (GUPnPDIDLLiteContainer *container); GList * gupnp_didl_lite_container_get_create_classes (GUPnPDIDLLiteContainer *container); void gupnp_didl_lite_container_set_searchable (GUPnPDIDLLiteContainer *container,gboolean searchable); void gupnp_didl_lite_container_set_child_count (GUPnPDIDLLiteContainer *container,gint child_count); void gupnp_didl_lite_container_add_create_class (GUPnPDIDLLiteContainer *container,const char *create_class);
gboolean            gupnp_didl_lite_container_get_searchable
                                                        (GUPnPDIDLLiteContainer *container);
Checks whether container is searchable.
| 
 | GUPnPDIDLLiteContainer | 
| Returns : | TRUE if containeris searchable. | 
gint                gupnp_didl_lite_container_get_child_count
                                                        (GUPnPDIDLLiteContainer *container);
Get the child count of the container.  If the child count is unknown, -1 is
returned.
| 
 | GUPnPDIDLLiteContainer | 
| Returns : | The child count of the container, or -1 if it is unknown. | 
GList *             gupnp_didl_lite_container_get_create_classes
                                                        (GUPnPDIDLLiteContainer *container);
Gets the list of create classes of the object.
| 
 | GUPnPDIDLLiteContainer | 
| Returns : | The list of create classes belonging to object, orNULL.
g_list_free the returned list after usage and g_free each string in it. | 
void gupnp_didl_lite_container_set_searchable (GUPnPDIDLLiteContainer *container,gboolean searchable);
(Un)set the searchibility of container.
| 
 | GUPnPDIDLLiteContainer | 
| 
 | The searchibility | 
void gupnp_didl_lite_container_set_child_count (GUPnPDIDLLiteContainer *container,gint child_count);
Set the child count of the container.
| 
 | GUPnPDIDLLiteContainer | 
| 
 | The child count | 
void gupnp_didl_lite_container_add_create_class (GUPnPDIDLLiteContainer *container,const char *create_class);
Add a new create class to the object.
| 
 | GUPnPDIDLLiteContainer | 
| 
 | The createClass to add. | 
| Returns : | None. |