File: examplecard.h

package info (click to toggle)
libchipcard2 2.1.9-2
  • links: PTS
  • area: main
  • in suites: etch-m68k
  • size: 7,052 kB
  • ctags: 3,761
  • sloc: ansic: 53,628; xml: 11,689; sh: 8,909; makefile: 1,394; cpp: 400
file content (41 lines) | stat: -rw-r--r-- 1,087 bytes parent folder | download | duplicates (2)
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
41
/***************************************************************************
 $RCSfile$
                             -------------------
    cvs         : $Id: examplecard.h 34 2005-01-26 17:19:10Z aquamaniac $
    begin       : Sun Jun 13 2004
    copyright   : (C) 2004 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 <chipcard2-client/client/card.h>


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

LC_CLIENT_RESULT ExampleCard_Reopen(LC_CARD *card);


int ExampleCard_GetExampleData(const LC_CARD *card);



#endif /* CHIPCARD_CARD_EXAMPLECARD_P_H */