pcsc-lite 2.3.0
ifdwrapper.h
Go to the documentation of this file.
1/*
2 * MUSCLE SmartCard Development ( https://pcsclite.apdu.fr/ )
3 *
4 * Copyright (C) 1999-2004
5 * David Corcoran <corcoran@musclecard.com>
6 * Copyright (C) 2002-2021
7 * Ludovic Rousseau <ludovic.rouseau@free.fr>
8 *
9Redistribution and use in source and binary forms, with or without
10modification, are permitted provided that the following conditions
11are met:
12
131. Redistributions of source code must retain the above copyright
14 notice, this list of conditions and the following disclaimer.
152. Redistributions in binary form must reproduce the above copyright
16 notice, this list of conditions and the following disclaimer in the
17 documentation and/or other materials provided with the distribution.
183. The name of the author may not be used to endorse or promote products
19 derived from this software without specific prior written permission.
20
21THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 */
32
39#ifndef __ifdwrapper_h__
40#define __ifdwrapper_h__
41
42#include "ifdhandler.h"
43#include "readerfactory.h"
44#include "wintypes.h"
45
46 RESPONSECODE IFDOpenIFD(READER_CONTEXT *);
47 RESPONSECODE IFDCloseIFD(READER_CONTEXT *);
48 RESPONSECODE IFDPowerICC(READER_CONTEXT *, DWORD, PUCHAR, /*@out@*/ PDWORD);
49 LONG IFDStatusICC(READER_CONTEXT *, /*@out@*/ PDWORD);
50 LONG IFDControl_v2(READER_CONTEXT *, PUCHAR, DWORD, /*@out@*/ PUCHAR,
51 PDWORD);
52 LONG IFDControl(READER_CONTEXT *, DWORD, LPCVOID, DWORD, LPVOID,
53 DWORD, LPDWORD);
55 PUCHAR, DWORD, /*@out@*/ PUCHAR, PDWORD, PSCARD_IO_HEADER);
56 RESPONSECODE IFDSetPTS(READER_CONTEXT *, DWORD, UCHAR, UCHAR, UCHAR, UCHAR);
57 RESPONSECODE IFDSetCapabilities(READER_CONTEXT *, DWORD, DWORD, PUCHAR);
58 RESPONSECODE IFDGetCapabilities(READER_CONTEXT *, DWORD, PDWORD, /*@out@*/ PUCHAR);
59
60#endif /* __ifdwrapper_h__ */
RESPONSECODE IFDPowerICC(READER_CONTEXT *, DWORD, PUCHAR, PDWORD)
Power up/down or reset's an ICC located in the IFD.
Definition ifdwrapper.c:270
RESPONSECODE IFDSetPTS(READER_CONTEXT *, DWORD, UCHAR, UCHAR, UCHAR, UCHAR)
Set the protocol type selection (PTS).
Definition ifdwrapper.c:67
LONG IFDStatusICC(READER_CONTEXT *, PDWORD)
Provide statistical information about the IFD and ICC including insertions, atr, powering status/etc.
Definition ifdwrapper.c:339
RESPONSECODE IFDGetCapabilities(READER_CONTEXT *, DWORD, PDWORD, PUCHAR)
Gets capabilities in the reader.
Definition ifdwrapper.c:240
LONG IFDControl(READER_CONTEXT *, DWORD, LPCVOID, DWORD, LPVOID, DWORD, LPDWORD)
Provide a means for toggling a specific action on the reader such as swallow, eject,...
Definition ifdwrapper.c:447
RESPONSECODE IFDCloseIFD(READER_CONTEXT *)
Close a communication channel to the IFD.
Definition ifdwrapper.c:163
RESPONSECODE IFDSetCapabilities(READER_CONTEXT *, DWORD, DWORD, PUCHAR)
Set capabilities in the reader.
Definition ifdwrapper.c:209
LONG IFDTransmit(READER_CONTEXT *, SCARD_IO_HEADER, PUCHAR, DWORD, PUCHAR, PDWORD, PSCARD_IO_HEADER)
Transmit an APDU to the ICC.
Definition ifdwrapper.c:507
RESPONSECODE IFDOpenIFD(READER_CONTEXT *)
Open a communication channel to the IFD.
Definition ifdwrapper.c:105
This keeps track of a list of currently available reader structures.
Use by SCardTransmit()
Definition ifdhandler.h:311
This keeps a list of Windows(R) types.