Am Montag, den 17.01.2005, 14:05 +0530 schrieb [EMAIL PROTECTED]: > $ make > gplc -c -C '-Wall -g -I/usr/local/pcsc/include/PCSC' pcsc/muscle_c.c > pcsc/muscle_c.c: In function `scard_list_readers_C': > pcsc/muscle_c.c:48: `LPCSTR' undeclared (first use in this function) > pcsc/muscle_c.c:48: (Each undeclared identifier is reported only once > pcsc/muscle_c.c:48: for each function it appears in.) > pcsc/muscle_c.c:48: parse error before "mszGroups" > pcsc/muscle_c.c:50: warning: `LPSTR' is deprecated (declared > at /usr/local/pcsc/include/PCSC/wintypes.h:50) > pcsc/muscle_c.c:56: `mszGroups' undeclared (first use in this > function) > compilation failed > make: *** [pcsc/muscle_c.o] Error 1
Apparently the code you are trying to compile has been based on an older version of pcsc-lite. Recent versions don't have the type `LPCSTR' any longer, you'll have to change it to LPTSTR or LPCTSTR, depending on the function where this variable is used. Look at the function prototypes in PCSC/winscard.h. Cheers, Toni _______________________________________________ Muscle mailing list [email protected] http://lists.drizzle.com/mailman/listinfo/muscle
