type_set_skip_documentation


Description:

[ Version ( since = "1.20" ) ]
public static void type_set_skip_documentation (Type type)

Marks type as "documentation should be skipped".

Can be useful for dynamically registered element to be excluded from plugin documentation system.

Example: ```c GType my_type; GTypeInfo my_type_info;

// Fill "my_type_info" ...

my_type = g_type_register_static (GST_TYPE_MY_ELEMENT, "my-type-name", &my_type_info, 0); gst_element_type_set_skip_documentation (my_type); gst_element_register (plugin, "my-plugin-feature-name", rank, my_type); ```

Parameters:

type

a Type of element