blob: f97e0a79ecf81c263e2aa9de73f1d6813a57124b [file] [log] [blame]
Robert Relyea111a38b2010-11-28 16:36:38 +02001/*
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