File: examplecard.h

package info (click to toggle)
libchipcard 5.99.1beta-2
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 4,984 kB
  • sloc: ansic: 25,026; xml: 7,016; sh: 4,159; makefile: 954; cpp: 403
file content (40 lines) | stat: -rw-r--r-- 1,009 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/***************************************************************************
    begin       : Sun Jun 13 2004
    copyright   : (C) 2004-2010 by Martin Preuss
    email       : martin@libchipcard.de

 ***************************************************************************
 *          Please see toplevel file COPYING for license details           *
 ***************************************************************************/

/** @file examplecard.h
 *  @short Pubic header file
 *
 * This file may be included by whoever wants to. It defines the public
 * functions of this type.
 */


#ifndef CHIPCARD_CARD_EXAMPLECARD_H
#define CHIPCARD_CARD_EXAMPLECARD_H

#include <libchipcard/base/card.h>


int ExampleCard_ExtendCard(LC_CARD *card);
int ExampleCard_UnextendCard(LC_CARD *card);

int ExampleCard_Reopen(LC_CARD *card);


int ExampleCard_GetExampleData(const LC_CARD *card);


typedef struct TYPE_REAL TYPE_VISIBLE;
int test_type(TYPE_VISIBLE *v);

#endif /* CHIPCARD_CARD_EXAMPLECARD_P_H */