pcsc-lite 1.7.2

hotplug_generic.c

Go to the documentation of this file.
00001 /*
00002  * MUSCLE SmartCard Development ( http://www.linuxnet.com )
00003  *
00004  * Copyright (C) 2000-2003
00005  *  David Corcoran <corcoran@linuxnet.com>
00006  * Copyright (C) 2002-2010
00007  *  Ludovic Rousseau <ludovic.rousseau@free.fr>
00008  *
00009  * $Id: hotplug_generic.c 5638 2011-02-25 13:36:57Z rousseau $
00010  */
00011 
00022 #include "config.h"
00023 #include "pcsclite.h"
00024 
00025 #ifndef TRUE
00026 #define TRUE 1
00027 #define FALSE 0
00028 #endif
00029 
00030 #if !defined(__APPLE__) && !defined(HAVE_LIBUSB) && !defined(__linux__) && !defined(HAVE_LIBUDEV)
00031 
00032 LONG HPSearchHotPluggables(void)
00033 {
00034     return 0;
00035 }
00036 
00037 ULONG HPRegisterForHotplugEvents(void)
00038 {
00039     return 0;
00040 }
00041 
00042 LONG HPStopHotPluggables(void)
00043 {
00044     return 0;
00045 }
00046 
00047 void HPReCheckSerialReaders(void)
00048 {
00049 }
00050 
00051 #endif