mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-01-01 01:10:14 +01:00
9 lines
228 B
Cython
9 lines
228 B
Cython
|
|
#include "dbus_h_wrapper.h"
|
||
|
|
|
||
|
|
cdef class Connection:
|
||
|
|
cdef DBusConnection *conn
|
||
|
|
|
||
|
|
cdef __cinit__(self, address, DBusConnection *_conn)
|
||
|
|
cdef _set_conn(self, DBusConnection *conn)
|
||
|
|
cdef DBusConnection *_get_conn(self)
|