X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=doc%2Fhtml%2FGUPnPResourceFactory.html;h=30bee0801b05b144a53c8e42d63865234801c67a;hb=30427ea337e5daeaafd08324c1fc1c5135874503;hp=c75d27835df9b46980ad653cca40e86ff3c31214;hpb=6c370738b6acaa7bd1e255ad32d1f3505f11824f;p=profile%2Fivi%2FGUPnP.git diff --git a/doc/html/GUPnPResourceFactory.html b/doc/html/GUPnPResourceFactory.html index c75d278..30bee08 100644 --- a/doc/html/GUPnPResourceFactory.html +++ b/doc/html/GUPnPResourceFactory.html @@ -46,15 +46,15 @@ void gupnp_resource_factory_register_resource_type (GUPnPResourceFactory *factory, const char *upnp_type, - GType type); -gboolean gupnp_resource_factory_unregister_resource_type + GType type); +gboolean gupnp_resource_factory_unregister_resource_type (GUPnPResourceFactory *factory, const char *upnp_type); void gupnp_resource_factory_register_resource_proxy_type (GUPnPResourceFactory *factory, const char *upnp_type, - GType type); -gboolean gupnp_resource_factory_unregister_resource_proxy_type + GType type); +gboolean gupnp_resource_factory_unregister_resource_proxy_type (GUPnPResourceFactory *factory, const char *upnp_type); @@ -62,7 +62,7 @@

Object Hierarchy

-  GObject
+  GObject
    +----GUPnPResourceFactory
 
@@ -71,9 +71,9 @@

GUPnPResourceFactory objects are used by GUPnPControlPoint, GUPnPDeviceProxy and GUPnPDevice to create resource proxy and resource -objects. Register UPnP type - GType pairs to have resource or resource proxy -objects created with the specified GType whenever an object for a resource -of the specified UPnP type is requested. The GTypes need +objects. Register UPnP type - GType pairs to have resource or resource proxy +objects created with the specified GType whenever an object for a resource +of the specified UPnP type is requested. The GTypes need to be derived from the relevant resource or resource proxy type (e.g. a device proxy type needs to be derived from GUPnPDeviceProxy).

@@ -126,7 +126,7 @@ Get the default singleton void gupnp_resource_factory_register_resource_type (GUPnPResourceFactory *factory, const char *upnp_type, - GType type); + GType type);

Registers the GType type for the resource of UPnP type upnp_type. After this call, the factory factory will create object of GType type each time @@ -157,7 +157,7 @@ a device or GUPNP_TYPE_SERVICE if its a service.


gupnp_resource_factory_unregister_resource_type ()

-
gboolean            gupnp_resource_factory_unregister_resource_type
+
gboolean            gupnp_resource_factory_unregister_resource_type
                                                         (GUPnPResourceFactory *factory,
                                                          const char *upnp_type);

@@ -177,7 +177,7 @@ Unregisters the GType assignment for the resource of UPnP type Returns :

-TRUE if GType assignment was removed successfully, FALSE +TRUE if GType assignment was removed successfully, FALSE otherwise. @@ -189,7 +189,7 @@ otherwise.
void                gupnp_resource_factory_register_resource_proxy_type
                                                         (GUPnPResourceFactory *factory,
                                                          const char *upnp_type,
-                                                         GType type);
+ GType type);

Registers the GType type for the proxy of resource of UPnP type upnp_type. After this call, the factory factory will create object of GType type each @@ -220,7 +220,7 @@ resource is a device or GUPNP_TYPE_SERVICE_PROXY if it


gupnp_resource_factory_unregister_resource_proxy_type ()

-
gboolean            gupnp_resource_factory_unregister_resource_proxy_type
+
gboolean            gupnp_resource_factory_unregister_resource_proxy_type
                                                         (GUPnPResourceFactory *factory,
                                                          const char *upnp_type);

@@ -241,7 +241,7 @@ Unregisters the GType assignment for the proxy of resource of UPnP type

Returns :

-TRUE if GType assignment was removed successfully, FALSE +TRUE if GType assignment was removed successfully, FALSE otherwise.