]> git.zerfleddert.de Git - proxmark3-svn/blame - client/pcsc.h
Add support for standard USB Smartcard Readers (#765)
[proxmark3-svn] / client / pcsc.h
CommitLineData
a9104f7e 1//-----------------------------------------------------------------------------
2// Copyright (C) 2019 piwi
3//
4// This code is licensed to you under the terms of the GNU GPL, version 2 or,
5// at your option, any later version. See the LICENSE.txt file for the text of
6// the license.
7//-----------------------------------------------------------------------------
8// PCSC functions to use alternative Smartcard Readers
9//-----------------------------------------------------------------------------
10
11#ifndef PCSC_H__
12#define PCSC_H__
13
14#include <stdbool.h>
15#include "smartcard.h"
16
17char *getAlternativeSmartcardReader(void);
18bool pcscCheckForCardReaders(void);
19bool pcscSelectAlternativeCardReader(const char *readername);
20bool pcscGetATR(smart_card_atr_t *card);
21
22#endif
Impressum, Datenschutz