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  *
00007  * $Id: hotplug_generic.c 4628 2010-01-01 21:41:08Z rousseau $
00008  */
00009 
00020 #include "config.h"
00021 #include "pcsclite.h"
00022 
00023 #ifndef TRUE
00024 #define TRUE 1
00025 #define FALSE 0
00026 #endif
00027 
00028 #if !defined(__APPLE__) && !defined(HAVE_LIBUSB) && !defined(__linux__) && !defined(HAVE_LIBHAL)
00029 
00030 LONG HPSearchHotPluggables(void)
00031 {
00032     return 0;
00033 }
00034 
00035 ULONG HPRegisterForHotplugEvents(void)
00036 {
00037     return 0;
00038 }
00039 
00040 LONG HPStopHotPluggables(void)
00041 {
00042     return 0;
00043 }
00044 
00045 void HPReCheckSerialReaders(void)
00046 {
00047 }
00048 
00049 #endif