00001 /* 00002 * MUSCLE SmartCard Development ( http://www.linuxnet.com ) 00003 * 00004 * Copyright (C) 2000-2003 00005 * David Corcoran <corcoran@linuxnet.com> 00006 * 00007 * $Id: powermgt_generic.c 1421 2005-04-12 12:09:21Z rousseau $ 00008 */ 00009 00015 #include "config.h" 00016 #include "pcsclite.h" 00017 00018 /* 00019 * Check for platforms that have their own specific support. 00020 * It's more easy and flexible to do it here, rather than 00021 * with automake conditionals in src/Makefile.am. 00022 * No, it's still not a perfect solution design wise. 00023 */ 00024 00025 #if !defined(__APPLE__) 00026 00027 ULONG PMRegisterForPowerEvents(void) 00028 { 00029 return 0; 00030 } 00031 00032 #endif