summaryrefslogtreecommitdiff
path: root/scard_common.h
blob: c84bf5b06d7fc9cbdeca8cf427d1902bb3976ad6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef _SCARD_COMMON_H
#define _SCARD_COMMON_H

typedef enum {
	SCard_ATR,
	SCard_APDU,
	SCard_Remove,
	SCard_Quit
} MsgType;

typedef struct SCRMsgHeader {
	MsgType type;
	unsigned int nLength;
} SCRMsgHeader;

#endif