Re: winscard: Implement some functions of winscard.dll

2011-05-26 Thread Alexandre Julliard
Sergey Stepanov writes: > @@ -33,6 +35,24 @@ const SCARD_IO_REQUEST g_rgSCardT0Pci = { > SCARD_PROTOCOL_T0, 8 }; > const SCARD_IO_REQUEST g_rgSCardT1Pci = { SCARD_PROTOCOL_T1, 8 }; > const SCARD_IO_REQUEST g_rgSCardRawPci = { SCARD_PROTOCOL_RAW, 8 }; > > +#define MAKE_FUNCPTR(f) static typeo

winscard: Implement some functions of winscard.dll

2011-05-15 Thread Juan Lang
Hi Sergey, #include "config.h" +#include #include This change will cause compile failures on systems without this header. You need to add a configure check for the header, and include it conditionally. Thanks, --Juan