diff options
author | Johan Hedberg <johan.hedberg@intel.com> | 2011-09-02 14:47:18 +0300 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2012-12-04 22:48:44 +0100 |
commit | 8db017fec47ac778900a0bb728b8ee0f85b4aade (patch) | |
tree | 34b0d5f7b80d84151fe85dbfffcc1294c4ad086a /obexd/src/manager.h | |
parent | 902ba758b0120bac033a9e8d4645ffad9f473ee2 (diff) |
obexd: Rename dbus.h to manager.g
Diffstat (limited to 'obexd/src/manager.h')
-rw-r--r-- | obexd/src/manager.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/obexd/src/manager.h b/obexd/src/manager.h new file mode 100644 index 000000000..47aecb869 --- /dev/null +++ b/obexd/src/manager.h @@ -0,0 +1,38 @@ +/* + * + * OBEX Server + * + * Copyright (C) 2007-2010 Nokia Corporation + * + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + */ + +#include <dbus/dbus.h> + +#define OPENOBEX_SERVICE "org.openobex" + +void manager_register_session(struct obex_session *os); +void manager_unregister_session(struct obex_session *os); +void manager_register_transfer(struct obex_session *os); +void manager_unregister_transfer(struct obex_session *os); +void manager_emit_transfer_started(struct obex_session *os); +void manager_emit_transfer_progress(struct obex_session *os); +void manager_emit_transfer_completed(struct obex_session *os); +int manager_request_authorization(struct obex_session *os, int32_t time, + char **new_folder, char **new_name); + +DBusConnection *manager_dbus_get_connection(void); |