Overview
Comment: | Added local definitions of T=1 and T=0 protocols on Win32 build (seems to be missing from library) |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | c3a8fe4086fc117716d7dd12b9399be1018c08e5 |
User & Date: | rkeene on 2010-10-15 10:20:07 |
Other Links: | manifest | tags |
Context
2010-10-15
| ||
10:27 |
Fixed issue with win32 build script
Updated ignores check-in: 81e42b32af user: rkeene tags: trunk | |
10:20 | Added local definitions of T=1 and T=0 protocols on Win32 build (seems to be missing from library) check-in: c3a8fe4086 user: rkeene tags: trunk | |
09:53 |
Added mostly-compiling Win32 support
Added local copy of RSA PKCS#11 check-in: ec1f93c869 user: rkeene tags: trunk | |
Changes
Modified build/cackey_win32_build/include/winscard.h from [b54aa4ee89] to [09d1252d26].
65 65 #endif 66 66 67 67 /* In clr:pure we cannot mark data export with dllimport. 68 68 * We should add small functions which returns the value of 69 69 * the global. 70 70 */ 71 71 #if !defined(_M_CEE_PURE) 72 +static const SCARD_IO_REQUEST static_g_rgSCardT0Pci = { SCARD_PROTOCOL_T0, 8 }; 73 +static const SCARD_IO_REQUEST static_g_rgSCardT1Pci = { SCARD_PROTOCOL_T1, 8 }; 74 + 72 75 WINSCARDDATA extern const SCARD_IO_REQUEST 73 76 g_rgSCardT0Pci, 74 77 g_rgSCardT1Pci, 75 78 g_rgSCardRawPci; 76 -#define SCARD_PCI_T0 (&g_rgSCardT0Pci) 77 -#define SCARD_PCI_T1 (&g_rgSCardT1Pci) 79 +#define SCARD_PCI_T0 (&static_g_rgSCardT0Pci) 80 +#define SCARD_PCI_T1 (&static_g_rgSCardT1Pci) 78 81 #define SCARD_PCI_RAW (&g_rgSCardRawPci) 79 82 #endif 80 83 81 84 // 82 85 //////////////////////////////////////////////////////////////////////////////// 83 86 // 84 87 // Service Manager Access Services