Make ATR variable static

This commit is contained in:
akallabeth 2022-04-28 12:58:12 +02:00 committed by akallabeth
parent 159f24520c
commit 8f109ec89a

View File

@ -97,10 +97,8 @@ typedef struct
static SCardHandle* find_reader(SmartcardEmulationContext* smartcard, const void* szReader,
BOOL unicode);
const BYTE ATR[] = { 0x3b, 0xf7, 0x18, 0x00, 0x00, 0x80, 0x31, 0xfe, 0x45,
0x73, 0x66, 0x74, 0x65, 0x2d, 0x6e, 0x66, 0xc4
};
static const BYTE ATR[] = { 0x3b, 0xf7, 0x18, 0x00, 0x00, 0x80, 0x31, 0xfe, 0x45,
0x73, 0x66, 0x74, 0x65, 0x2d, 0x6e, 0x66, 0xc4 };
static BOOL scard_status_transition(SCardContext* context)
{