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: | c3a8fe4086fc117716d7dd12b9399be1 | 
| 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 ignorescheck-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#11check-in: ec1f93c869 user: rkeene tags: trunk | |
Changes
Modified build/cackey_win32_build/include/winscard.h from [b54aa4ee89] to [09d1252d26].
| ︙ | ︙ | |||
| 65 66 67 68 69 70 71 72 73 74 75 | 
#endif
/* In clr:pure we cannot mark data export with dllimport.
 * We should add small functions which returns the value of
 * the global.
 */
#if !defined(_M_CEE_PURE)
WINSCARDDATA extern const SCARD_IO_REQUEST
    g_rgSCardT0Pci,
    g_rgSCardT1Pci,
    g_rgSCardRawPci;
 | > > > | | | 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 | 
#endif
/* In clr:pure we cannot mark data export with dllimport.
 * We should add small functions which returns the value of
 * the global.
 */
#if !defined(_M_CEE_PURE)
static const SCARD_IO_REQUEST static_g_rgSCardT0Pci = { SCARD_PROTOCOL_T0, 8 };
static const SCARD_IO_REQUEST static_g_rgSCardT1Pci = { SCARD_PROTOCOL_T1, 8 };
WINSCARDDATA extern const SCARD_IO_REQUEST
    g_rgSCardT0Pci,
    g_rgSCardT1Pci,
    g_rgSCardRawPci;
#define SCARD_PCI_T0  (&static_g_rgSCardT0Pci)
#define SCARD_PCI_T1  (&static_g_rgSCardT1Pci)
#define SCARD_PCI_RAW (&g_rgSCardRawPci)
#endif
//
////////////////////////////////////////////////////////////////////////////////
//
//  Service Manager Access Services
 | 
| ︙ | ︙ |