~ubuntu-branches/ubuntu/natty/evolution-exchange/natty

« back to all changes in this revision

Viewing changes to mail/mail-stub-listener.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2009-06-16 00:24:12 UTC
  • mfrom: (1.1.57 upstream)
  • Revision ID: james.westby@ubuntu.com-20090616002412-g7ucx327w7rpqhij
Tags: 2.27.3-0ubuntu1
* New upstream version 
* debian/control:
  - updated evolution requirement
* debian/patches/20_fix-crash-on-personal-calendar.patch:
  - the change is in the new version

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
        GObject parent;
25
25
 
26
26
        gpointer stub;
27
 
        char *socket_path;
 
27
        gchar *socket_path;
28
28
        GIOChannel *channel;
29
29
 
30
 
        int cmd_fd;
 
30
        gint cmd_fd;
31
31
};
32
32
 
33
33
struct _MailStubListenerClass {
34
34
        GObjectClass parent_class;
35
35
 
36
36
        /* signals */
37
 
        void (*new_connection) (MailStubListener *, int, int);
 
37
        void (*new_connection) (MailStubListener *, int, gint);
38
38
};
39
39
 
40
40
GType             mail_stub_listener_get_type      (void);
41
41
gboolean          mail_stub_listener_construct     (MailStubListener *stub,
42
 
                                                    const char *socket_path);
 
42
                                                    const gchar *socket_path);
43
43
 
44
 
MailStubListener *mail_stub_listener_new           (const char *socket_path);
 
44
MailStubListener *mail_stub_listener_new           (const gchar *socket_path);
45
45
 
46
46
#ifdef __cplusplus
47
47
}