Re: winscard: add pcsc-lite helpers for upcoming implementation (try 2)

2007-05-24 Thread Alexandre Julliard
Mounir IDRASSI [EMAIL PROTECTED] writes: +/* + * pcsc-lite functions pointers + */ +typedef LONG (*SCardEstablishContextPtr)(DWORD dwScope,LPCVOID pvReserved1, +LPCVOID pvReserved2, LPSCARDCONTEXT phContext); +typedef LONG (*SCardReleaseContextPtr)(SCARDCONTEXT hContext); +typedef

Re: winscard: add pcsc-lite helpers for upcoming implementation (try 2)

2007-05-24 Thread Mounir IDRASSI
Actually, pcsc-lite defines the same headers from PSDK with the same types for 32bit architecture. Including pcsclite headers will clash with wine's headers. The only possible modification is to redefine pcsclite types with different names but this is useless as they are the same as the ones in

Re: winscard: add pcsc-lite helpers for upcoming implementation (try 2)

2007-05-24 Thread Alexandre Julliard
Mounir IDRASSI [EMAIL PROTECTED] writes: Actually, pcsc-lite defines the same headers from PSDK with the same types for 32bit architecture. Including pcsclite headers will clash with wine's headers. The only possible modification is to redefine pcsclite types with different names but this is