| 1 |
/*
|
| 2 |
* MUSCLE SmartCard Development ( http://www.linuxnet.com )
|
| 3 |
*
|
| 4 |
* Copyright (C) 1999-2002
|
| 5 |
* David Corcoran <corcoran@linuxnet.com>
|
| 6 |
* Copyright (C) 2002-2009
|
| 7 |
* Ludovic Rousseau <ludovic.rousseau@free.fr>
|
| 8 |
*
|
| 9 |
* $Id$
|
| 10 |
*/
|
| 11 |
|
| 12 |
/**
|
| 13 |
* @file
|
| 14 |
* @brief This keeps track of smartcard protocols, timing issues
|
| 15 |
* and Answer to Reset ATR handling.
|
| 16 |
*/
|
| 17 |
|
| 18 |
#ifndef __atrhandler_h__
|
| 19 |
#define __atrhandler_h__
|
| 20 |
|
| 21 |
/*
|
| 22 |
* Decodes the ATR
|
| 23 |
*/
|
| 24 |
short ATRDecodeAtr(/*@out@*/ int *availableProtocols, int *currentProtocol,
|
| 25 |
PUCHAR pucAtr, DWORD dwLength);
|
| 26 |
|
| 27 |
#endif /* __atrhandler_h__ */
|