syms.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* 
  2.    BlueZ - Bluetooth protocol stack for Linux
  3.    Copyright (C) 2000-2001 Qualcomm Incorporated
  4.    Written 2000,2001 by Maxim Krasnyansky <maxk@qualcomm.com>
  5.    This program is free software; you can redistribute it and/or modify
  6.    it under the terms of the GNU General Public License version 2 as
  7.    published by the Free Software Foundation;
  8.    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  9.    OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  10.    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
  11.    IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
  12.    CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES 
  13.    WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 
  14.    ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 
  15.    OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  16.    ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS, 
  17.    COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS 
  18.    SOFTWARE IS DISCLAIMED.
  19. */
  20. /*
  21.  * BlueZ symbols.
  22.  *
  23.  * $Id: syms.c,v 1.1 2001/07/12 19:31:24 maxk Exp $
  24.  */
  25. #include <linux/config.h>
  26. #include <linux/module.h>
  27. #include <linux/types.h>
  28. #include <linux/errno.h>
  29. #include <linux/kernel.h>
  30. #include <linux/init.h>
  31. #include <linux/skbuff.h>
  32. #include <linux/socket.h>
  33. #include <net/bluetooth/bluetooth.h>
  34. #include <net/bluetooth/bluez.h>
  35. #include <net/bluetooth/hci_core.h>
  36. /* HCI Core */
  37. EXPORT_SYMBOL(hci_register_dev);
  38. EXPORT_SYMBOL(hci_unregister_dev);
  39. EXPORT_SYMBOL(hci_register_proto);
  40. EXPORT_SYMBOL(hci_unregister_proto);
  41. EXPORT_SYMBOL(hci_register_notifier);
  42. EXPORT_SYMBOL(hci_unregister_notifier);
  43. EXPORT_SYMBOL(hci_connect);
  44. EXPORT_SYMBOL(hci_disconnect);
  45. EXPORT_SYMBOL(hci_dev_get);
  46. EXPORT_SYMBOL(hci_recv_frame);
  47. EXPORT_SYMBOL(hci_send_acl);
  48. EXPORT_SYMBOL(hci_send_sco);
  49. EXPORT_SYMBOL(hci_send_raw);
  50. /* BlueZ lib */
  51. EXPORT_SYMBOL(bluez_dump);
  52. EXPORT_SYMBOL(baswap);
  53. EXPORT_SYMBOL(batostr);
  54. EXPORT_SYMBOL(bterr);
  55. /* BlueZ sockets */
  56. EXPORT_SYMBOL(bluez_sock_register);
  57. EXPORT_SYMBOL(bluez_sock_unregister);
  58. EXPORT_SYMBOL(bluez_sock_link);
  59. EXPORT_SYMBOL(bluez_sock_unlink);