Remove empty files: emv.c, emv.h

git-svn-id: https://www.opensc-project.org/svnp/opensc/branches/martin/0.12@3728 c6295689-39f2-0310-b995-f0e70906c6a9
This commit is contained in:
martin 2009-09-14 09:15:58 +00:00
parent 1aed8cdec4
commit 7df1c600f1
6 changed files with 4 additions and 71 deletions

View File

@ -92,7 +92,6 @@ f none usr/include/opensc/rsaref/win32.h 0644 root bin
f none usr/include/opensc/scconf.h 0644 root bin
f none usr/include/opensc/opensc.h 0644 root bin
f none usr/include/opensc/pkcs15.h 0644 root bin
f none usr/include/opensc/emv.h 0644 root bin
f none usr/include/opensc/cardctl.h 0644 root bin
f none usr/include/opensc/asn1.h 0644 root bin
f none usr/include/opensc/log.h 0644 root bin

View File

@ -6,7 +6,6 @@ all-local:
@$(LN_S) $(top_srcdir)/src/libopensc/asn1.h asn1.h
@$(LN_S) $(top_srcdir)/src/libopensc/cardctl.h cardctl.h
@$(LN_S) $(top_srcdir)/src/libopensc/cards.h cards.h
@$(LN_S) $(top_srcdir)/src/libopensc/emv.h emv.h
@$(LN_S) $(top_srcdir)/src/libopensc/errors.h errors.h
@$(LN_S) $(top_srcdir)/src/libopensc/log.h log.h
@$(LN_S) $(top_srcdir)/src/libopensc/opensc.h opensc.h

View File

@ -8,7 +8,7 @@ EXTRA_DIST = Makefile.mak
bin_SCRIPTS = opensc-config
lib_LTLIBRARIES = libopensc.la
openscinclude_HEADERS = \
opensc.h pkcs15.h emv.h \
opensc.h pkcs15.h \
cardctl.h asn1.h log.h ui.h \
errors.h types.h compression.h
noinst_HEADERS = cards.h ctbcs.h internal.h esteid.h muscle.h muscle-filesystem.h \
@ -30,7 +30,7 @@ libopensc_la_SOURCES = \
pkcs15-wrap.c pkcs15-algo.c pkcs15-cache.c pkcs15-syn.c \
pkcs15-gemsafeV1.c \
\
emv.c muscle.c muscle-filesystem.c \
muscle.c muscle-filesystem.c \
\
ctbcs.c reader-ctapi.c reader-pcsc.c reader-openct.c \
\

View File

@ -4,7 +4,7 @@ TOPDIR = ..\..
TARGET = opensc.dll opensc_a.lib
HEADERS = \
asn1.h cardctl.h cards.h emv.h errors.h \
asn1.h cardctl.h cards.h errors.h \
log.h opensc.h pkcs15.h types.h ui.h
HEADERSDIR = $(TOPDIR)\src\include\opensc
@ -18,7 +18,7 @@ OBJECTS = \
pkcs15-wrap.obj pkcs15-algo.obj pkcs15-cache.obj pkcs15-syn.obj \
pkcs15-gemsafeV1.obj \
\
emv.obj muscle.obj muscle-filesystem.obj \
muscle.obj muscle-filesystem.obj \
\
ctbcs.obj reader-ctapi.obj reader-pcsc.obj reader-openct.obj \
\

View File

@ -1,24 +0,0 @@
/*
* emv.c: EMV functions
*
* Copyright (C) 2001, 2002 Juha Yrjölä <juha.yrjola@iki.fi>
*
* 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.1 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
*/
#include "internal.h"
#include "emv.h"
/* FIXME: Implement */

View File

@ -1,41 +0,0 @@
/*
* emv.h: OpenSC EMV header file
*
* Copyright (C) 2001, 2002 Juha Yrjölä <juha.yrjola@iki.fi>
*
* 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.1 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 _OPENSC_EMV_H
#define _OPENSC_EMV_H
#include <opensc/opensc.h>
#ifdef __cplusplus
extern "C" {
#endif
struct sc_emv_card {
struct sc_card *card;
};
int sc_emv_bind(struct sc_card *card, struct sc_emv_card **emv_card);
int sc_emv_unbind(struct sc_emv_card *emv_card);
#ifdef __cplusplus
}
#endif
#endif