RygelDLNAProfile

RygelDLNAProfile — Data class representing a DLNA profile. It contains the name and the corresponding DLNA mime type.

Types and Values

Description

The mime type can deviate from mime types typically used elsewhere.

Functions

Types and Values

RYGEL_TYPE_DLNA_PROFILE

#define RYGEL_TYPE_DLNA_PROFILE (rygel_dlna_profile_get_type ())

The type for RygelDLNAProfile.


struct RygelDLNAProfile

struct RygelDLNAProfile {
	GTypeInstance parent_instance;
	volatile int ref_count;
	RygelDLNAProfilePrivate * priv;
	gchar* mime;
	gchar* name;
};

Data class representing a DLNA profile. It contains the name and the corresponding DLNA mime type.

The mime type can deviate from mime types typically used elsewhere.


struct RygelDLNAProfileClass

struct RygelDLNAProfileClass {
	GTypeClass parent_class;
	void (*finalize) (RygelDLNAProfile *self);
};

The class structure for RYGEL_TYPE_DLNA_PROFILE. All the fields in this structure are private and should never be accessed directly.

Members

finalize ()