1 /*************************************************************************** 2 begin : Sun Jun 13 2004 3 copyright : (C) 2004-2010 by Martin Preuss 4 email : martin@libchipcard.de 5 6 *************************************************************************** 7 * Please see toplevel file COPYING for license details * 8 ***************************************************************************/ 9 10 /** @file examplecard.h 11 * @short Pubic header file 12 * 13 * This file may be included by whoever wants to. It defines the public 14 * functions of this type. 15 */ 16 17 18 #ifndef CHIPCARD_CARD_EXAMPLECARD_H 19 #define CHIPCARD_CARD_EXAMPLECARD_H 20 21 #include <chipcard/card.h> 22 23 24 int ExampleCard_ExtendCard(LC_CARD *card); 25 int ExampleCard_UnextendCard(LC_CARD *card); 26 27 LC_CLIENT_RESULT ExampleCard_Reopen(LC_CARD *card); 28 29 30 int ExampleCard_GetExampleData(const LC_CARD *card); 31 32 33 typedef struct TYPE_REAL TYPE_VISIBLE; 34 int test_type(TYPE_VISIBLE *v); 35 36 #endif /* CHIPCARD_CARD_EXAMPLECARD_P_H */ 37 38 39 40 41