mirror of
https://github.com/nfc-tools/libnfc.git
synced 2026-03-01 05:06:38 +00:00
The nfc_register_driver allows users of the library to write their own device drivers without needing to resort to hacking libnfc itself.
35 lines
1.1 KiB
C
35 lines
1.1 KiB
C
/*-
|
|
* Public platform independent Near Field Communication (NFC) library
|
|
*
|
|
* Copyright (C) 2009 Roel Verdult
|
|
* Copyright (C) 2011 Romain Tartière
|
|
* Copyright (C) 2011 Romuald Conty
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify it
|
|
* under the terms of the GNU Lesser General Public License as published by the
|
|
* Free Software Foundation, either version 3 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 Lesser General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
*/
|
|
|
|
/**
|
|
* @file drivers.h
|
|
* @brief Supported drivers header
|
|
*/
|
|
|
|
#ifndef __NFC_DRIVERS_H__
|
|
# define __NFC_DRIVERS_H__
|
|
|
|
# include <nfc/nfc-types.h>
|
|
|
|
extern const struct nfc_driver_list* nfc_drivers;
|
|
|
|
#endif // __NFC_DRIVERS_H__
|