/bluez/btsdp.h

http://pybluez.googlecode.com/ · C++ Header · 18 lines · 11 code · 5 blank · 2 comment · 0 complexity · 71fe47989cd382ab5e170bb0a81a6090 MD5 · raw file

  1. #ifndef __pybluez_sdp_h__
  2. #define __pybluez_sdp_h__
  3. #include <bluetooth/sdp.h>
  4. #include <bluetooth/sdp_lib.h>
  5. typedef struct {
  6. PyObject_HEAD
  7. sdp_session_t *session;
  8. PyObject *(*errorhandler)(void); /* Error handler; checks
  9. errno, returns NULL and
  10. sets a Python exception */
  11. } PySDPSessionObject;
  12. extern PyTypeObject sdp_session_type;
  13. #endif