Differences From Artifact [b54aa4ee89]:
- File
build/cackey_win32_build/include/winscard.h
— part of check-in
[ec1f93c869]
at
2010-10-15 09:53:09
on branch trunk
— Added mostly-compiling Win32 support
Added local copy of RSA PKCS#11 (user: rkeene, size: 40136) [annotate] [blame] [check-ins using]
To Artifact [09d1252d26]:
- File build/cackey_win32_build/include/winscard.h — part of check-in [c3a8fe4086] at 2010-10-15 10:20:07 on branch trunk — Added local definitions of T=1 and T=0 protocols on Win32 build (seems to be missing from library) (user: rkeene, size: 40314) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
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
|
| ︙ | ︙ |