DPAPConnection

DPAPConnection

Synopsis

#define             TYPE_DPAP_CONNECTION
#define             DPAP_CONNECTION                     (o)
#define             DPAP_CONNECTION_CLASS               (k)
#define             IS_DPAP_CONNECTION                  (o)
#define             IS_DPAP_CONNECTION_CLASS            (k)
#define             DPAP_CONNECTION_GET_CLASS           (o)
                    DPAPConnectionPrivate;
                    DPAPConnection;
GType               dpap_connection_get_type            (void);
DPAPConnection *    dpap_connection_new                 (const gchar *name,
                                                         const gchar *host,
                                                         gint port,
                                                         const gchar *password,
                                                         DMAPDb *db,
                                                         DMAPRecordFactory *factory);

Object Hierarchy

  GObject
   +----DMAPConnection
         +----DPAPConnection

Description

Details

TYPE_DPAP_CONNECTION

#define TYPE_DPAP_CONNECTION         (dpap_connection_get_type ())

The type for DPAPConnection.


DPAP_CONNECTION()

#define DPAP_CONNECTION(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), TYPE_DPAP_CONNECTION, DPAPConnection))

Casts a DPAPConnection or derived pointer into a (DPAPConnection*) pointer. Depending on the current debugging level, this function may invoke certain runtime checks to identify invalid casts.

o :

Object which is subject to casting.

DPAP_CONNECTION_CLASS()

#define DPAP_CONNECTION_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST((k), TYPE_DPAP_CONNECTION, DPAPConnectionClass))

Casts a derived DPAPConnectionClass structure into a DPAPConnectionClass structure.

k :

a valid DPAPConnectionClass

IS_DPAP_CONNECTION()

#define IS_DPAP_CONNECTION(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), TYPE_DPAP_CONNECTION))

Checks whether a valid GTypeInstance pointer is of type TYPE_DPAP_CONNECTION.

o :

Instance to check for being a TYPE_DPAP_CONNECTION.

IS_DPAP_CONNECTION_CLASS()

#define IS_DPAP_CONNECTION_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), TYPE_DPAP_CONNECTION))

Checks whether k "is a" valid DPAPConnectionClass structure of type DPAP_CONNECTION_CLASS or derived.

k :

a DPAPConnectionClass

DPAP_CONNECTION_GET_CLASS()

#define DPAP_CONNECTION_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), TYPE_DPAP_CONNECTION, DPAPConnectionClass))

Get the class structure associated to a DPAPConnection instance.

o :

a DPAPConnection instance.

DPAPConnectionPrivate

typedef struct _DPAPConnectionPrivate DPAPConnectionPrivate;


DPAPConnection

typedef struct _DPAPConnection DPAPConnection;


dpap_connection_get_type ()

GType               dpap_connection_get_type            (void);

Returns :


dpap_connection_new ()

DPAPConnection *    dpap_connection_new                 (const gchar *name,
                                                         const gchar *host,
                                                         gint port,
                                                         const gchar *password,
                                                         DMAPDb *db,
                                                         DMAPRecordFactory *factory);

name :

host :

port :

password :

db :

factory :

Returns :