Changeset 3700


Ignore:
Timestamp:
10/24/10 07:55:36 (13 years ago)
Author:
rorothetroll
Message:

added some files to xcode project

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/OSCam.xcodeproj/project.pbxproj

    r3605 r3700  
    88
    99/* Begin PBXFileReference section */
    10         9348D819126BE60B0090C25C /* oscam-datastruct-llist.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = "oscam-datastruct-llist.c"; sourceTree = "<group>"; };
    11         9348D81A126BE60B0090C25C /* 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>"; };
    1212        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>"; };
    1313        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>"; };
     
    199199                93B81A56124D484C00E9DF68 /* module-cccam.h */,
    200200                93B81A57124D484C00E9DF68 /* module-constcw.c */,
     201                9348D96B12732B380090C25C /* module-datastruct-llist.c */,
     202                9348D96C12732B380090C25C /* module-datastruct-llist.h */,
    201203                93B81A58124D484C00E9DF68 /* module-dvbapi.c */,
    202204                93B81A59124D484C00E9DF68 /* module-dvbapi.h */,
     
    214216                93B81A6A124D484C00E9DF68 /* oscam-config.c */,
    215217                93B81A6B124D484C00E9DF68 /* oscam-config.h */,
    216                 9348D819126BE60B0090C25C /* oscam-datastruct-llist.c */,
    217                 9348D81A126BE60B0090C25C /* oscam-datastruct-llist.h */,
    218218                93B81A6C124D484C00E9DF68 /* oscam-http-helpers.c */,
    219219                93B81A6D124D484C00E9DF68 /* oscam-http.c */,
  • trunk/csctapi/ifd_pcsc.c

    r3549 r3700  
    111111            dwSendLength = l-1;
    112112        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);
    114114    }
    115115    else  if(pcsc_reader->dwActiveProtocol == SCARD_PROTOCOL_T1) {
    116116        dwSendLength = l;
    117117        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);
    119119    }
    120120    else {
Note: See TracChangeset for help on using the changeset viewer.