Changeset 3700
- Timestamp:
- 10/24/10 07:55:36 (13 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/OSCam.xcodeproj/project.pbxproj
r3605 r3700 8 8 9 9 /* Begin PBXFileReference section */ 10 9348D 819126BE60B0090C25C /* oscam-datastruct-llist.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = "oscam-datastruct-llist.c"; sourceTree = "<group>"; };11 9348D 81A126BE60B0090C25C /* oscam-datastruct-llist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "oscam-datastruct-llist.h"; sourceTree = "<group>"; };10 9348D96B12732B380090C25C /* module-datastruct-llist.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = "module-datastruct-llist.c"; sourceTree = "<group>"; }; 11 9348D96C12732B380090C25C /* module-datastruct-llist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "module-datastruct-llist.h"; sourceTree = "<group>"; }; 12 12 93B819DB124D484C00E9DF68 /* aes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = aes.h; path = /usr/src/Dev/oscam/trunk/cscrypt/aes/aes.h; sourceTree = "<absolute>"; }; 13 13 93B819DC124D484C00E9DF68 /* aes_core.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = aes_core.c; path = /usr/src/Dev/oscam/trunk/cscrypt/aes/aes_core.c; sourceTree = "<absolute>"; }; … … 199 199 93B81A56124D484C00E9DF68 /* module-cccam.h */, 200 200 93B81A57124D484C00E9DF68 /* module-constcw.c */, 201 9348D96B12732B380090C25C /* module-datastruct-llist.c */, 202 9348D96C12732B380090C25C /* module-datastruct-llist.h */, 201 203 93B81A58124D484C00E9DF68 /* module-dvbapi.c */, 202 204 93B81A59124D484C00E9DF68 /* module-dvbapi.h */, … … 214 216 93B81A6A124D484C00E9DF68 /* oscam-config.c */, 215 217 93B81A6B124D484C00E9DF68 /* oscam-config.h */, 216 9348D819126BE60B0090C25C /* oscam-datastruct-llist.c */,217 9348D81A126BE60B0090C25C /* oscam-datastruct-llist.h */,218 218 93B81A6C124D484C00E9DF68 /* oscam-http-helpers.c */, 219 219 93B81A6D124D484C00E9DF68 /* oscam-http.c */, -
trunk/csctapi/ifd_pcsc.c
r3549 r3700 111 111 dwSendLength = l-1; 112 112 cs_debug("sending %d bytes to PCSC", dwSendLength); 113 rv = SCardTransmit(pcsc_reader->hCard, SCARD_PCI_T0, buf, dwSendLength, &pioRecvPci, (LPBYTE) cta_res,&dwRecvLength);113 rv = SCardTransmit(pcsc_reader->hCard, SCARD_PCI_T0, (LPCBYTE) buf, dwSendLength, &pioRecvPci, (LPBYTE) cta_res, (LPDWORD) &dwRecvLength); 114 114 } 115 115 else if(pcsc_reader->dwActiveProtocol == SCARD_PROTOCOL_T1) { 116 116 dwSendLength = l; 117 117 cs_debug("sending %d bytes to PCSC", dwSendLength); 118 rv = SCardTransmit(pcsc_reader->hCard, SCARD_PCI_T1, buf, dwSendLength, &pioRecvPci, (LPBYTE) cta_res,&dwRecvLength);118 rv = SCardTransmit(pcsc_reader->hCard, SCARD_PCI_T1, (LPCBYTE) buf, dwSendLength, &pioRecvPci, (LPBYTE) cta_res, (LPDWORD) &dwRecvLength); 119 119 } 120 120 else {
Note:
See TracChangeset
for help on using the changeset viewer.