Annotation of embedaddon/strongswan/src/libcharon/plugins/eap_sim_pcsc/eap_sim_pcsc_plugin.h, revision 1.1.1.1

1.1       misho       1: /*
                      2:  * Copyright (C) 2011 Duncan Salerno
                      3:  *
                      4:  * This program is free software; you can redistribute it and/or modify it
                      5:  * under the terms of the GNU General Public License as published by the
                      6:  * Free Software Foundation; either version 2 of the License, or (at your
                      7:  * option) any later version.  See <http://www.fsf.org/copyleft/gpl.txt>.
                      8:  *
                      9:  * This program is distributed in the hope that it will be useful, but
                     10:  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
                     11:  * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
                     12:  * for more details.
                     13:  */
                     14: 
                     15: /**
                     16:  * @defgroup eap_sim_pcsc eap_sim_pcsc
                     17:  * @ingroup cplugins
                     18:  *
                     19:  * @defgroup eap_sim_pcsc_plugin eap_sim_pcsc_plugin
                     20:  * @{ @ingroup eap_sim_pcsc
                     21:  */
                     22: 
                     23: #ifndef EAP_SIM_PCSC_PLUGIN_H_
                     24: #define EAP_SIM_PCSC_PLUGIN_H_
                     25: 
                     26: #include <plugins/plugin.h>
                     27: 
                     28: typedef struct eap_sim_pcsc_plugin_t eap_sim_pcsc_plugin_t;
                     29: 
                     30: /**
                     31:  * Plugin to provide a SIM card from a PCSC reader.
                     32:  */
                     33: struct eap_sim_pcsc_plugin_t {
                     34: 
                     35:        /**
                     36:         * implements plugin interface
                     37:         */
                     38:        plugin_t plugin;
                     39: };
                     40: 
                     41: #endif /** EAP_SIM_PCSC_PLUGIN_H_ @}*/

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>