]> git.proxmox.com Git - qemu.git/blame - libcacard/vreadert.h
Merge branch 'target-arm.next' of git://git.linaro.org/people/pmaydell/qemu-arm
[qemu.git] / libcacard / vreadert.h
CommitLineData
111a38b0
RR
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
9typedef enum {
10 VREADER_OK = 0,
11 VREADER_NO_CARD,
12 VREADER_OUT_OF_MEMORY
13} VReaderStatus;
14
15typedef unsigned int vreader_id_t;
16typedef struct VReaderStruct VReader;
17typedef struct VReaderListStruct VReaderList;
18typedef struct VReaderListEntryStruct VReaderListEntry;
19
20typedef struct VReaderEmulStruct VReaderEmul;
21typedef void (*VReaderEmulFree)(VReaderEmul *);
22
23#endif
24