summaryrefslogtreecommitdiff
path: root/GLib.xs
blob: dd455e674179e3ba5d5d6e7051937e9f4934ff3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/* -*- c -*-
 *
 * Copyright (C) 2004-2008 Daniel P. Berrange
 *
 * This program is free software; You can redistribute it and/or modify
 * it under the same terms as Perl itself. Either:
 *
 * a) the GNU General Public License as published by the Free
 *   Software Foundation; either version 2, or (at your option) any
 *   later version,
 *
 * or
 *
 * b) the "Artistic License"
 *
 */

#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"

#include <dbus/dbus.h>
#include <dbus/dbus-glib-lowlevel.h>


MODULE = Net::DBus::GLib           PACKAGE = Net::DBus::GLib

PROTOTYPES: ENABLE

BOOT:
  {
  }

void
_dbus_connection_setup_with_g_main(con, ctx)
         DBusConnection *con;
	 GMainContext *ctx;
     CODE:
	 dbus_connection_setup_with_g_main(con, ctx);