[Pcsclite-cvs-commit] Drivers/ccid/src/protocol_t1 apdu.h,NONE,1.1
   
    rousseau@quantz.debian.org
     
    rousseau@quantz.debian.org
       
    Thu, 15 Jan 2004 16:41:33 +0100
    
        -  Previous message: [Pcsclite-cvs-commit] Drivers/ccid/src/protocol_t1 Makefile.am,NONE,1.1 README,NONE,1.1 atr.c,NONE,1.1 atr.h,NONE,1.1 defines.h,NONE,1.1 pps.c,NONE,1.1 pps.h,NONE,1.1 protocol_t1.c,NONE,1.1 protocol_t1.h,NONE,1.1 t1_block.c,NONE,1.1 t1_block.h,NONE,1.1
 
        -  Next message: [Pcsclite-cvs-commit] PCSC/src winscard_clnt.c,1.20,1.21
 
         -  Messages sorted by: 
              [ date ]
              [ thread ]
              [ subject ]
              [ author ]
         
 
       
    
  
Update of /cvsroot/pcsclite/Drivers/ccid/src/protocol_t1
In directory quantz:/tmp/cvs-serv562
Added Files:
	apdu.h 
Log Message:
define APDU_Cmd and APDU_Rsp
--- NEW FILE: apdu.h ---
/*
    apdu.h
    Definitions for ISO 7816-4 Application Layer PDU's handling
    This file is part of the Unix driver for Towitoko smartcard readers
    Copyright (C) 2000 2001 Carlos Prados <cprados@yahoo.com>
    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Lesser General Public
    License as published by the Free Software Foundation; either
    version 2 of the License, or (at your option) any later version.
    This library is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Lesser General Public License for more details.
    You should have received a copy of the GNU Lesser General Public
    License along with this library; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*/
#ifndef _APDU_
#define _APDU_
#include "defines.h"
/*
 * Exported data types definition
 */
/* Command APDU */
typedef struct
{
  BYTE *command;
  unsigned long length;
}
APDU_Cmd;
/* Response APDU */
typedef struct
{
  BYTE *response;
  unsigned long length;
}
APDU_Rsp;
#endif
    
    
        
	-  Previous message: [Pcsclite-cvs-commit] Drivers/ccid/src/protocol_t1 Makefile.am,NONE,1.1 README,NONE,1.1 atr.c,NONE,1.1 atr.h,NONE,1.1 defines.h,NONE,1.1 pps.c,NONE,1.1 pps.h,NONE,1.1 protocol_t1.c,NONE,1.1 protocol_t1.h,NONE,1.1 t1_block.c,NONE,1.1 t1_block.h,NONE,1.1
 
	-  Next message: [Pcsclite-cvs-commit] PCSC/src winscard_clnt.c,1.20,1.21
 
         -  Messages sorted by: 
              [ date ]
              [ thread ]
              [ subject ]
              [ author ]