~cyphermox/+junk/bluez-debug

« back to all changes in this revision

Viewing changes to src/agent.h

  • Committer: Package Import Robot
  • Author(s): Robert Ancell
  • Date: 2012-07-04 13:28:49 UTC
  • mfrom: (1.1.38)
  • Revision ID: package-import@ubuntu.com-20120704132849-tmwu1x7p2vxcclt1
Tags: 4.101-0ubuntu1
* New upstream release
* debian/libbluetooth3.symbols:
  - Updated
* debian/patches/10-unregister_interface_on_exit.patch:
* debian/patches/11-explicitly_close.patch:
* debian/patches/python3.patch:
  - Applied upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
int agent_display_passkey(struct agent *agent, struct btd_device *device,
65
65
                                uint32_t passkey);
66
66
 
 
67
int agent_display_pincode(struct agent *agent, struct btd_device *device,
 
68
                                const char *pincode, agent_cb cb,
 
69
                                void *user_data, GDestroyNotify destroy);
 
70
 
67
71
int agent_cancel(struct agent *agent);
68
72
 
69
73
gboolean agent_is_busy(struct agent *agent, void *user_data);
74
78
 
75
79
void agent_init(void);
76
80
void agent_exit(void);
77