source: trunk/csctapi/pcscdefines.h@ 1

Last change on this file since 1 was 1, checked in by root, 14 years ago

initial import

File size: 933 bytes
RevLine 
[1]1/*****************************************************************
2/
3/ File : pcscdefines.h
4/ Author : David Corcoran <corcoran@linuxnet.com>
5/ Date : June 15, 2000
6/ Purpose: This provides PC/SC shared defines.
7/ See http://www.linuxnet.com for more information.
8/ License: See file LICENSE
9/ Note : modified by doz21
10/
11******************************************************************/
12
13#ifndef _pcscdefines_h_
14#define _pcscdefines_h_
15
16#ifdef __cplusplus
17extern "C" {
18#endif
19
20/* Defines a list of pseudo types. */
21
22 typedef unsigned long DWORD;
23 typedef unsigned long* PDWORD;
24 typedef unsigned char UCHAR;
25 typedef unsigned char* PUCHAR;
26 typedef char* LPSTR;
27 typedef long RESPONSECODE;
28 typedef void VOID;
29
30 #define MAX_RESPONSE_SIZE 264
31 #define MAX_ATR_SIZE 33
32
33#ifdef __cplusplus
34}
35#endif
36
37#endif /* _pcscdefines_h_ */
Note: See TracBrowser for help on using the repository browser.