hotplug_generic.c
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
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 char ReCheckSerialReaders = FALSE;
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 ReCheckSerialReaders = TRUE;
00050 }
00051
00052 #endif