~ubuntu-branches/ubuntu/wily/qemu-kvm-spice/wily

« back to all changes in this revision

Viewing changes to libcacard/vreadert.h

  • Committer: Bazaar Package Importer
  • Author(s): Serge Hallyn
  • Date: 2011-10-19 10:44:56 UTC
  • Revision ID: james.westby@ubuntu.com-20111019104456-xgvskumk3sxi97f4
Tags: upstream-0.15.0+noroms
ImportĀ upstreamĀ versionĀ 0.15.0+noroms

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
 
3
 * See the COPYING.LIB file in the top-level directory.
 
4
 */
 
5
 
 
6
#ifndef VREADERT_H
 
7
#define VREADERT_H 1
 
8
 
 
9
typedef enum {
 
10
    VREADER_OK = 0,
 
11
    VREADER_NO_CARD,
 
12
    VREADER_OUT_OF_MEMORY
 
13
} VReaderStatus;
 
14
 
 
15
typedef unsigned int vreader_id_t;
 
16
typedef struct VReaderStruct VReader;
 
17
typedef struct VReaderListStruct VReaderList;
 
18
typedef struct VReaderListEntryStruct VReaderListEntry;
 
19
 
 
20
typedef struct VReaderEmulStruct VReaderEmul;
 
21
typedef void (*VReaderEmulFree)(VReaderEmul *);
 
22
 
 
23
#endif
 
24